Metadata-Version: 2.1
Name: rango-sdk
Version: 0.7.0
Home-page: https://github.com/Nimara0x/rango-sdk
Author: Nimara0x
Author-email: nimcrypto12@gmail.com
Requires-Python: >=3.9
Requires-Dist: aiogram >=3.1.1
Requires-Dist: python-dotenv >=1.0.0
Requires-Dist: web3 ==6.15.1
Requires-Dist: dataclasses-json ==0.6.4
Requires-Dist: aiohttp-cors ==0.7.0

# Rango Python SDK 
An asynchronous Rango-SDK written in Python +3.9.
To start the sdk, install it using the following command:

`pip install rango-sdk`

Then just import `rango_client` and start using it:
```angular2html
from rango_sdk import RangoClient
rango_client = RangoClient(api_key=<RangoAPIKey>)
```
For instance, if you want to get the popular tokens on Rango:
```angular2html
tokens = await rango_client.popular_tokens()
```
