Solana.py
Project description
Solana.py
Solana Python API built on the JSON RPC API.
Python version of solana-web3.js for interacting with Solana.
Read the Documentation.
Quickstart
Installation
pip install solana
General Usage
import solana
API Client
from solana.rpc.api import Client
http_client = Client("https://api.devnet.solana.com")
Async API Client
import asyncio
from solana.rpc.async_api import AsyncClient
async def main():
async with AsyncClient("https://api.devnet.solana.com") as client:
res = await client.is_connected()
print(res) # True
# Alternatively, close the client explicitly instead of using a context manager:
client = AsyncClient("https://api.devnet.solana.com")
res = await client.is_connected()
print(res) # True
await client.close()
asyncio.run(main())
Development
Setup
- Install pipenv.
brew install pipenv
- Install dev dependencies.
pipenv install --dev
- Activate the pipenv shell.
pipenv shell
Lint
make lint
Tests
# All tests
make tests
# Unit tests only
make unit-tests
# Integration tests only
make int-tests
Start a Solana Localnet
Install docker.
# Update/pull latest docker image
pipenv run update-localnet
# Start localnet instance
pipenv run start-localnet
Using Jupyter Notebook
make notebook
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
solana-0.11.3.tar.gz
(60.7 kB
view details)
Built Distribution
solana-0.11.3-py3-none-any.whl
(78.5 kB
view details)
File details
Details for the file solana-0.11.3.tar.gz
.
File metadata
- Download URL: solana-0.11.3.tar.gz
- Upload date:
- Size: 60.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c18bd089ea7023e0d301cbad42bb1812d09ef73bca2b196b0adbe7028e747bf7 |
|
MD5 | b31e0329fe6f734e4eb6afd6a5059ba6 |
|
BLAKE2b-256 | e11b1e094995cb177c1eacba677325409f8cae40c81236a7b4e74a4c24fb48fd |
File details
Details for the file solana-0.11.3-py3-none-any.whl
.
File metadata
- Download URL: solana-0.11.3-py3-none-any.whl
- Upload date:
- Size: 78.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1edb5b0b38c0455c1924e9308d38b61e836a40eb4b21ede3b6744e0dccc1296 |
|
MD5 | 7e5be07f3012611601607c2803314724 |
|
BLAKE2b-256 | c21e310af27909c03a7bb4d0f3a0d02366ba031982af62b62979c658fd8ca04a |