Skip to main content

A simple Python API wrapper for Owlracle

Project description

Owlracle Python

A simple Python API wrapper for Owlracle

Installation

pip install owlracle-python

Obtaining API Key

To obtain an API key, you will need to register a new API key on https://owlracle.info/

Getting Started

To get started, import the package, and initiate a OwlracleAPI instance object by passing your API key:

from owlracle_python import OwlracleAPI
owlracle = OwlracleAPI(api_key)

You can also pass an optional user agent:

owlracle = OwlracleAPI(api_key, useragent="User-Agent")

Or a different network:

owlracle = OwlracleAPI(api_key, network="bsc", useragent="User-Agent")

Queries

Below are a set of queries supported by the Owlracle API. All data is returned as a Python dictionary for easy data handling.

Get Gas fee estimation

result = owlracle.get_gas_fee_estimation()
print(result)

You can also pass the blocks, percentile, accept, feeinusd, eip1559, reportwei, and calcfrom parameters:

result = owlracle.get_gas_fee_estimation(blocks=500, accept=99)
print(result)

Get Gas history

result = owlracle.get_gas_history()
print(result)

You can also pass the from_, to, candles, page, timeframe, tokenprice, and txfee parameters:

result = owlracle.get_gas_history(from_=17849981, to=17949981)
print(result)

Get API key information

By default, the api key supplied on object instance is the one that is checked:

result = owlracle.get_api_key_information()
print(result)

You can also supply another key to check

result = owlracle.get_api_key_information(api_key="randomkey")
print(result)

Get API key credit recharge history

By default, the api key supplied on object instance is the one that is checked:

result = owlracle.get_api_key_credit_recharge_history()
print(result)

You can also supply another key to check

result = owlracle.get_api_key_credit_recharge_history(api_key="randomkey")
print(result)

Get API key usage log

By default, the api key supplied on object instance is the one that is checked:

result = owlracle.get_api_key_usage_log()
print(result)

You can also supply another key to check

result = owlracle.get_api_key_usage_log(api_key="randomkey")
print(result)

You can also pass the fromtime, totime, and limit parameters:

result = owlracle.get_api_key_usage_log(fromtime=1692462951)
print(result)

You can also supply another key to check, while passing the parameters above

result = owlracle.get_api_key_usage_log(api_key="randomkey", fromtime=1692462951)
print(result)

Get RPC endpoint

result = owlracle.get_rpc_endpoint()
pp.pprint(result)

Testing

A set of tests have been included inside tests folder. You will need to setup an environment variable as OwlracleAPIKey with your API key

Chain slugs

These can be obtained from the API docs, or the network attribute using:

owlracle.get_rpc_endpoint()

Authors

More information

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

owlracle_python-0.1.0.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

owlracle_python-0.1.0-py3-none-any.whl (3.9 kB view details)

Uploaded Python 3

File details

Details for the file owlracle_python-0.1.0.tar.gz.

File metadata

  • Download URL: owlracle_python-0.1.0.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.13 Windows/10

File hashes

Hashes for owlracle_python-0.1.0.tar.gz
Algorithm Hash digest
SHA256 aea120b6f3addc550c78a456c2dce2894cfcdcb7ee1f272f4c4b5271c03fd02a
MD5 db004bb819dde33827f48dd289087c41
BLAKE2b-256 aa7550109c2fb2739da5a6216c5bf6b2e1e06da71ed977fc1a695ffa2a7055ab

See more details on using hashes here.

File details

Details for the file owlracle_python-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for owlracle_python-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8da9b0b8d82c97b033cb42262dcd3d26b8a9d68cf1f667b64072769a23d66068
MD5 96349841c046419f3ff6f44604cefa0a
BLAKE2b-256 24294de3503e8d2cd00f337671ac8e1e1b7893e36aca58aa0b447d3e782e9802

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page