A simple package to interact with the excellent EDHRec site for Magic the Gathering
Project description
PyEDHRec
Overview
This is a python wrapper around the excellent EDHREC website. Currently, EDHREC does not provide an API so the intent of this library is to enable people to build automated tooling around the useful information EDHREC provides.
Installation
This package is available on PyPI and can be installed with pip
pip install pyedhrec
Usage
Create an instance of the edhrec client
from pyedhrec import EDHRec
edhrec = EDHRec()
# Reference cards by the exact card name, the library will format as needed
miirym = "Miirym, Sentinel Wyrm"
# Get basic card details
details = edhrec.get_card_details(miirym)
# Get details for a list of cards
card_list = edhrec.get_card_list(["Pongify", "Farseek"])
# Get an edhrec.com link for a given card
miirym_link = edhrec.get_card_link(miirym)
# Get combos for a card
miirym_combos = edhrec.get_card_combos(miirym)
# Get commander data
miirym_commander_data = edhrec.get_commander_data(miirym)
# Get cards commonly associated with a commander
miirym_cards = edhrec.get_commander_cards(miirym)
# Get the average decklist for a commander
miirym_avg_deck = edhrec.get_commanders_average_deck(miirym)
# Get known deck lists for a commander
miirym_decks = edhrec.get_commander_decks(miirym)
# This library provides several methods to get specific types of recommended cards
new_cards = edhrec.get_new_cards(miirym)
high_synergy_cards = edhrec.get_high_synergy_cards(miirym)
# Get all top cards
top_cards = edhrec.get_top_cards(miirym)
# Get specific top cards by type
top_creatures = edhrec.get_top_creatures(miirym)
top_instants = edhrec.get_top_instants(miirym)
top_sorceries = edhrec.get_top_sorceries(miirym)
top_enchantments = edhrec.get_top_enchantments(miirym)
top_artifacts = edhrec.get_top_artifacts(miirym)
top_mana_artifacts = edhrec.get_top_mana_artifacts(miirym)
top_battles = edhrec.get_top_battles(miirym)
top_planeswalkers = edhrec.get_top_planeswalkers(miirym)
top_utility_lands = edhrec.get_top_utility_lands(miirym)
top_lands = edhrec.get_top_lands(miirym)
Caching
To avoid excessive requests to edhrec.com this library uses in-memory caching for card retrieval methods. Each time you run a script using this library we'll cache the results for any given card. If you request the card again during the same execution we will use the cached value until the cache expires (defaults to 24 hours). If you use a long running script know that card data will only be updated once a day. Due to the nature of the game not changing often this should normally not cause issues and will help alleviate excessive traffic to EDHREC servers.
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
File details
Details for the file pyedhrec-0.0.2.tar.gz
.
File metadata
- Download URL: pyedhrec-0.0.2.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bc20eccbdc2182a779a03f7a904168fd406f746afc2e6814d6f489d0d5dfb1e |
|
MD5 | e9bf7a0c036e64161a14670f48f30143 |
|
BLAKE2b-256 | c47778aeece0f3251f2bfa72f75fa693f51c9d05c9067adcac559957d9f8b348 |
File details
Details for the file pyedhrec-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: pyedhrec-0.0.2-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5284ec3b8308294adf62771f5ec79ffde4b0de2c5fd5fea2e36219612859bbc4 |
|
MD5 | fe180ef0683ebc14bc822c8affe613d4 |
|
BLAKE2b-256 | 5428d416004fd044e95eb4dadd3057106b238b3e31d8dc220aca7ca70a0bfac0 |