Skip to content

Web app encrypts and decrypts any file using Python, Flask.

Notifications You must be signed in to change notification settings

hazemessam/encryptit-web

Repository files navigation

Encryptit

Web app encrypts and decrypts any file using encryption and decryption algorithms.

requirements

  • flask

Setup

$ python3 -m venv env
$ source env/bin/activate
$ pip install -r requirments.txt
$ ./app.py
 * Serving Flask app "app" (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: on
 * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
 * Restarting with stat
 * Debugger is active!
 * Debugger PIN: 191-047-995

Check http://127.0.0.1:5000/ in the browser.