doc_extracted
Demonstrates the OPDS 1.2 catalog endpoint that returns the complete ebook catalog in OPDS format for use in ereading applications.
curl 'https://standardebooks.org/feeds/opds'
import requests
resp = requests.get("https://standardebooks.org/feeds/opds")
data = resp.json()
import zingu_apis
api = zingu_apis.api("standardebooks")
result = api.fetch("feeds/opds")
for item in result:
print(item)
const resp = await fetch("https://standardebooks.org/feeds/opds");
const data = await resp.json();