Encrypt is a ligthweight file encryption module built to be used in simple python programs.
What you'll need
Python 3.4
cryptography ($ pip install cryptography)
Put encrypt in your project and use it as a module
>>> import encrypt
>>> encrypt.encrypt(your_file, password)
>>> encrypt.decrypt(encrypted_file, password)This project is licensed under the MIT License - see the LICENSE file for details