mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
1.6 KiB
1.6 KiB
Web3.py (Google Appengine Fork)
DOES NOT WORK ON APPENGINE AT THE MOMENT
Web3.py package to use in Google Appengine
Included packages:
Note : pysha3 was replaced by CompactFIPS202 because pysha3 uses C components which are not supported on GAE. Test before doing production code.
Tested
- Personal API
- Eth API
====================================
Sample Code:
import logging
from web3 import Web3, RPCProvider
web3rpc = Web3(RPCProvider(host="GETH_SERVER_IP", port="8545"))
logging.info(web3rpc.eth.blockNumber) #909483
======================================
A python implementation of web3.js
- Python 2.7, 3.4, 3.5 support
Read more in the documentation on ReadTheDocs
