A lightweight IRC bot framework.
Project description
TheAlot
-----
TheAlot is a modular IRC bot framework for Python3.
Install
```````
.. code:: bash
pip install thealot
Configure
`````````
.. code:: json
{
"server" : "irc.quakenet.org",
"port" : 6667,
"channel" : "#TheAlot",
"nickname" : "TestAlot",
"prefix" : "!",
"database" : "sqlite:///alot.db",
"plugins" : [
]
}
Run
```
.. code:: bash
python -m thealot.thealot
or
.. code:: python
from thealot import TheAlot
bot = TheAlot()
if __name__ == "__main__":
bot.start()
-----
TheAlot is a modular IRC bot framework for Python3.
Install
```````
.. code:: bash
pip install thealot
Configure
`````````
.. code:: json
{
"server" : "irc.quakenet.org",
"port" : 6667,
"channel" : "#TheAlot",
"nickname" : "TestAlot",
"prefix" : "!",
"database" : "sqlite:///alot.db",
"plugins" : [
]
}
Run
```
.. code:: bash
python -m thealot.thealot
or
.. code:: python
from thealot import TheAlot
bot = TheAlot()
if __name__ == "__main__":
bot.start()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
thealot-0.2.0.tar.gz
(4.1 kB
view hashes)