Skip to content

Instantly share code, notes, and snippets.

@aechiara
Created December 13, 2016 13:37
Show Gist options
  • Save aechiara/cb10e9fcce5663e9d985d741320aac6f to your computer and use it in GitHub Desktop.
Save aechiara/cb10e9fcce5663e9d985d741320aac6f to your computer and use it in GitHub Desktop.
Export data from skoob.com.br
import json, requests
url = 'https://www.skoob.com.br/v1/bookcase/books/271088/shelf_id:1/page:1/limit:50/'
resp = requests.get(url)
if resp.status_code != 200:
raise Exception('Erro acessando URL', resp.status_code)
lista = json.loads(resp.text)
for i in lista.get('response'):
print('Titulo: {}'.format(i.get('edicao').get('nome_portugues')))
@igorteuri
Copy link

Does this still work? How can I use it?

@aechiara
Copy link
Author

aechiara commented Jan 8, 2023

hi, i think it still working, you can use it, if you want, at your own peril

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment