Guest User

Untitled

a guest
Jan 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. r = requests.get('https://jsonplaceholder.typicode.com/users')
  2.  
  3. print r.text
  4.  
  5. [{
  6. "id": 1,
  7. "name": "Leanne Graham",
  8. "username": "Bret",
  9. "email": "Sincere@april.biz",
  10. "address": {
  11. "street": "Kulas Light",
  12. "suite": "Apt. 556",
  13. "city": "Gwenborough",
  14. "zipcode": "92998-3874",
  15. "geo": {
  16. "lat": "-37.3159",
  17. "lng": "81.1496"
  18. }
  19. }]
  20.  
  21. print r.text[0]
Add Comment
Please, Sign In to add comment