14 - Python in Ethereum: Background and Context

Python in Ethereum: Background and Context

After going through all this Solidity content, (which looks like JavaScript but as you now know is very different from JavaScript) we may have some Python developers saying, “What about us?”

Python is, after all, one of the most popular and accessible programming languages. When people want to start programming, they typically feel they have to decide between JavaScript or Python. So, what gives? Where’s the Python in Ethereum?

While it’s not as popular as Solidity and JavaScript, there are some exciting ways to build on Ethereum using Python. In this section, we’re going to go over a few of those projects. In the following section, we’ll go over Vyper, the programming language whose syntax is a subset of Python’s.

Vyper

Vyper is an experimental, contract-oriented, pythonic programming language that targets the Ethereum Virtual Machine. Please note: there have been some issues with the Vyper compiler. Like Python, writing clear, understandable code is of primary importance in Vyper.

Vyper is not trying to be a replacement for Solidity. It is meant to be a more security focused smart contract programming language and will likely not be able to do everything that Solidity can. Its development is uncertain and not nearly as strong as Solidity. You can read more about Vyper in this section here.

Note that you can use Vyper with a number of development frameworks, including Truffle and Brownie.

Brownie and Web3.py

Brownie is a Python-based development and testing framework for smart contracts running on the EVM. It uses Web3.py as well as Solidity. It is most well-known for being the development framework the Yearn.Finance team uses to build their powerful DeFi platform and CRV.

Brownie definitely takes some notes from Truffle (they are both “sweet”){target=_blank}, including having a brownie init command and their equivalent of Truffle boxes, “Brownie Mixes.” This makes it an easy tool for a lot of Truffle developers familiar with Truffle.

Here are some tutorials to introduce you to Brownie:

Yellow Paper rewrite

Piper Merriam is a Python-based Ethereum developer who works for the Ethereum Foundation. They have proposed an interesting project: Replacing Ethereum’s yellow paper (which we studied earlier) with executable markdown. This was inspired by Ethereum 2.0’s Beacon chain specifications. Rather than writing a document of specifications, the Ethereum 2.0 developer teams built a series of tests based on the spec conditions of a theoretical Beacon chain. Then, Ethereum 2.0 software clients only had to make sure they passed those tests.

Merriam is proposing a similar exercise, but for Ethereum Mainnet (the PoW chain), based in Python. The goal would be to replace the yellow paper, which can be very challenging to read. It would rely heavily on py-EVM (a Python implementation of the EVM). The whole project is very new and you can check it’s GitHub repository for updates. Maybe you can even get involved!

Fe

Fe is “an emerging smart contract language for the Ethereum blockchain.” It’s influenced both by Python and Rust and was released in January 2021. You can read more about it here. To be honest, it looks more like Rust than Python, but that’s just our opinion.

Conclusion

While more niche, it’s possible to be a Python developer and contribute to the Ethereum (and wider blockchain) ecosystem! Solidity is still important to know, but we hope this gets you started finding more Python opportunities.