Skip to content

Instantly share code, notes, and snippets.

@tomazursic
Last active June 30, 2017 21:40
Show Gist options
  • Save tomazursic/ddd3a055d59f606ecb1efdb06abbf89e to your computer and use it in GitHub Desktop.
Save tomazursic/ddd3a055d59f606ecb1efdb06abbf89e to your computer and use it in GitHub Desktop.
Random User
#!/usr/bin/env python
import json
import requests
url = 'https://randomuser.me/api/'
def main():
res = requests.get(url).json()
j = json.dumps(res, indent=2)
print(j)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment