Registry / database / pytoniq-core-fork

pytoniq-core-fork

JSON →
library0.1.48pypypi✓ verified 86d ago

A forked TON Blockchain SDK for Python, based on pytoniq-core. Supports TON address handling, ADNL, TL-B schemas, and Cell parsing. Version 0.1.48, updated for Python >=3.7. Maintained by ebellocchia.

pip install pytoniq-core-fork
INSTALL
IMPORT
SIG · PYTONIQ-CORE-FORK
P
pytoniq-core-fork
databasepythonv0.1.48
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Address
from pytoniq_core import Address
Cell
from pytoniq_core import Cell
begin_cell
from pytoniq_core import begin_cell

Demonstrates creating a TON Address and constructing a Cell.

from pytoniq_core import Address, Cell, begin_cell # Create an address addr = Address('EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N') print(addr) # Build a cell cell = begin_cell() \ .store_uint(0, 32) \ .store_address(addr) \ .end_cell() print(cell.hash.hex())
Debug
Known issues
gotchaThis is a fork, not the original pytoniq-core. Some API changes may exist. Check the fork's documentation if something doesn't work.
fix
Use pytoniq-core-fork README as reference.
affects: all
gotchaThe library name in PyPI is pytoniq-core-fork, but the Python package is pytoniq_core. Install name differs from import name.
fix
Install with 'pip install pytoniq-core-fork', then import as 'from pytoniq_core import ...'
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'pytoniq_core'
Installed the wrong package name or didn't install at all.
fix
Run 'pip install pytoniq-core-fork' (not pytoniq_core-fork).
AttributeError: module 'pytoniq_core' has no attribute 'Address'
Trying to import from wrong module or the fork uses different attribute names.
fix
Use 'from pytoniq_core import Address' as shown in the quickstart.
Upgrade
Version history
0.1.48latest on PyPI · released Feb 27, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
8
Meta
1
Resources
pytoniq-core-fork — pip install pytoniq-core-fork · libregistry