A fast, type-safe Python SDK for the TCGdex API. Query Pokémon Trading Card Game data easily. 🚀
Project description
TCGdex Python SDK
A fast, type-safe Python SDK for the TCGdex API. Query Pokémon Trading Card Game data easily. 🚀
from tcgdexsdk import TCGdex
# Fetch a card in one line
card = await TCGdex().card.get("swsh3-136")
card = TCGdex().card.getSync("swsh3-136")
print(f"Found: {card.name} ({card.localId}/{card.set.cardCount.total})")
⚡️ Quick Install
pip install tcgdex-sdk
🚀 Features
- Type-Safe: Full typing support for better IDE integration
- Async/Await: Built for modern Python applications and compatible with synchronous operations
- Zero Config: Works out of the box
- Multi-Language: Support for English, French, German, Japanese, Chinese, and more
- Rich Data: Access cards, sets, series, rarities, and more
- Lightweight: Minimal dependencies (only dacite)
🎯 Quick Examples
Find Cards by Various Criteria
sdk = TCGdex("en")
# Get the cards made by the illustrator
cards = await sdk.illustrator.get("5ban Graphics")
cards = sdk.illustrator.getSync("5ban Graphics")
# Get the data about the Sword & Shield serie by ID
series = await sdk.serie.get("swsh")
series = sdk.serie.getSync("swsh")
# Get all cards with 110 HP
hp_cards = await sdk.hp.get("110")
hp_cards = sdk.hp.getSync("110")
# List all available rarities
rarities = await sdk.rarity.list()
rarities = sdk.rarity.listSync()
# List all cards with the name being "Furret"
rarities = await sdk.card.list(Query().equal("name", "Furret"))
rarities = sdk.card.listSync(Query().equal("name", "Furret"))
Working with Sets and Series
# Get set details
darkness_ablaze = await sdk.set.get("Darkness Ablaze")
# darkness_ablaze = sdk.set.getSync("Darkness Ablaze")
print(f"Set: {darkness_ablaze.name} ({darkness_ablaze.cardCount.total} cards)")
# Get series info
swsh = await sdk.serie.get("swsh")
# swsh = sdk.serie.getSync("swsh")
print(f"Series: {swsh.name} ({len(swsh.sets)} sets)")
🛠 Available Endpoints
Card Data
sdk.card # Core card data
sdk.rarity # Card rarities
sdk.hp # HP values
sdk.illustrator # Card illustrators
Game Mechanics
sdk.type # Pokémon types
sdk.energyType # Energy types
sdk.retreat # Retreat costs
sdk.stage # Evolution stages
Card Details
sdk.variant # Card variants
sdk.suffix # Card suffixes
sdk.regulationMark # Regulation marks
sdk.dexId # Pokédex IDs
Collections
sdk.set # Card sets
sdk.serie # Card series
🌐 Language Support
from tcgdexsdk import TCGdex, Language
# Using string
sdk = TCGdex("en") # English
sdk = TCGdex("fr") # French
# Using enum (type-safe)
sdk = TCGdex(Language.EN)
sdk = TCGdex(Language.FR)
# After creating the instance you can change at any time the language
sdk.setLanguage(Language.FR)
# or
sdk.setLanguage("fr")
full list of languages available here
__
🤝 Contributing
We love contributions! Here's how:
- 🍴 Fork it
- 🌿 Create your feature branch (
git checkout -b feature/amazing) - 🔧 Make your changes
- 🚀 Push to the branch (
git push origin feature/amazing) - 🎉 Open a PR
📘 Documentation
💬 Community & Support
- Discord Server - Get help and discuss features
- GitHub Issues - Bug reports and feature requests
📜 License
MIT © TCGdex
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tcgdex_sdk-2.3.0.tar.gz
(3.6 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tcgdex_sdk-2.3.0.tar.gz.
File metadata
- Download URL: tcgdex_sdk-2.3.0.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.26.7 CPython/3.13.12 Linux/6.17.0-1010-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb6b38d40c1851e5b314ac098dc8fc8dc83b1f180a42254f253afa9d174a6034
|
|
| MD5 |
6cba09e70750235a79f1f19ebabfd6d0
|
|
| BLAKE2b-256 |
4f313d4a15620c694b5b24dd525e2978b6d02ddeaf1fc798f009aa2ca062ca9a
|
File details
Details for the file tcgdex_sdk-2.3.0-py3-none-any.whl.
File metadata
- Download URL: tcgdex_sdk-2.3.0-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.26.7 CPython/3.13.12 Linux/6.17.0-1010-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee6acea796c112ca68c3323d14a7fa14981e76514423497b30271ca53d4accc3
|
|
| MD5 |
91605635450e69be1838d0d551d84ccb
|
|
| BLAKE2b-256 |
293d9bdf9c825af4cae502c1a38e9d5c6470a5f9f5e6eb7163ef45d5e84c7ca9
|