Skip to content

Instantly share code, notes, and snippets.

View dougstrouth's full-sized avatar

Doug Strouth dougstrouth

View GitHub Profile
@dougstrouth
dougstrouth / main.py
Created February 8, 2023 02:54
Lorcana API call for CSV
# import libraries
import requests
import csv
# create base urls for most api calls
base_list_url = "https://api.lorcana-api.com/lists/"
base_card_url = "https://api.lorcana-api.com/strict/"
names_list_url = base_list_url+"names"
sets_list_url = base_list_url+"sets"
colors_list_url = base_list_url+"colors"