├── .gitignore ├── .travis.yml ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── bot ├── __init__.py ├── cogs │ ├── __init__.py │ ├── logging.py │ ├── security.py │ └── snakes.py ├── constants.py ├── decorators.py ├── formatter.py ├── pagination.py └── utils.py ├── doc ├── README.md ├── bot-setup.md ├── linting.md └── pipenv.md ├── run.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/cogs/__init__.py: -------------------------------------------------------------------------------- 1 | # coding=utf-8 2 | -------------------------------------------------------------------------------- /bot/cogs/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/cogs/logging.py -------------------------------------------------------------------------------- /bot/cogs/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/cogs/security.py -------------------------------------------------------------------------------- /bot/cogs/snakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/cogs/snakes.py -------------------------------------------------------------------------------- /bot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/constants.py -------------------------------------------------------------------------------- /bot/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/decorators.py -------------------------------------------------------------------------------- /bot/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/formatter.py -------------------------------------------------------------------------------- /bot/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/pagination.py -------------------------------------------------------------------------------- /bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/bot/utils.py -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/bot-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/doc/bot-setup.md -------------------------------------------------------------------------------- /doc/linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/doc/linting.md -------------------------------------------------------------------------------- /doc/pipenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/doc/pipenv.md -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/run.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-discord/code-jam-1/HEAD/tox.ini --------------------------------------------------------------------------------