Python Flask application to receive and save images over POST requests.
This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
BBaoVanC a5a22b7c88
Remove UPLOADKEYS_CHMOD option due to keygen.py
Since keygen.py is run as root, uploadkeys is owned by root. This causes
issues when imgupload.py tries to chmod the uploadkeys file since it
doesn't have permissions to chmod it.
Solution: remove UPLOADKEYS_CHMOD option
2020-08-31 21:14:09 -05:00
.gitignore added encryption to uploadkeys and added a key generator 2020-08-31 17:12:39 -07:00
LICENSE Initial commit 2020-08-31 16:43:58 -05:00
README.md added encryption to uploadkeys and added a key generator 2020-08-31 17:12:39 -07:00
configtest.py Remove UPLOADKEYS_CHMOD option due to keygen.py 2020-08-31 21:14:09 -05:00
imgupload.py Remove UPLOADKEYS_CHMOD option due to keygen.py 2020-08-31 21:14:09 -05:00
keygen.py Bugfixes in keygen.py 2020-08-31 20:32:00 -05:00
requirements.txt added encryption to uploadkeys and added a key generator 2020-08-31 17:12:39 -07:00
settings.py.default Remove UPLOADKEYS_CHMOD option due to keygen.py 2020-08-31 21:14:09 -05:00

README.md

imgupload

CodeFactor Grade GitHub repo size GitHub All Releases GitHub issues GitHub closed issues GitHub

What is imgupload?

imgupload is a Flask + uWSGI application to serve as an all-purpose image/file uploader over POST requests.

Usage

Make sure you install the dependencies first. To do this, run sudo python3 -m pip install -r requirements.txt.
To deploy imgupload, run flask run.