Installation¶
Requirements¶
Python 3.8 or higher
aiohttp >= 3.8.0
pydantic >= 2.0.0
Install from PyPI¶
The recommended way to install aiorobokassa is using pip:
pip install aiorobokassa
Install from source¶
To install from source, clone the repository and install using pip:
git clone https://github.com/masasibata/aiorobokassa.git
cd aiorobokassa
pip install -e .
Install with development dependencies¶
To install with development dependencies (for testing and development):
pip install aiorobokassa[dev]
Or using Poetry:
poetry install --extras dev
Verify installation¶
You can verify the installation by importing the library:
import aiorobokassa
print(aiorobokassa.__version__)