summaryrefslogtreecommitdiff
path: root/crocoite/irc.py
AgeCommit message (Collapse)AuthorFilesLines
2019-01-26irc: Fix format stringLars-Dominik Braun1-6/+6
2018-12-24Use f-strings where possibleLars-Dominik Braun1-17/+15
Replaces str.format, which is less readable due to its separation of format and arguments.
2018-11-19Coding styleLars-Dominik Braun1-5/+3
Fix a few random issues pointed out by pylint, mainly unused imports.
2018-10-14irc: Add PoC dashboardLars-Dominik Braun1-10/+99
Using websockets, vue and bulma.
2018-10-14irc: Graceful bot shutdownLars-Dominik Braun1-12/+63
Wait for remaining jobs to finish without accepting new ones, but still allow some interaction with the bot (status/revoke).
2018-10-03irc: Fix mode parsingLars-Dominik Braun1-7/+23
Ignore unsupported modes, add tests.
2018-10-02irc: Refactoring/beautificationLars-Dominik Braun1-98/+260
Add logging, split bot into abstract bot implementation and actual chromebot implementation, move some reusable checks into decorators.
2018-09-29irc: Limit number of processes spawnedLars-Dominik Braun1-20/+23
2018-09-29Add simple IRC botLars-Dominik Braun1-0/+254
chromebot is back! Dropping sopel, because it does not work well with asyncio.