0

There are different ports of Web3, including python (see https://web3py.readthedocs.io/en/stable/). My questions:

It is a full implementation of the Web3 API?

Is it aligned with Web3.js?

TylerH
  • 20,799
  • 66
  • 75
  • 101
leco
  • 1,989
  • 16
  • 30

1 Answers1

1

Web3.py API is derived from the Web3.js. It is a full implementation of web3 api. In other words it like you are using web3.js in python

Abdullah Ahmed Ghaznavi
  • 1,978
  • 3
  • 17
  • 27
  • It's however worth mentioning that right now the API is not asynchronous, like in Javascript. It implies all requests are blocking, which can be a huge problem depending on the project. – José Molina Oct 21 '19 at 21:51