├── .gitignore ├── .travis.yml ├── Procfile ├── README.md ├── config.py ├── data ├── facts.json ├── jokes.json └── quotes.json ├── main.py ├── modules ├── __init__.py ├── src │ ├── __init__.py │ ├── fact.py │ ├── food.py │ ├── help.py │ ├── joke.py │ ├── quote.py │ └── recipe.py └── tests │ └── __init__.py ├── requirements.txt ├── runserver.py └── templates ├── 1.jpg ├── __init__.py ├── button.py ├── generic.py ├── image.py ├── index.html ├── receipt.py └── text.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python runserver.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/config.py -------------------------------------------------------------------------------- /data/facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/data/facts.json -------------------------------------------------------------------------------- /data/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/data/jokes.json -------------------------------------------------------------------------------- /data/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/data/quotes.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/__init__.py -------------------------------------------------------------------------------- /modules/src/fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/fact.py -------------------------------------------------------------------------------- /modules/src/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/food.py -------------------------------------------------------------------------------- /modules/src/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/help.py -------------------------------------------------------------------------------- /modules/src/joke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/joke.py -------------------------------------------------------------------------------- /modules/src/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/quote.py -------------------------------------------------------------------------------- /modules/src/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/modules/src/recipe.py -------------------------------------------------------------------------------- /modules/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/requirements.txt -------------------------------------------------------------------------------- /runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/runserver.py -------------------------------------------------------------------------------- /templates/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/1.jpg -------------------------------------------------------------------------------- /templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/button.py -------------------------------------------------------------------------------- /templates/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/generic.py -------------------------------------------------------------------------------- /templates/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/image.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/receipt.py -------------------------------------------------------------------------------- /templates/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantrathore/Monica/HEAD/templates/text.py --------------------------------------------------------------------------------