{"id":27316,"library":"pytoniq-core-fork","title":"pytoniq-core-fork","description":"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.","status":"active","version":"0.1.48","language":"python","source_language":"en","source_url":"https://github.com/ebellocchia/pytoniq-core","tags":["ton","blockchain","sdk","fork"],"install":[{"cmd":"pip install pytoniq-core-fork","lang":"bash","label":"Install from PyPI"}],"dependencies":[],"imports":[{"note":"","wrong":"","symbol":"Address","correct":"from pytoniq_core import Address"},{"note":"","wrong":"","symbol":"Cell","correct":"from pytoniq_core import Cell"},{"note":"","wrong":"","symbol":"begin_cell","correct":"from pytoniq_core import begin_cell"}],"quickstart":{"code":"from pytoniq_core import Address, Cell, begin_cell\n\n# Create an address\naddr = Address('EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N')\nprint(addr)\n\n# Build a cell\ncell = begin_cell() \\\n    .store_uint(0, 32) \\\n    .store_address(addr) \\\n    .end_cell()\nprint(cell.hash.hex())","lang":"python","description":"Demonstrates creating a TON Address and constructing a Cell."},"warnings":[{"fix":"Use pytoniq-core-fork README as reference.","message":"This is a fork, not the original pytoniq-core. Some API changes may exist. Check the fork's documentation if something doesn't work.","severity":"gotcha","affected_versions":"all"},{"fix":"Install with 'pip install pytoniq-core-fork', then import as 'from pytoniq_core import ...'","message":"The library name in PyPI is pytoniq-core-fork, but the Python package is pytoniq_core. Install name differs from import name.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run 'pip install pytoniq-core-fork' (not pytoniq_core-fork).","cause":"Installed the wrong package name or didn't install at all.","error":"ModuleNotFoundError: No module named 'pytoniq_core'"},{"fix":"Use 'from pytoniq_core import Address' as shown in the quickstart.","cause":"Trying to import from wrong module or the fork uses different attribute names.","error":"AttributeError: module 'pytoniq_core' has no attribute 'Address'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}