├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ftfy_app.py ├── now.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | 3 | .now -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/ftfy-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/ftfy-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/ftfy-web/HEAD/README.md -------------------------------------------------------------------------------- /ftfy_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/ftfy-web/HEAD/ftfy_app.py -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/ftfy-web/HEAD/now.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ftfy~=5.7 2 | starlette==0.13.2 3 | --------------------------------------------------------------------------------