Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`