How to use the understat.Understat function in understat

To help you get started, we’ve selected a few understat examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github amosbastian / FPLbot / FPLbot / utils.py View on Github external
async def update_results():
    async with aiohttp.ClientSession() as session:
        understat = Understat(session)
        results = await understat.get_league_results("EPL", 2019)
        for result in results:
            result["h"]["title"] = understat_team_converter(result["h"]["title"])
            result["a"]["title"] = understat_team_converter(result["a"]["title"])

    requests = [ReplaceOne({"id": result["id"]}, result, upsert=True)
                for result in results]
    database.results.bulk_write(requests)

understat

A Python wrapper for https://understat.com/

MIT
Latest version published 9 months ago

Package Health Score

55 / 100
Full package analysis

Similar packages