Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T01:56:36.000Z (over 6 years ago)
- Last Synced: 2024-05-01T18:32:19.809Z (7 months ago)
- Topics: bot, irc, irc-bot, python
- Language: Python
- Size: 31.3 KB
- Stars: 7
- Watchers: 3
- 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`