A Pythonic data access layer for applications querying data from The Graph Network.
Project description
Subgrounds
An intuitive python library for interfacing with Subgraphs.
Features
- Simple: Leverage a Pythonic API to easily build queries and transformations without the need for raw GraphQL manipulation.
- Automated: Automatically handle pagination and schema introspection for effortless data retrieval.
- Powerful: Create sophisticated queries using the
SyntheticFields
transformation system.
Resources
- Subgrounds Docs: User guide and API documentation
- Examples: A list of examples showcasing Subgrounds integration with Dash and Plotly
- Community projects: An ever growing list of projects created by our community members
- MetricsDAO Subgrounds Workshop: Subgrounds workshop series hosted by MetricsDAO
Installation
Subgrounds requires atleast Python 3.10+
Subgrounds is available on PyPi. To install it, run the following:
pip install subgrounds
.
Subgrounds also comes bundled with extra modules that may require extra libraries. You can get all functionality of subgrounds
via the following:
pip install subgrounds[all]
.
Simple example
>>> from subgrounds import Subgrounds
>>> sg = Subgrounds()
>>> # Load
>>> aave_v2 = sg.load_subgraph('https://api.thegraph.com/subgraphs/name/messari/aave-v2-ethereum')
>>> # Construct the query
>>> latest = aave_v2.Query.markets(
orderBy=aave_v2.Market.totalValueLockedUSD,
orderDirection='desc',
first=5,
)
>>> # Return query to a dataframe
>>> sg.query_df([
latest.name,
latest.totalValueLockedUSD,
])
markets_name markets_totalValueLockedUSD
0 Aave interest bearing STETH 1.522178e+09
1 Aave interest bearing WETH 1.221299e+09
2 Aave interest bearing USDC 8.140547e+08
3 Aave interest bearing WBTC 6.615692e+08
4 Aave interest bearing USDT 3.734017e+08
About Us
Playgrounds Analytics is a data solutions company providing serverless on-chain data infrastructures and services for data teams, analysts, and engineers. Checkout us out here to learn more!
Acknowledgments
This software project would not be possible without the support of The Graph Foundation. You can learn more about The Graph and its mission here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for subgrounds-1.6.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf95b725865897d0aff0ef958e2be49b1fb6e423509cf31148fe56351021c0eb |
|
MD5 | 230c8b6b645fe067f638e217e0e79e33 |
|
BLAKE2b-256 | d406703a501808084e2dc257261c4aa9effbad638b95f3ff7cb52cc281d9c95e |