Metadata-Version: 2.4
Name: simple_irc_bot
Version: 1.0.9
Summary: A minimal IRC bot framework built on top of the irc library.
Author-email: Gamer000gaming <gamer07340@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Gamer000gaming/ircbot
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: irc
Dynamic: license-file

# ircbot

A minimal IRC bot library using the `irc` package.

## Installation

```bash
pip install simple-irc-bot
```

## Usage
```python
import ircbot

bot = ircbot.Bot("server:port","nick")

def cmd_echo(*args):
    bot.send(" ".join(args))

bot.add_command("echo",cmd_echo)

bot.cmd_prefix = "&"

bot.start("#testchannel")
```

Do not use SSL as it's not supported.
