Metadata-Version: 2.1
Name: botcity-rpa-template
Version: 0.1.1
Summary: My bot project description
Home-page: https://github.com/jpzinn654/my-package
Author: Your Name
Author-email: your_email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: some_dependency

# BotCity RPA Automation Template

This repository provides a robust template for creating Robotic Process Automation (RPA) bots using the BotCity framework. The template includes integration with **BotMaestroSDK**, **Telegram Bot notifications**, detailed logging, and resource tracking for efficient and scalable automation tasks.

## Features

- **Environment-Specific Execution:** Easily switch between Maestro (``--environment maestro``) and local (``--environment local``) execution modes.

- **BotMaestroSDK Integration:** Leverage BotCity Maestro for task management and artifact handling.

- **Telegram Notifications:** Send real-time execution updates and upload log files to Telegram groups.

- **Detailed Resource Usage Logging:** Tracks CPU, RAM, and GPU usage during bot execution.

- **Flexible Configuration:** Customize bot settings such as server credentials, log directories, and Telegram groups.

## Getting Started

### Prerequisites

Before running the bot, ensure you have the following installed:

- **Python 3.8**+
- **Poetry** (for dependency management)
- **BotCity SDK** (BotCity Maestro)
- **Telegram Bot Token** (for bot interaction, if needed)

### Installation

1. Clone this repository:

    ```bash
    git clone https://github.com/vinicinhus/botcity-rpa-template.git

    cd botcity-rpa-template 
    ```

2. Install dependencies. You can choose one of the following methods:

    - **Using Poetry:**

        If you are using Poetry for dependency management, run:

        ```bash
        poetry install
        ```

    - **Using ``requirements.txt``**:

        Alternatively, if you prefer to use pip and a requirements.txt file, you can install the dependencies as follows:

        ```bash
        pip install -r requirements.txt
        ```

3. Set up your environment variables in a ``.env`` file:

    ```plaintext
    SERVER_MAESTRO="your_maestro_server_url"
    LOGIN_MAESTRO="your_maestro_login"  
    KEY_MAESTRO="your_maestro_key"  
    ```

4. Set up your **Telegram Bot** token:

    - Create a bot via **BotFather** on Telegram.
    - Retrieve the token and store it securely in BotCity Maestro under a credential labeled Telegram.

5. Modify ``bot.py`` or ``src/main.py`` to include your automation logic.

### Usage

To run the bot, specify the desired environment:

- **Maestro Execution (default):**

    ```bash
    poetry run python bot.py --environment maestro
    # Or
    python bot.py --environment maestro  
    ```
- **Local Execution:**

    ```bash
    poetry run python bot.py --environment local
    # Or
    python bot.py --environment local  
    ```

### Configuration

- **Environment Selection:** Use the ``--environment`` flag to specify the execution environment (``maestro`` or ``local``).
- **Bot Details:** Set the bot name, server credentials, and Telegram group in ``bot.py`` or via environment variables.
- **Logs Directory:** Logs are stored in the ``logs`` folder by default but can be customized.

### How It Works

1. **Execution Modes:**

    - **Maestro Mode**: Uses the BotMaestroSDK to execute tasks and interact with the BotCity platform.
    - **Local Mode:** Runs tasks locally while still providing logs and notifications via Telegram.

2. **Resource Tracking:**

    - Logs CPU, RAM, and GPU usage during execution for analysis and debugging.

3. **Error Handling:**

    - Sends error messages and uploads logs to Telegram and BotCity Maestro in case of failures.

### Telegram Notifications

- Notifications are sent to the configured group about bot execution status (completion and error).
- Log files are automatically uploaded to the Telegram group for analysis.

### Logs and Artifacts

**Logs:**

- Generated for each execution and saved in the ``logs`` directory.
- Includes execution time, resource usage, and errors.

**Artifacts:**

- Automatically uploaded to BotCity Maestro under the associated task.

### Extending the Template

To extend or modify the botâ€™s functionality:

1. Implement your custom automation logic in ``src/main.py``.

2. Add or modify utility classes such as ``BotRunnerLocal`` or ``BotRunnerMaestro``.

3. Use the ``_execute_bot_task`` method to define task-specific behavior.

## Contributing

1. Fork this repository.
2. Create a feature branch.
3. Make your changes.
4. Commit and push your changes.
5. Open a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/vinicinhus/botcity-rpa-template/blob/main/LICENSE) file for details.

## Acknowledgments

- [BotCity](https://documentation.botcity.dev/) for providing the powerful framework for automation.
- [Telegram Bot API](https://core.telegram.org/bots/api) for integrating with Telegram for bot interactions.
- [Poetry](https://python-poetry.org/) for managing project dependencies.
