├── .gitignore ├── LICENSE ├── app.py ├── readme.md ├── requirements.txt ├── static ├── .DS_Store └── hugh.png └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/LICENSE -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/app.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/hugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/static/hugh.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnoranceAI/hugh/HEAD/templates/index.html --------------------------------------------------------------------------------