diff --git a/examples/card_editions.py b/examples/card_editions.py new file mode 100644 index 0000000..030aeea --- /dev/null +++ b/examples/card_editions.py @@ -0,0 +1,8 @@ +import scrython + +query = input("What editions of a card are you looking for? ") + +data = scrython.cards.Search(q="++{}".format(query)) + +for card in data.data(): + print(card['set'].upper(), ":", card['set_name'])