Metadata-Version: 2.1
Name: ainft-py
Version: 0.1.0
Summary: 
License: MIT
Author: AINFT Team
Author-email: dev@ainetwork.ai
Requires-Python: >=3.8,<3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: ain-py (>=1.0.3,<2.0.0)
Requires-Dist: pydantic (>=2.6.3,<3.0.0)
Requires-Dist: pytest (>=8.1.1,<9.0.0)
Description-Content-Type: text/markdown

# ainft-py

[![PyPi Version](https://img.shields.io/pypi/v/ainft-py.svg)](https://pypi.python.org/pypi/ainft-py/)

A python version of [ainft-js](https://github.com/ainft-team/ainft-js).

## Installation

```sh
pip install ainft-py
```

## Usage

```python
import os
from ainft import Ainft

ainft = Ainft(
    private_key=os.environ.get("AIN_PRIVATE_KEY"),
    api_url="https://ainft-api-dev.ainetwork.ai",
    blockchain_url="https://testnet-api.ainetwork.ai",
    chain_id=0,
)
```

## Requirements

Python version should be at least 3.8 but less than 3.12.

