High performance, easy to use and feature-rich Solana SDK for Python.
Project description
Solathon
Solathon is an high performance, easy to use and feature-rich Solana SDK for Python. Easy for beginners, powerful for real world applications.
🧪 | The project is in beta phase |
---|
✨ Getting started
Installation
pip install solathon
Client example
from solathon import Client
client = Client("https://api.devnet.solana.com")
Basic usage example
# Basic example on generating a random public key and fetching it's balance
from solathon import Client, PublicKey
client = Client("https://api.devnet.solana.com")
public_key = PublicKey(1) # Creating a random public key
balance = client.get_balance(public_key)
print(balance)
🗃️ Contribution
Just drop a pull request lol
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
solathon-0.0.3.tar.gz
(13.2 kB
view hashes)
Built Distribution
solathon-0.0.3-py3-none-any.whl
(11.2 kB
view hashes)