Home

Awesome

<!-- markdownlint-disable-file MD041 -->

PyTeal logo

PyTeal: Algorand Smart Contracts in Python

Build Status PyPI version Documentation Status Code style: black

PyTeal is a Python language binding for Algorand Smart Contracts (ASC1s).

Algorand Smart Contracts are implemented using a new language that is stack-based, called Transaction Execution Approval Language (TEAL).

However, TEAL is essentially an assembly language. With PyTeal, developers can express smart contract logic purely using Python. PyTeal provides high level, functional programming style abstractions over TEAL and does type checking at construction time.

Install

PyTeal requires Python version >= 3.10.

If your operating system (OS) Python version < 3.10, we recommend:

Recommended: Install from PyPi

Install the latest official release from PyPi:

Install Latest Commit

If needed, it's possible to install directly from the latest commit on master to use unreleased features:

WARNING: Unreleased code is experimental and may not be backwards compatible or function properly. Use extreme caution when installing PyTeal this way.

Documentation

Development Setup

Setup venv (one time):

Active venv:

Pip install PyTeal in editable state with dependencies:

Format code:

Lint using flake8:

Type checking using mypy:

Run unit tests:

Run integration tests (assumes a developer-mode algod is available on port 4001):

Stand up developer-mode algod on ports 4001, 4002 and tealdbg on port 9392 (assumes Docker is available on your system):

Tear down and clean up resources for the developer-mode algod stood up above: