https://github.com/klange/isla
yet another dumb irc bot, sorta conceptually based on hubot; dead-simple regex-based plugins
https://github.com/klange/isla
bot irc irc-bot python
Last synced: 9 months ago
JSON representation
yet another dumb irc bot, sorta conceptually based on hubot; dead-simple regex-based plugins
- Host: GitHub
- URL: https://github.com/klange/isla
- Owner: klange
- Created: 2015-04-28T04:05:04.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T01:56:36.000Z (about 8 years ago)
- Last Synced: 2025-04-23T15:46:17.461Z (about 1 year ago)
- Topics: bot, irc, irc-bot, python
- Language: Python
- Size: 31.3 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Isla
**Isla** is an IRC bot using `irc.bot` and implementing a regex-based response architecture with automatically reloading modules.
**Isla** is loosely based on concepts from Hubot.
## Installation
This isn't a proper Python package yet, so you'll need to do some manual gruntwork:
* Set up a virtualenv and `pip install irc beautifulsoup4`.
* Write a `config.py` in the root:
```python
nickserver_password = 'hunter2'
autojoin = ['#some-channel']
server = ('irc.freenode.net', 6667)
nick = "isla"
realname = "isla"
```
* Start Isla: `python isla.py`