Use environment.yml to create a conda environment
conda env create -f environment.yml
python app.py
Output
* Running on http://0.0.0.0:5000/
* Restarting with reloader
You can see the app working at http://localhost:5000/
After closing the web application you have to kill the process by grepping for 'python app.py' and kill it
ps aux | grep "python app.py"
username 554 12.0 0.4 2767156 64300 s002 S 7:22PM 1:26.78 /Users/username/miniconda3/envs/opencv/bin/python app.py
kill -9 554
- Camera with Rest Interface
- Conda environment tutorial
- Conda docs
- Flask video streaming
- REST API Http Requests for Humans with Flask
- Building beautiful REST APIs using Flask, Swagger UI and Flask-RESTPlus
- Flask-Restful_S3_File_Upload.py
- How-to-upload-a-file-to-the-server-in-flask-for-python
- flask-uploads blog