Metadata-Version: 2.1
Name: pokemontcgsdkasync
Version: 0.1.1
Summary: Pokemon TCG SDK for pokemontcg.io using asyncio
Home-page: https://github.com/Pole458/pokemon-tcg-sdk-python-async
Author: Paolo D'Alessandro
Author-email: pole.gamedev@gmail.com
License: MIT
Download-URL: https://github.com/Pole458/pokemon-tcg-sdk-python-async/tarball/0.1.1
Keywords: pokemon tcg sdk trading card game api rest async
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
License-File: LICENSE.txt

# Pokémon TCG SDK

This is an async adaption of the [Pokémon TCG SDK for Python](https://github.com/PokemonTCG/pokemon-tcg-sdk-python). It is a wrapper around the Pokémon TCG API of [pokemontcg.io](http://pokemontcg.io/).

## Requirements
Python >= 3.6

This library uses [aiohttp](https://docs.aiohttp.org/en/stable/). The documentation suggests installing this two optional library:
 - [cchardet](https://pypi.python.org/pypi/cchardet/): cChardet is high speed universal character encoding detector - binding to charsetdetect.
 - [aiodns](https://pypi.python.org/pypi/aiodns): DNS resolver for asyncio.
 
## Usage

Wrap all the coroutines that needs to use the API inside one AsyncClientContext().
The AsyncClientContext will automatically open and close the underlying aiohttp session.
You can also wrap your entire application.

    async with AsyncClientContext(api_key='12345678-1234-1234-1234-123456789ABC'):
        await all_your_coroutines_that_use_the_api()

Import (Card and Set will be most used)

    from pokemontcgsdk import Card
    from pokemontcgsdk import Set
    from pokemontcgsdk import Type
    from pokemontcgsdk import Supertype
    from pokemontcgsdk import Subtype
    from pokemontcgsdk import Rarity

### Classes

    Card
    Set
    Type
    Supertype
    Subtype
    Rarity

### Properties Per Class

#### Card

    abilities
    artist
    ancientTrait
    attacks
    convertedRetreatCost
    evolvesFrom
    flavorText
    hp
    id
    images
    legalities
    regulationMark
    name
    nationalPokedexNumbers
    number
    rarity
    resistances
    retreatCost
    rules
    set
    subtypes
    supertype
    tcgplayer
    types
    weaknesses

#### Set

    id
    images
    legalities
    name
    printedTotal
    ptcgoCode
    releaseDate
    series
    total
    updatedAt

### Functions Available

#### Find a card by id

    card = await Card.find('xy1-1')

#### Filter Cards via query parameters

    cards = await Card.where(q='set.name:generations supertype:pokemon')

#### Find all cards (will take a while)

    cards = await Card.all()

#### Get all cards, but only a specific page of data

    cards = await Card.where(page=5, pageSize=250)

#### Find a set by code

    set = await Set.find('base1')

#### Filter sets via query parameters

    sets = await Set.where(q='legalities.standard:legal')

#### Get all Sets

    sets = await Set.all()

#### Get all Types

    types = await Type.all()

#### Get all Subtypes

    subtypes = await Subtype.all()

#### Get all Supertypes

    supertypes = await Supertype.all()

#### Get all Rarities

    rarities = await Rarity.all()


