Skip to main content

Subtensor API package for bittensor

Project description

Subtensor API Python package

A python wrapper around the @polkadot/api node library to query the bittensor chain.

Install from pypi

pip install subtensorapi==0.1.3

Running the CLI

Usage

View usage
python3 -m subtensorapi --help

Specify chain endpoint url
python3 -m subtensorapi [sync_and_save|blockAtReg_and_save] --endpoint_url ENDPOINT_URL
Specify filename to save to python3 -m subtensorapi [sync_and_save|blockAtReg_and_save] --filename FILENAME.json
Specify blockhash to sync the chain at, default "latest" python3 -m subtensorapi [sync_and_save|blockAtReg_and_save] --block_hash BLOCK_HASH

Sync And Save Metagraph

Pulls the neurons storage map and saves it to a JSON file.
View usage
python3 -m subtensorapi sync_and_save --help
Run sync of metagraph and save to JSON file
python3 -m subtensorapi sync_and_save

Grab blockAtRegistration

Pulls the blockAtRegistration storage map and saves it to a JSON file.
View usage python3 -m subtensorapi blockAtReg_and_save --help

Using the library

FastSync class

Setup of a FastSync instance

from subtensorapi import FastSync

# check if fast sync is available on the platform
FastSync.verify_fast_sync_support() 

# specify the chain endpoint_url  
fast_sync: FastSync = FastSync(endpoint_url)

Run the metagraph sync

Pulls the neurons storage map.

# specify block_hash to sync at. Default is "latest"
block_hash = "0xb2fa081[...]"
# run the sync command and save to JSON file at block_hash
fast_sync.sync_and_save(rich.Console(), block_hash)
# load neurons in from JSON file
neurons = fast_sync.load_neurons()

Run blockAtRegistration pull

Pulls the blockAtRegistration storage map.

# specify block_hash to sync at. Default is "latest"
block_hash = "0xb2fa081[...]"
# run the pull command and save to JSON file at block_hash
fast_sync.get_blockAtRegistration_for_all_and_save(rich.Console(), block_hash)
# load blockAtRegistration_all from JSON file
blockAtRegistration_all = fast_sync.load_blockAtRegistration_for_all()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

subtensorapi-0.1.3-py3-none-manylinux_2_17_x86_64.whl (21.4 MB view hashes)

Uploaded Python 3 manylinux: glibc 2.17+ x86-64

subtensorapi-0.1.3-py3-none-macosx_10_15_universal2.whl (21.4 MB view hashes)

Uploaded Python 3 macOS 10.15+ universal2 (ARM64, x86-64)

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page