├── .gitignore ├── COPYING ├── README.md ├── gitter.plug ├── gitter.py ├── oauth.py ├── requirements.txt └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/README.md -------------------------------------------------------------------------------- /gitter.plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/gitter.plug -------------------------------------------------------------------------------- /gitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/gitter.py -------------------------------------------------------------------------------- /oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/oauth.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errbotio/err-backend-gitter/HEAD/screenshot.png --------------------------------------------------------------------------------