Metadata-Version: 2.4
Name: simple-irc-bot
Version: 1.0.0
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 ircbot-lite
```

## Usage
```python
import ircbot

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

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

bot.cmd_prefix = "&"

bot.start()
```
