Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal example showing how to connect to Ethereum and interact with a deployed smart contract using Web3.py.
from web3 import Web3
# Connect to local Ethereum node
w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:8545'))
# Contract ABI and address (example)
abi = '[...]'
address = '0xYourContractAddress'
contract = w3.eth.contract(address=address, abi=abi)
# Read value from contract
value = contract.functions.getValue().call()
print('Contract value:', value)
# Send transaction to contract
tx_hash = contract.functions.setValue(42).transact({'from': w3.eth.accounts[0]})
w3.eth.wait_for_transaction_receipt(tx_hash)Web3.py is a Python library for interacting with the Ethereum blockchain. It allows developers to deploy, interact with, and query smart contracts, manage accounts, and handle blockchain transactions programmatically.
Origin & Creator
Web3.py was created by the Ethereum Foundation community in 2016 to provide a Pythonic interface to the Ethereum blockchain.
Industrial Note
Web3.py is preferred in Python-based projects, automated scripts, backend integrations, DeFi bots, and data analytics pipelines interacting with Ethereum.