Skip to main content

An async wrapper for the CSBlueGem api.

Project description

An asynchronous wrapper for the CSBlueGem API.

Quickstart

Install from PyPI: python3 -m pip install csbluegem.py

import asyncio
from textwrap import dedent

import csbluegem


async def main():
    async with csbluegem.Client() as client:
        r = await client.search(csbluegem.Item.M9Bayonet)

        for result in r.sales:
            s = f"""
                Pattern: {result.pattern}
                Float: {result.float}
                Stattrak?: {result.is_stattrak}
                Price: {result.price:,}
                Date: {result.timestamp}
                Origin: {result.origin.value}
                Days Since Sale: {result.days_since:,}
                """

            print(dedent(s), end="\n\n")


if __name__ == "__main__":
    asyncio.run(main())

Additional examples available HERE

Documentation available HERE

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

csbluegem_py-0.12.0.tar.gz (11.6 kB view hashes)

Uploaded Source

Built Distribution

csbluegem.py-0.12.0-py3-none-any.whl (16.6 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