Skip to content

neoctobers/infura

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infura.io API wrapper

An Infura.io API wrapper, for Python.

With a default cache supported by requests-cache

Installation

pip3 install infura

Usage

import infura

ifr = infura.Client(
    project_id='your-project-id',
    project_secret='your-project-secret',
    network='mainnet',
    cache_expire_after=5,
)

gas_price = ifr.eth_get_gas_price()

balance = ifr.eth_get_balance('0x39eB410144784010b84B076087B073889411F878')

block_number = ifr.eth_get_block_number()

block = ifr.eth_get_block_by_number(block_number, show_transaction_details: bool = False)

About

Infura.io API wapper, for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages