A Python wrapper around the yugiohprices.com API.
Usage:
from prices import YGOPricesAPI
api = YGOPricesAPI()
>>> api.get_price_by_name('Blue-Eyes White Dragon')
>>> api.get_price_by_tag('YSKR-EN001', rarity='Secret Rare')
>>> api.get_set_data('Legend of Blue Eyes White Dragon')
>>> api.get_sets()
>>> api.get_rising_and_falling()
>>> api.get_top_100(rarity='Secret Rare')
>>> api.get_card_names()
>>> api.get_card_data('Blue-Eyes White Dragon')
>>> api.get_card_versions('Blue-Eyes White Dragon')
>>> api.get_card_support('Blue-Eyes White Dragon')