├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── data └── templates.json ├── requirements.txt ├── runtime.txt └── templates ├── api.html ├── index.html └── layout.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | web.py-0.37/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/app.py -------------------------------------------------------------------------------- /data/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/data/templates.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | web.py==0.61 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 2 | -------------------------------------------------------------------------------- /templates/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/templates/api.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HermanFassett/madlibz/HEAD/templates/layout.html --------------------------------------------------------------------------------