[Ethereum] Are there any implementations of smart contracts in Python

pyethapppyethereumpythonserpentvyper

I want to implement some smart contracts and I am strongest in python.

Best Answer

pythereum and pythapp - your question tags - are Python implementations of Ethereum's core library and command line client respectively. They are orthogonal to the language in which smart contracts are written.

So the short answer to your question is: no.

Having said that, have a look at Serpent: https://github.com/ethereum/wiki/wiki/Serpent

Related Topic