Metadata-Version: 2.4
Name: rotarex-dimes-srg-api
Version: 0.1.5
Summary: Async Python client for Rotarex DIMES SRG API
Author-email: ROTAREX <develop@rotarex.com>
License: MIT
Project-URL: Homepage, https://github.com/Rotarex/rotarex-dimes-srg-api
Project-URL: Repository, https://github.com/Rotarex/rotarex-dimes-srg-api
Project-URL: Issues, https://github.com/Rotarex/rotarex-dimes-srg-api/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.9.0
Dynamic: license-file

# rotarex-dimes-srg-api/README.md

# Rotarex Dimes SRG API

This project provides a Python API client for interacting with the Rotarex Dimes SRG service. It allows users to fetch tank information and perform other operations related to the service.

## Installation

To install the package, you can use pip:

```bash
pip install rotarex-dimes-srg-api
```

## Usage

Here is a simple example of how to use the Rotarex API client:

```python
import asyncio
import aiohttp
from rotarex-dimes-srg-api import RotarexApi

async def main():
    async with aiohttp.ClientSession() as session:
        api = RotarexApi(session)
        api.set_credentials("your_email@example.com", "your_password")
        tanks = await api.fetch_tanks()
        print(tanks)

if __name__ == "__main__":
    asyncio.run(main())
```

## Running Tests

To run the tests for this project, you can execute the following command:

```bash
pytest tests/
```

## Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

## License

This project is licensed under the MIT License. See the LICENSE file for more details.
