├── .gitignore ├── LICENSE ├── README.md ├── example_logs └── 2011-10-22.html ├── ircbot.py ├── irclib.py └── logbot.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/README.md -------------------------------------------------------------------------------- /example_logs/2011-10-22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/example_logs/2011-10-22.html -------------------------------------------------------------------------------- /ircbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/ircbot.py -------------------------------------------------------------------------------- /irclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/irclib.py -------------------------------------------------------------------------------- /logbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/logbot/HEAD/logbot.py --------------------------------------------------------------------------------