[Ethereum] How to communicate with smart contract using python

pythonremix

I have developed a smart contract on remix IDE and now I want to communicate with it using python. What python libraries can I use ?

Best Answer

You can use web3py.

And if you need to compile contracts - use solc.

Related Topic