gitextract_t3elpfhu/ ├── .coveragerc ├── .github/ │ └── workflows/ │ └── tox.yml ├── .gitignore ├── CHANGES.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── conftest.py ├── docker/ │ ├── Dockerfile │ └── Makefile ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── dcc.rst │ ├── dec.rst │ ├── hack.rst │ ├── index.rst │ ├── irc3.rst │ ├── plugins/ │ │ ├── asynchronious.rst │ │ ├── autocommand.rst │ │ ├── autojoins.rst │ │ ├── casefold.rst │ │ ├── command.rst │ │ ├── core.rst │ │ ├── cron.rst │ │ ├── ctcp.rst │ │ ├── dcc.rst │ │ ├── feeds.rst │ │ ├── fifo.rst │ │ ├── human.rst │ │ ├── log.rst │ │ ├── logger.rst │ │ ├── pager.rst │ │ ├── quakenet.rst │ │ ├── sasl.rst │ │ ├── search.rst │ │ ├── shell_command.rst │ │ ├── slack.rst │ │ ├── social.rst │ │ ├── storage.rst │ │ ├── uptime.rst │ │ ├── userlist.rst │ │ └── web.rst │ ├── reloadable.rst │ ├── rfc.rst │ └── utils.rst ├── examples/ │ ├── async_command.py │ ├── benches.ini │ ├── benches.py │ ├── bot.ini │ ├── commands.rst │ ├── config.ini │ ├── dcc_chat.py │ ├── dcc_send.py │ ├── dcc_send_and_get.py │ ├── dev.ini │ ├── freenode_irc3.py │ ├── humans.py │ ├── mybot.py │ ├── mybot_plugin.py │ ├── mycommands.py │ ├── mycrons.py │ ├── myextends.py │ ├── nickserv.py │ ├── paginate.py │ ├── proxy.py │ ├── slack.ini │ ├── spy.ini │ ├── spy.py │ ├── topic.py │ └── wsgiapp.py ├── irc3/ │ ├── __init__.py │ ├── __main__.py │ ├── _gen_doc.py │ ├── _parse_rfc.py │ ├── _rfc.py │ ├── asynchronous.py │ ├── base.py │ ├── compat.py │ ├── config.py │ ├── dcc/ │ │ ├── __init__.py │ │ ├── client.py │ │ └── manager.py │ ├── dec.py │ ├── plugins/ │ │ ├── __init__.py │ │ ├── asynchronious.py │ │ ├── autocommand.py │ │ ├── autojoins.py │ │ ├── casefold.py │ │ ├── command.py │ │ ├── core.py │ │ ├── cron.py │ │ ├── ctcp.py │ │ ├── dcc.py │ │ ├── feeds.py │ │ ├── fifo.py │ │ ├── human.py │ │ ├── log.py │ │ ├── logger.py │ │ ├── pager.py │ │ ├── quakenet.py │ │ ├── sasl.py │ │ ├── search.py │ │ ├── shell_command.py │ │ ├── slack.py │ │ ├── social.py │ │ ├── storage.py │ │ ├── uptime.py │ │ ├── userlist.py │ │ └── web.py │ ├── rfc.py │ ├── rfc1459.txt │ ├── rfc2812.txt │ ├── tags.py │ ├── template/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── config.ini │ │ └── plugin.py │ ├── testing.py │ └── utils.py ├── irc3d/ │ ├── __init__.py │ ├── __main__.py │ ├── dec.py │ ├── motd.txt │ └── plugins/ │ ├── __init__.py │ ├── command.py │ ├── core.py │ └── userlist.py ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── feed.atom │ ├── test.ini │ ├── test_async.py │ ├── test_autocommand.py │ ├── test_autojoins.py │ ├── test_bot.py │ ├── test_casefold.py │ ├── test_commands.py │ ├── test_cron.py │ ├── test_ctcp.py │ ├── test_dcc.py │ ├── test_dec.py │ ├── test_events.py │ ├── test_feeds.py │ ├── test_fifo.py │ ├── test_irc3d.py │ ├── test_irc3d_commands.py │ ├── test_irc3d_userlist.py │ ├── test_logger.py │ ├── test_paginate.py │ ├── test_protocol.py │ ├── test_quakenet.py │ ├── test_reconn.py │ ├── test_reload.py │ ├── test_run.py │ ├── test_sasl.py │ ├── test_search.py │ ├── test_slack.py │ ├── test_social.py │ ├── test_template.py │ ├── test_uptime.py │ ├── test_userlist.py │ ├── test_utils.py │ └── test_web.py └── tox.ini