├── README.md ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-37.pyc │ ├── constants.cpython-35.pyc │ ├── constants.cpython-37.pyc │ ├── helper.cpython-35.pyc │ ├── helper.cpython-37.pyc │ ├── resources.cpython-35.pyc │ └── resources.cpython-37.pyc ├── constants.py ├── count.json ├── helper.py ├── resources.py └── templates │ └── sileo_depiction_template.json ├── sileogen-api.ini ├── tmp └── .json └── wsgi.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /app/__pycache__/constants.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/constants.cpython-35.pyc -------------------------------------------------------------------------------- /app/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /app/__pycache__/helper.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/helper.cpython-35.pyc -------------------------------------------------------------------------------- /app/__pycache__/helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/helper.cpython-37.pyc -------------------------------------------------------------------------------- /app/__pycache__/resources.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/resources.cpython-35.pyc -------------------------------------------------------------------------------- /app/__pycache__/resources.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/__pycache__/resources.cpython-37.pyc -------------------------------------------------------------------------------- /app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/constants.py -------------------------------------------------------------------------------- /app/count.json: -------------------------------------------------------------------------------- 1 | { 2 | "count": 149 3 | } -------------------------------------------------------------------------------- /app/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/helper.py -------------------------------------------------------------------------------- /app/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/resources.py -------------------------------------------------------------------------------- /app/templates/sileo_depiction_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/app/templates/sileo_depiction_template.json -------------------------------------------------------------------------------- /sileogen-api.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/sileogen-api.ini -------------------------------------------------------------------------------- /tmp/.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/tmp/.json -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/SileoGenAPI/HEAD/wsgi.py --------------------------------------------------------------------------------