Skip to main content

Python client for the GRID Esports API and ETL helper functions for game data processing

Project description

pygrid: Python client for the GRID esports API

Latest Version Python Versions License

pygrid simplifies the usage of the GRID esports API by managing all of the hard parts for you. A collection of data pipeline functions that support processing of game data are also provided with this library.

Features & Todo

  • Rate limited access to GRID GraphQL endpoints.
  • Simple client class to access commonly used queries.
  • Automatic pagination for queries that require multiple API calls.
  • Minimal external dependencies. The client and ETL functions only require httpx, pendulum, pydantic, orjson and tqdm.
  • Release on PyPi for easier installation.
  • Release my scripts that parse returned data files ideally in a database agnositic format. As I don't expect this library to become that popular, my main focus will be on compatability with my own ATG database format.
  • Complete unit testing coverage of all parsing functions.
  • Better documentation and figure out how to pass filtering options through the pagination function.

Installation

pip install grid-lol-client

Usage

import os
from pygrid.client import GridClient

client = GridClient(os.environ["GRID_API_KEY"])

With the client setup with your GRID API key, you can now begin to request data from the centra data API.

all_teams = client.get_all_teams()
3%|███▊                                          | 100/3629 [00:01<00:53, 65.66it/s]

Functions which call REST APIs will return an httpx.response object. Example usage:

available_files = client.get_available_files("2796434")
next(file for file in available_files.json()["files"] if file["id"] == "events-grid")
{'id': 'events-grid',
 'description': 'Grid Series Events (.jsonl)',
 'status': 'ready',
 'fileName': 'events_2796434_grid.jsonl.zip',
 'fullURL': 'https://api.grid.gg/file-download/events/grid/series/2796434'}

Query for series with filters

from pygrid import OrderDirection, SeriesType
import pendulum
available_series = client.get_all_series(
    order=OrderDirection.DESC,
    title_ids = [3], # Only LoL series (Val series by default also selected)
    gte = pendulum.now().add(weeks=-2).to_iso8601_string(), # Earliest series time
    game_types = [SeriesType.SCRIM], # COMPETITIVE is Champion's Queue
    # tournaments = ["825437", "825439", "825438", "825440", "825441"],
)

Development

Generating API clients with Ariadne Codegen

Ariadne Codegen lets us translate raw GraphQL queries into a Python library as well as bringing GraphQL's type safety to Python with Pydantic

You'll need to set your GRID API key to be able to access the central data GraphQL API

export GRID_API_KEY=YOUR_KEY_HERE
ariadne-codegen client --config central-data.toml
ariadne-codegen client --config series-state.toml

Publishing and packaging

Poetry is used to manage packages and publishing to PyPi.

poetry add package_name -D # Development packages
poetry publish

License

MIT

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

grid_lol_client-0.2.2.tar.gz (26.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

grid_lol_client-0.2.2-py3-none-any.whl (37.9 kB view details)

Uploaded Python 3

File details

Details for the file grid_lol_client-0.2.2.tar.gz.

File metadata

  • Download URL: grid_lol_client-0.2.2.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.3 Linux/6.11.0-29-generic

File hashes

Hashes for grid_lol_client-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d00cf350592f3519ccae9a9eb9defb3146548c557d5cd54698076ff4292d5e00
MD5 b048d2c7bb8f23ae376ff32999b54d8a
BLAKE2b-256 61f6dab2193fed5ca9132ab5fd781d64fa6095c0d64a83bb15c9792f8f19e388

See more details on using hashes here.

File details

Details for the file grid_lol_client-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: grid_lol_client-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.3 Linux/6.11.0-29-generic

File hashes

Hashes for grid_lol_client-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 afb74842e3d7c3677ca3685c11ff8418d17d34c0faaa4d117904d3e6d05253cf
MD5 b3eefd8108c4801ca6f831f1a37d7fe8
BLAKE2b-256 225c92fa3a48307b28cdf64938956a8344e10448ee62f48c05f04da8ba4df6e2

See more details on using hashes here.

Supported by

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