├── .gitignore ├── LICENSE ├── README.md ├── birdbot.py ├── birdlist ├── blacklist.py ├── requirements.txt └── settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/README.md -------------------------------------------------------------------------------- /birdbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/birdbot.py -------------------------------------------------------------------------------- /birdlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/birdlist -------------------------------------------------------------------------------- /blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/blacklist.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouse-reeve/birdbot/HEAD/settings.py --------------------------------------------------------------------------------