This is a fork of matthoskins1980's implementation of the tus protocol for flask.
Need for a Redis server on default port 6379 :
sudo pacman -S redis
sudo systemctl start redis
Connect to Redis CLI :
redis-cli
Empty database :
FLUSHALL
Show existing keys (default database is index 0):
SELECT 0
KEYS *
ou
SELECT 0
SCAN 0
``
## Deploying on Pypi
First put the new version in setup.py
pip3 install twine python3 setup.py sdist bdist_wheel
twine upload dist/*