probe-gate
curl 'https://deckofcardsapi.com/api/deck/new/'
import requests
resp = requests.get("https://deckofcardsapi.com/api/deck/new/")
data = resp.json()
import zingu_apis
api = zingu_apis.api("deckofcardsapi")
result = api.fetch("deck/new/")
for item in result:
print(item)
const resp = await fetch("https://deckofcardsapi.com/api/deck/new/");
const data = await resp.json();