web3.py/README.md
2017-05-18 18:26:03 -04:00

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

======================================

Join the chat at https://gitter.im/pipermerriam/web3.py

Build Status

A python implementation of web3.js

  • Python 2.7, 3.4, 3.5 support

Read more in the documentation on ReadTheDocs