├── Image Edit Html Button Run Python Script ├── buttonpython │ ├── buttonpython │ │ ├── __pycache__ │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── views.cpython-36.pyc │ │ │ └── wsgi.cpython-36.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ ├── views.py │ │ └── wsgi.py │ ├── db.sqlite3 │ ├── manage.py │ ├── media │ │ ├── part3 flow.png │ │ └── temp.png │ └── templates │ │ └── home.html ├── image.py └── test.py ├── Run Python Script Html Flask ├── HTML Button Image Process Python Script 2.1 │ ├── main.py │ ├── static │ │ └── Images │ │ │ └── Capture.JPG │ └── templates │ │ └── main.html └── Html Button to Python Script │ ├── app.py │ ├── static │ └── index.css │ └── templates │ └── index.html ├── buttonpython ├── buttonpython │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── views.py │ ├── views.pyc │ ├── wsgi.py │ └── wsgi.pyc ├── db.sqlite3 ├── manage.py └── templates │ └── home.html └── html button external python script ├── buttonpython ├── buttonpython │ ├── __pycache__ │ │ ├── settings.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── wsgi.cpython-36.pyc │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── templates │ └── home.html └── test.py /Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/settings.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/urls.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/views.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/buttonpython/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/buttonpython/wsgi.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/db.sqlite3 -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/manage.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/media/part3 flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/media/part3 flow.png -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/media/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/media/temp.png -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/buttonpython/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/buttonpython/templates/home.html -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/image.py -------------------------------------------------------------------------------- /Image Edit Html Button Run Python Script/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Image Edit Html Button Run Python Script/test.py -------------------------------------------------------------------------------- /Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/main.py -------------------------------------------------------------------------------- /Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/static/Images/Capture.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/static/Images/Capture.JPG -------------------------------------------------------------------------------- /Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/HTML Button Image Process Python Script 2.1/templates/main.html -------------------------------------------------------------------------------- /Run Python Script Html Flask/Html Button to Python Script/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/Html Button to Python Script/app.py -------------------------------------------------------------------------------- /Run Python Script Html Flask/Html Button to Python Script/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/Html Button to Python Script/static/index.css -------------------------------------------------------------------------------- /Run Python Script Html Flask/Html Button to Python Script/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/Run Python Script Html Flask/Html Button to Python Script/templates/index.html -------------------------------------------------------------------------------- /buttonpython/buttonpython/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/__init__.pyc -------------------------------------------------------------------------------- /buttonpython/buttonpython/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/settings.py -------------------------------------------------------------------------------- /buttonpython/buttonpython/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/settings.pyc -------------------------------------------------------------------------------- /buttonpython/buttonpython/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/urls.py -------------------------------------------------------------------------------- /buttonpython/buttonpython/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/urls.pyc -------------------------------------------------------------------------------- /buttonpython/buttonpython/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/views.py -------------------------------------------------------------------------------- /buttonpython/buttonpython/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/views.pyc -------------------------------------------------------------------------------- /buttonpython/buttonpython/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/wsgi.py -------------------------------------------------------------------------------- /buttonpython/buttonpython/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/buttonpython/wsgi.pyc -------------------------------------------------------------------------------- /buttonpython/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/db.sqlite3 -------------------------------------------------------------------------------- /buttonpython/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/manage.py -------------------------------------------------------------------------------- /buttonpython/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/buttonpython/templates/home.html -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/settings.py -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/urls.py -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/views.py -------------------------------------------------------------------------------- /html button external python script/buttonpython/buttonpython/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/buttonpython/wsgi.py -------------------------------------------------------------------------------- /html button external python script/buttonpython/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/db.sqlite3 -------------------------------------------------------------------------------- /html button external python script/buttonpython/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/manage.py -------------------------------------------------------------------------------- /html button external python script/buttonpython/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/buttonpython/templates/home.html -------------------------------------------------------------------------------- /html button external python script/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackanons/button-python-click/HEAD/html button external python script/test.py --------------------------------------------------------------------------------