Metadata-Version: 2.2
Name: gramo
Version: 0.1.1
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: description
Dynamic: description-content-type

# Gramo

Welcome to the Python Bot Library! This library provides tools and utilities to create and manage bots in Python.

## Features

- Easy-to-use API for bot creation
- Support for multiple messaging platforms
- Extensible and customizable
- Built-in commands and event handling

## Installation

You can install the library using pip:

```bash
pip install gramo
```

## Usage

Here's a simple example to get you started:

```python
from gramo import Gramo

# Create a new bot instance
bot = Gramo(
    token='YOUR_BOT_TOKEN'
)

# Define a command
@bot.command('hello')
def hello_command(ctx):
    ctx.reply('Hello, world!')

# Start the bot
bot.start_polling()
```

## Documentation

For detailed documentation and advanced usage, please visit our [official documentation](https://example.com/docs).

## Contributing

We welcome contributions! Please read our [contributing guidelines](CONTRIBUTING.md) to get started.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

## Contact

If you have any questions or need support, please open an issue on our [GitHub repository](https://github.com/sekiro-dev/gramo).

Happy coding!
