Fumarole Python SDK
This module contains Fumarole SDK for python programming language.
Configuration
endpoint: <"https://fumarole.endpoint.rpcpool.com">
x-token: <YOUR X-TOKEN secret here>
Manage consumer group
Refer to fume CLI to manage your consumer groups.
Examples
from typing import Optional
import uuid
import asyncio
import logging
from os import environ
from collections import defaultdict
from yellowstone_fumarole_client.config import FumaroleConfig
from yellowstone_fumarole_client import FumaroleClient
from yellowstone_fumarole_proto.fumarole_v2_pb2 import CreateConsumerGroupRequest
from yellowstone_fumarole_proto.geyser_pb2 import (
SubscribeRequest,
SubscribeRequestFilterAccounts,
SubscribeRequestFilterTransactions,
SubscribeRequestFilterBlocksMeta,
SubscribeRequestFilterEntry,
SubscribeRequestFilterSlots,
)
from yellowstone_fumarole_proto.geyser_pb2 import (
SubscribeUpdate,
SubscribeUpdateTransaction,
SubscribeUpdateBlockMeta,
SubscribeUpdateAccount,
SubscribeUpdateEntry,
SubscribeUpdateSlot,
)
async def dragonsmouth_like_session(fumarole_config):
with open("~/.fumarole/config.yaml") as f:
fumarole_config = FumaroleConfig.from_yaml(f)
client: FumaroleClient = await FumaroleClient.connect(fumarole_config)
await client.delete_all_consumer_groups()
# --- This is optional ---
resp = await client.create_consumer_group(
CreateConsumerGroupRequest(
consumer_group_name="test",
)
)
assert resp.consumer_group_id, "Failed to create consumer group"
# --- END OF OPTIONAL BLOCK ---
session = await client.dragonsmouth_subscribe(
consumer_group_name="test",
request=SubscribeRequest(
accounts={"fumarole": SubscribeRequestFilterAccounts()},
transactions={"fumarole": SubscribeRequestFilterTransactions()},
blocks_meta={"fumarole": SubscribeRequestFilterBlocksMeta()},
entry={"fumarole": SubscribeRequestFilterEntry()},
slots={"fumarole": SubscribeRequestFilterSlots()},
),
)
async with session:
dragonsmouth_like_source = session.source
# result: SubscribeUpdate
async for result in dragonsmouth_like_source:
if result.HasField("block_meta"):
block_meta: SubscribeUpdateBlockMeta = result.block_meta
elif result.HasField("transaction"):
tx: SubscribeUpdateTransaction = result.transaction
elif result.HasField("account"):
account: SubscribeUpdateAccount = result.account
elif result.HasField("entry"):
entry: SubscribeUpdateEntry = result.entry
elif result.HasField("slot"):
result: SubscribeUpdateSlot = result.slot
# OUTSIDE THE SCOPE, YOU SHOULD NEVER USE `session` again.
At any point you can get a rough estimate if you are progression through the slot using DragonsmouthAdapterSession.stats() call:
async with session:
stats: FumaroleSubscribeStats = session.stats()
print(f"{stats.log_committed_offset}, {stats.log_committable_offset}, {stats.max_slot_seen}")
log_committed_offset : what have been ACK so for to fumarole remote service.
log_committable_offset : what can be ACK to next commit call.
max_slot_seen : maximum slot seen in the inner fumarole client state -- not yet processed by your code.
Release files for yellowstone-fumarole-client 0.3.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| yellowstone_fumarole_client-0.3.5.tar.gz | 39.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| yellowstone_fumarole_client-0.3.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 85.9 kB
Release files / yellowstone_fumarole_client-0.3.5.tar.gz
| Download URL | yellowstone_fumarole_client-0.3.5.tar.gz |
|---|---|
| Size | 39.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e99fbd374eea417305c019c771df74f4f3ef0d872bb918a66a6ae8a53713c396
|
|
BLAKE2b-256 checksum How to use checksums |
e3587871cda2207ea733cddb1e33dff58b8d38d781f2cc10215949203a730c3e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.4.1 CPython/3.12.3 Linux/7.0.0-29-generic
|
Release files / yellowstone_fumarole_client-0.3.5-py3-none-any.whl
| Download URL | yellowstone_fumarole_client-0.3.5-py3-none-any.whl |
|---|---|
| Size | 46.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b4a409b989030a754f4b46efc43341e6332643007161d9a94a2de3abb4c3bdc1
|
|
BLAKE2b-256 checksum How to use checksums |
c4e3607d262940423f067bdb2cf84543a98d3480bc0a799bdc447e00ddf47040
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.4.1 CPython/3.12.3 Linux/7.0.0-29-generic
|