Python client library for TCGplayer API with async support, rate limiting, and comprehensive endpoint coverage
Project description
TCGplayer Client - Python API Client
[](https://www.python.org/downloads/) [](https://opensource.org/licenses/MIT) [](https://github.com/psf/black) [](https://pycqa.github.io/isort/)
โ ๏ธ CRITICAL RATE LIMITING WARNING
TCGplayer's API enforces a hard maximum of 10 requests per second. Exceeding this limit can result in:
- API access being permanently revoked
- Account suspension
- Legal consequences
This client automatically enforces this limit to protect your API access.
A comprehensive, production-ready Python client library for the TCGplayer API with async support, intelligent rate limiting, caching, and comprehensive endpoint coverage. Built for developers who need reliable, scalable access to TCGplayer's trading card data.
๐ Features
- ๐ Full API Coverage: All 55+ documented TCGplayer API endpoints with comprehensive error handling (buylist endpoints removed - discontinued by TCGPlayer)
- โก Async/Await Support: Built with modern Python async patterns for high-performance applications
- ๐ Intelligent Rate Limiting: Adaptive request throttling that respects API limits and prevents rate limit errors
- ๐พ Smart Caching: Configurable response caching with TTL and LRU eviction for improved performance
- ๐ Robust Authentication: OAuth2 token management with automatic refresh and session persistence
- ๐ก๏ธ Enterprise-Grade Error Handling: Custom exception hierarchy with detailed error context and retry logic
- ๐ Comprehensive Logging: Structured logging with configurable levels and multiple output formats
- โ๏ธ Flexible Configuration: Environment variables, config files, and runtime configuration management
- ๐งช Full Test Coverage: Comprehensive test suite with pytest and async testing support
- ๐ Type Hints: Full type annotation support for better development experience and IDE integration
๐ฆ Installation
From Source (Development)
git clone <https://github.com/joshwilhelmi/tcgplayer-python.git>
cd tcgplayer-python
pip install -e .
From PyPI
pip install tcgplayer-client
๐ Quick Start
Migration from v1.x
If you're upgrading from version 1.x, be aware of these breaking changes:
# โ OLD (v1.x) - Buylist methods (no longer available)
# await client.endpoints.buylist.get_buylist_prices([12345])
# await client.endpoints.pricing.get_buylist_prices([12345])
# โ
NEW (v2.0.1) - Market prices only
await client.endpoints.pricing.get_market_prices([12345])
await client.endpoints.pricing.get_sku_market_prices([67890])
Note: Buylist functionality was discontinued by TCGPlayer and has been removed from this client.
Basic Usage
import asyncio
from tcgplayer_client import TCGPlayerClient
async def main():
# Initialize client with your API credentials
client = TCGPlayerClient(
client_id="your_client_id",
client_secret="your_client_secret"
)
# Authenticate automatically
await client.authenticate()
# Use endpoints
categories = await client.endpoints.catalog.get_categories()
print(f"Found {len(categories)} product categories")
# Get pricing for a specific product
prices = await client.endpoints.pricing.get_product_prices(product_id=12345)
print(f"Product prices: {prices}")
if __name__ == "__main__":
asyncio.run(main())
Advanced Configuration
from tcgplayer_client import TCGPlayerClient, ClientConfig
# Custom configuration
config = ClientConfig(
max_requests_per_second=20,
enable_caching=True,
cache_ttl=300, # 5 minutes
log_level="DEBUG"
)
client = TCGPlayerClient(
client_id="your_client_id",
client_secret="your_client_secret",
config=config
)
Environment Variables
export TCGPLAYER_CLIENT_ID="your_client_id"
export TCGPLAYER_CLIENT_SECRET="your_client_secret"
export TCGPLAYER_LOG_LEVEL="INFO"
export TCGPLAYER_ENABLE_CACHING="true"
export TCGPLAYER_CACHE_TTL="300"
๐ API Endpoints
The client provides organized access to all TCGplayer API endpoints through specialized endpoint classes:
๐ Catalog Endpoints
- Categories: Product categories and hierarchies
- Groups: Product groups and classifications
- Products: Detailed product information
- Search: Advanced product search and filtering
๐ฐ Pricing Endpoints
- Market Prices: Current market pricing data
- Price Guides: Historical price trends and guides
- SKU Pricing: Product variant pricing information
๐ช Store Endpoints
- Store Information: Store details and metadata
- Store Inventory: Available inventory and stock levels
- Store Locations: Geographic store information
๐ฆ Order Endpoints
- Order Management: Create, update, and track orders
- Order History: Historical order data and analytics
- Order Status: Real-time order status updates
๐ Inventory Endpoints
- Inventory Management: Add, update, and remove inventory
- Stock Levels: Current stock quantities and availability
- Inventory Analytics: Inventory performance metrics
โ๏ธ Configuration
โ ๏ธ Critical Rate Limiting Restriction
IMPORTANT: TCGplayer's API enforces a hard maximum of 10 requests per second. Exceeding this limit can result in:
- API access being temporarily suspended
- Permanent API access revocation
- Account restrictions
The client automatically enforces this limit regardless of your configuration to prevent API violations.
Client Configuration
from tcgplayer_client import ClientConfig
config = ClientConfig(
# API Configuration
base_url="<https://api.tcgplayer.com>",
api_version="v1.0",
# Rate Limiting (MAXIMUM: 10 requests per second)
max_requests_per_second=10, # Will be capped to 10 if higher
rate_limit_window=1.0,
max_retries=3,
base_delay=1.0,
# Session Management
max_connections=100,
max_connections_per_host=10,
keepalive_timeout=30.0,
# Caching
enable_caching=True,
cache_ttl=300,
max_cache_size=1000,
# Logging
log_level="INFO",
log_file="tcgplayer.log",
enable_console_logging=True,
enable_file_logging=True
)
Rate Limiting
client = TCGPlayerClient(
max_requests_per_second=20, # โ ๏ธ Will be automatically capped to 10
rate_limit_window=1.0, # 1 second window
max_retries=5, # 5 retry attempts
base_delay=2.0 # 2 second base delay
)
# The client will log a warning and cap the rate limit to 10 req/s
# This prevents accidental API violations
Caching Configuration
client = TCGPlayerClient(
config=ClientConfig(
enable_caching=True,
cache_ttl=600, # 10 minutes
max_cache_size=5000, # 5000 cached responses
cache_cleanup_interval=300 # Cleanup every 5 minutes
)
)
๐ก๏ธ Error Handling
The library provides a comprehensive exception hierarchy for different error scenarios:
from tcgplayer_client import (
TCGPlayerError,
AuthenticationError,
RateLimitError,
APIError,
NetworkError,
TimeoutError,
RetryExhaustedError,
InvalidResponseError
)
try:
result = await client.endpoints.catalog.get_categories()
except AuthenticationError:
print("Authentication failed - check your credentials")
except RateLimitError as e:
print(f"Rate limit exceeded - retry after {e.retry_after} seconds")
except APIError as e:
print(f"API error {e.status_code}: {e.message}")
print(f"Error type: {e.error_type}")
print(f"Request ID: {e.request_id}")
except NetworkError as e:
print(f"Network error: {e}")
print(f"Retry count: {e.retry_count}")
except TimeoutError:
print("Request timed out")
except RetryExhaustedError:
print("Max retries exceeded")
Error Context and Retry Information
try:
result = await client.endpoints.pricing.get_product_prices(product_id=12345)
except APIError as e:
print(f"Error occurred during pricing request:")
print(f" Endpoint: {e.endpoint}")
print(f" Method: {e.method}")
print(f" Status: {e.status_code}")
print(f" Message: {e.message}")
print(f" Request ID: {e.request_id}")
print(f" Timestamp: {e.timestamp}")
๐ Logging
Basic Logging Setup
from tcgplayer_client.logging_config import setup_logging, get_logger
# Setup logging with default configuration
setup_logging()
# Get logger for your module
logger = get_logger(__name__)
# Use structured logging
logger.info("Starting TCGplayer client", extra={
"client_id": "your_client_id",
"endpoint": "catalog",
"operation": "get_categories"
})
Advanced Logging Configuration
from tcgplayer_client.logging_config import TCGPlayerLogger
# Custom logger configuration
logger = TCGPlayerLogger(
name="my_app",
level="DEBUG",
enable_console=True,
enable_file=True,
log_file="app.log",
enable_json=True,
formatter="structured"
)
logger.info("Custom logger configured", extra={"component": "tcgplayer_client"})
๐ง Development
Setup Development Environment
# Clone repository
git clone <https://github.com/joshwilhelmi/tcgplayer-python.git>
cd tcgplayer-python
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in development mode
pip install -e ".[dev]"
# Install pre-commit hooks (optional)
pre-commit install
Local Testing Pipeline
The project includes a comprehensive local testing pipeline that mimics GitHub Actions:
# Run full local CI pipeline (recommended before pushing)
make ci
# Quick quality checks
make quick-check
# Individual tools
make format # Black + isort
make lint # Flake8
make type-check # MyPy
make security # Bandit + Safety + Semgrep
make test # Pytest with coverage
# See [LOCAL_TESTING.md](LOCAL_TESTING.md) for detailed usage
Running Tests
# Run all tests
pytest
# Run with coverage
pytest --cov=tcgplayer_client --cov-report=html
# Run specific test file
pytest tests/test_client.py
# Run tests with verbose output
pytest -v
# Run tests in parallel
pytest -n auto
Code Quality
# Code formatting
black .
isort .
# Linting
flake8 tcgplayer_client/
mypy tcgplayer_client/
# Run all quality checks
make quality # If Makefile is available
Security Testing
# Security scanning with Bandit
bandit -r tcgplayer_client/ -f json -o bandit-report.json
# Dependency vulnerability scanning
safety check
# Advanced security analysis
pip install semgrep
semgrep --config=auto tcgplayer_client/
# Dependency security audit
pip-audit
Note: Security issues have been identified and fixed in the codebase:
- โ MD5 โ SHA256: Replaced weak MD5 hashing with secure SHA256 for cache keys
- โ Try-except-pass: Fixed silent exception handling with proper logging
- โ Assert statements: Replaced with proper runtime error handling
โ COMPLETED: Security tools are now integrated into the CI/CD pipeline for automated security testing.
Comprehensive Testing Strategy
The project includes multiple layers of testing to ensure code quality and security:
1. Unit Testing (pytest)
# Run all tests with coverage
pytest --cov=tcgplayer_client --cov-report=html --cov-report=term-missing
# Run specific test categories
pytest tests/test_auth.py # Authentication tests
pytest tests/test_client.py # Main client tests
pytest tests/test_endpoints/ # API endpoint tests
pytest tests/test_rate_limiter.py # Rate limiting tests
pytest tests/test_cache.py # Caching tests
# Run tests in parallel
pytest -n auto --dist=loadfile
# Generate coverage reports
pytest --cov=tcgplayer_client --cov-report=html --cov-report=xml
2. Security Testing (Automated)
# Bandit security scanning
bandit -r tcgplayer_client/ -f json -o bandit-report.json
bandit -r tcgplayer_client/ -f txt
# Safety dependency scanning
safety check --json --output safety-report.json
safety check
# Semgrep static analysis
semgrep --config=auto --json --output=semgrep-report.json tcgplayer_client/
# Pip audit for dependencies
pip-audit --desc --format=json --output=pip-audit-report.json
3. Code Quality Testing
# Black code formatting
black --check --diff .
# Import sorting
isort --check-only --diff .
# Flake8 linting
flake8 tcgplayer_client/ tests/ --max-line-length=88 --extend-ignore=E203,W503
# MyPy type checking
mypy tcgplayer_client/ --ignore-missing-imports
# Pre-commit hooks (if installed)
pre-commit run --all-files
4. Performance Testing
# Run performance benchmarks
python -m pytest tests/test_performance.py -v
# Memory usage profiling
python -m memory_profiler tests/test_memory.py
# Async performance testing
python -m pytest tests/test_async_performance.py -v
5. Integration Testing
# Test with real TCGplayer API (requires credentials)
export TCGPLAYER_CLIENT_ID="your_client_id"
export TCGPLAYER_CLIENT_SECRET="your_client_secret"
python -m pytest tests/test_integration.py -v
# Test rate limiting compliance
python -m pytest tests/test_rate_limit_compliance.py -v
6. Test Coverage Goals
- Current Coverage: 95%+ (90+ tests passing)
- Target Coverage: 95%+ for production quality
- Critical Paths: 100% coverage for authentication, rate limiting, and error handling
- New Features: 95%+ coverage requirement before merge
Testing Examples
import pytest
from tcgplayer_client import TCGPlayerClient
@pytest.mark.asyncio
async def test_catalog_endpoints():
client = TCGPlayerClient()
# Test categories endpoint
categories = await client.endpoints.catalog.get_categories()
assert isinstance(categories, list)
assert len(categories) > 0
# Test product search
products = await client.endpoints.catalog.search_products(
search_term="Black Lotus"
)
assert isinstance(products, list)
๐ Requirements
Core Dependencies
- Python: 3.8 or higher
- aiohttp: 3.8.0 or higher (async HTTP client)
Development Dependencies
- pytest: Testing framework
- pytest-asyncio: Async testing support
- pytest-cov: Coverage reporting
- black: Code formatting
- isort: Import sorting
- flake8: Linting
- mypy: Type checking
๐๏ธ Architecture
Core Components
tcgplayer_client/
โโโ client.py # Main client class
โโโ auth.py # Authentication management
โโโ rate_limiter.py # Rate limiting and throttling
โโโ session_manager.py # HTTP session management
โโโ cache.py # Response caching system
โโโ config.py # Configuration management
โโโ validation.py # Input validation
โโโ logging_config.py # Logging configuration
โโโ exceptions.py # Custom exception hierarchy
โโโ endpoints/ # API endpoint implementations
โโโ catalog.py # Catalog operations
โโโ pricing.py # Pricing operations
โโโ stores.py # Store operations
โโโ orders.py # Order operations
โโโ inventory.py # Inventory operations
โโโ pricing.py # Pricing operations (market prices, price guides)
Design Patterns
- Async/Await: Modern Python async patterns for non-blocking I/O
- Factory Pattern: Endpoint creation and management
- Strategy Pattern: Configurable rate limiting and caching strategies
- Observer Pattern: Event-driven logging and monitoring
- Builder Pattern: Configuration object construction
๐ Examples
Bulk Product Processing
async def process_products_bulk(client, product_ids):
"""Process multiple products efficiently with rate limiting."""
results = []
for product_id in product_ids:
try:
# Get product details
product = await client.endpoints.catalog.get_product(product_id)
# Get current pricing
pricing = await client.endpoints.pricing.get_product_prices(product_id)
# Get store inventory
inventory = await client.endpoints.stores.get_store_inventory(product_id)
results.append({
'product': product,
'pricing': pricing,
'inventory': inventory
})
except Exception as e:
logger.error(f"Error processing product {product_id}: {e}")
continue
return results
Store Inventory Monitoring
async def monitor_store_inventory(client, store_id, product_ids):
"""Monitor store inventory levels for specific products."""
while True:
try:
for product_id in product_ids:
inventory = await client.endpoints.stores.get_store_inventory(
store_id=store_id,
product_id=product_id
)
if inventory and inventory.get('quantity', 0) > 0:
logger.info(f"Product {product_id} available at store {store_id}")
# Wait before next check
await asyncio.sleep(300) # 5 minutes
except Exception as e:
logger.error(f"Inventory monitoring error: {e}")
await asyncio.sleep(60) # Wait 1 minute on error
Price Alert System
async def price_alert_system(client, product_id, target_price):
"""Monitor product prices and alert when target price is reached."""
while True:
try:
prices = await client.endpoints.pricing.get_product_prices(product_id)
if prices and len(prices) > 0:
current_price = prices[0].get('price', float('inf'))
if current_price <= target_price:
logger.info(f"Price alert! Product {product_id} is now ${current_price}")
# Send notification (email, webhook, etc.)
break
await asyncio.sleep(3600) # Check every hour
except Exception as e:
logger.error(f"Price monitoring error: {e}")
await asyncio.sleep(300) # Wait 5 minutes on error
๐ค Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
Development Workflow
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Code Standards
- Follow PEP 8 style guidelines
- Use type hints for all function parameters and return values
- Write comprehensive docstrings
- Include tests for new functionality
- Ensure all tests pass before submitting
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Support
Getting Help
- ๐ Documentation: This README and inline code documentation
- ๐ Issues: [GitHub Issues](https://github.com/joshwilhelmi/tcgplayer-python/issues)
- ๐ฌ Discussions: [GitHub Discussions](https://github.com/joshwilhelmi/tcgplayer-python/discussions)
- ๐ง Email: josh@gobby.ai
Common Issues
Authentication Errors
- Verify your
client_idandclient_secretare correct - Check that your TCGplayer API account is active
- Ensure your IP address is whitelisted if required
Rate Limiting Issues
- Reduce your request frequency
- Implement exponential backoff in your application
- Use the built-in rate limiting features
Network Issues
- Check your internet connection
- Verify firewall settings
- Use the retry mechanisms built into the client
๐ Roadmap
Upcoming Features
- WebSocket Support: Real-time data streaming
- GraphQL Interface: Alternative to REST API
- Data Export: CSV/JSON export functionality
- Analytics Dashboard: Built-in data visualization
- Webhook Support: Event-driven notifications
- Multi-API Support: Integration with other trading card APIs
Version History
See CHANGELOG.md for a detailed history of changes and improvements.
๐ Acknowledgments
- TCGplayer for providing the comprehensive API
- Python Community for excellent async libraries and tools
- Contributors who help improve this library
- Open Source Community for inspiration and best practices
๐ Project Status
- Development Status: Production Ready
- Python Version Support: 3.8+
- Test Coverage: 95%+
- Documentation: Comprehensive
- License: MIT (Open Source)
- CI/CD: Automated testing, security scanning, and PyPI publishing
Made with โค๏ธ by Josh Wilhelmi
If you find this library helpful, please consider giving it a โญ on GitHub!
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
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 tcgplayer_client-2.0.3.tar.gz.
File metadata
- Download URL: tcgplayer_client-2.0.3.tar.gz
- Upload date:
- Size: 47.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
456a2564c724d275f94d3217d617a91fbf25de39a324ec382a3d82c2a19b8b07
|
|
| MD5 |
9bc8cc3b98fb694a561c87276b669ae3
|
|
| BLAKE2b-256 |
b81073983e63610b7435a1f031d35d355a9d65eb3f6acd8276d16b81c8ecf06f
|
File details
Details for the file tcgplayer_client-2.0.3-py3-none-any.whl.
File metadata
- Download URL: tcgplayer_client-2.0.3-py3-none-any.whl
- Upload date:
- Size: 38.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99bdc1fe3f0868754afd1b7dada71545dee5d549b76f3acb9b794d29abf9f73f
|
|
| MD5 |
b5a9982ec7e430de949983fdcedd9eb0
|
|
| BLAKE2b-256 |
9ef35c5ec37c632e8b862a6876eb9958c1bb017c9d4843347e3601b7a23e6cdb
|