Skip to main content

Library part of the Lightshield tool.

Project description

Lightshield Tools

Tools and Code-Sections of the Lightshield Framework that were better fit to be provided through dependency rather then included in the main project.

What currently doesn't work:

  • The keys used to save data in Redis are not linked to the API key, as such multiple keys have to use multiple Redis servers.

Ratelimiter (WIP)

Multi-Host async ratelimiting service. The clients each sync via a central redis server.

Set up the proxy in an async context with redis connection details.

from lightshield.proxy import Proxy
import aiohttp

async def run():
    p = Proxy()
    # Initiate the redis connector in async context
    await p.init(host='localhost', port=5432)

Make singular calls directly through the Proxy.

async with aiohttp.ClientSession(headers={'X-Riot-Token': ''}) as session:
    await p.request('https://euw1.api.riotgames.com/lol/league-exp/v4/entries/RANKED_SOLO_5x5/SILVER/I', session=session)

Make calls directly to one endpoint without having the proxy select the proper limits through a regex comparison to increase processing speed.

async with aiohttp.ClientSession(headers={'X-Riot-Token': ''}) as session:
    zone = await p.get_endpoint('https://euw1.api.riotgames.com/lol/league-exp/v4/entries/')
    for page in range(1, 10):
        zone.request('https://euw1.api.riotgames.com/lol/league-exp/v4/entries/RANKED_SOLO_5x5/SILVER/I?page=%s' % page, session)

Settings (WIP)

The settings file contains a number of variables that are used across the project. Variables can be set through:
ENV > config.json > default

from lightshield import settings

headers = {'X-Riot-Token': settings.API_KEY}

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

Lightshield-0.1.10b0.tar.gz (9.6 kB view hashes)

Uploaded Source

Built Distribution

Lightshield-0.1.10b0-py3-none-any.whl (6.9 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