doc_extracted
Demonstrates accessing the bulk downloads landing page which provides links to download ebook collections by subject, collection, author, or month.
curl 'https://standardebooks.org/bulk-downloads'
import requests
resp = requests.get("https://standardebooks.org/bulk-downloads")
data = resp.json()
import zingu_apis
api = zingu_apis.api("standardebooks")
result = api.fetch("bulk-downloads")
for item in result:
print(item)
const resp = await fetch("https://standardebooks.org/bulk-downloads");
const data = await resp.json();