Skip to main content

Unofficial Token Terminal API client.

Project description

Token Terminal

Python 3.7 Python 3.8 Python 3.9

License


Unofficial Token Terminal API client in python

For more information, see Token Terminal API Documentation

Installation:

use pip to install:

pip install tokenterminal

Authentication:

Pass API key in object initialization.


Example usage:

from tokenterminal import TokenTerminal

# object initialization
token_terminal = TokenTerminal(key='xxxxx-xxxx-xxxx-xxxx-xxxxxxxx')

# Fetch all data for projects' 
projects_data = token_terminal.get_all_projects()

for project_info in projects_data:
    print(project_info)

# Fetch project's historical metrics

project_metrics = token_terminal.get_historical_metrics('0x')
for metrics in project_metrics:
    print(metrics)

# To retrieve the metric availability for a project.
reponse = token_terminal.get_metric_availability(project_id=project_id)

# To retrieve metric aggregation data for one project.
reponse = token_terminal.get_metric_aggregations(project_id=project_id)

# Get financial statement for a project
reponse = token_terminal.get_financial_statement(
    project_id=project_id, 
    timestamp_granularity='week',
    interval='1m'
    )

# Get list of all available market sectors that are available
reponse = token_terminal.get_market_sectors()

# Get list of all metrics
reponse = token_terminal.get_all_metrics()

# To retrieve metric aggregations for multiple projects.
project_ids = ['aave', 'uniswap']
reponse = token_terminal.get_projects_metric_aggregations(project_ids=project_ids)

Donate & Help maintain the library

Paypal


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

tokenterminal-2.0.0.tar.gz (9.1 kB view hashes)

Uploaded Source

Built Distribution

tokenterminal-2.0.0-py3-none-any.whl (9.0 kB view hashes)

Uploaded Python 3

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