How do I copy a file in Python?
I couldn\'t find anything under os.
open(destination, 'wb').write(open(source, 'rb').read())
Open the source file in read mode, and write to destination file in write mode.