├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lyrebot ├── __init__.py ├── discord_bot.py ├── lyrebird.py └── main.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .tokens.yaml 3 | .idea 4 | venv 5 | **/__pycache__ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/README.md -------------------------------------------------------------------------------- /lyrebot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lyrebot/discord_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/lyrebot/discord_bot.py -------------------------------------------------------------------------------- /lyrebot/lyrebird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/lyrebot/lyrebird.py -------------------------------------------------------------------------------- /lyrebot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/lyrebot/main.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHowarth/lyrebot/HEAD/setup.py --------------------------------------------------------------------------------