├── .gitignore ├── Procfile ├── README.md ├── app.py ├── camera.py ├── makeup_artist.py ├── requirements.txt ├── runtime.txt ├── static └── js │ └── main.js ├── templates └── index.html └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | staticfiles 4 | .env 5 | db.sqlite3 6 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn -k eventlet -w 1 app:app --log-file=- 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/app.py -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/camera.py -------------------------------------------------------------------------------- /makeup_artist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/makeup_artist.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 2 | -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/templates/index.html -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxue2012/python-webcam-flask/HEAD/utils.py --------------------------------------------------------------------------------