curl 'https://standardebooks.org/feeds/atom/new-releases' \
-H 'Accept: application/atom+xml'
import requests
resp = requests.get(
"https://standardebooks.org/feeds/atom/new-releases",
headers={
'Accept': 'application/atom+xml',
},
)
data = resp.json()
import zingu_apis
api = zingu_apis.api("standardebooks")
result = api.fetch("feeds/atom/new-releases")
for item in result:
print(item)
const resp = await fetch("https://standardebooks.org/feeds/atom/new-releases", {
headers: {
"Accept": "application/atom+xml",
},
});
const data = await resp.json();