# Limnoria IRC Bot

**Category:** Standalone_Bot
**Original Author:** Jeremiah Fincher, James McCoy

## Description
This is a standalone IRC bot written in Python that provides various automation features for managing channels, users, and resources.

## Key Features
- **Automated channel management**: OPs/Deops, bans/kicks/joins.
- **Resource distribution**: fserve/XDCC services.
- **User-level access control**.

## File Analysis
- **setup.py** — Setup script for converting Python 2 code to Python 3.
- **__init__.py** — Initialization file with copyright and license information.
- **fix_def_iteritems.py** — Fixer for `iteritems` method in Python 2 to `items` in Python 3.
- **fix_def_iterkeys.py** — Fixer for `iterkeys` method in Python 2 to `keys` in Python 3.
- **fix_def_itervalues.py** — Fixer for `itervalues` method in Python 2 to `values` in Python 3.
- **fix_import.py** — Fixer for import statements, converting relative imports to absolute ones.
- **fix_reload.py** — Fixer for `reload` function to use `imp.reload`.
- **run.py** — Script to run the bot and prepare necessary directories and files.