Skip to content

Instantly share code, notes, and snippets.

@irq0
Created June 1, 2016 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irq0/bd966ca3fac0ded75f85ca66bf686b8c to your computer and use it in GitHub Desktop.
Save irq0/bd966ca3fac0ded75f85ca66bf686b8c to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import requests
import sys
req = requests.get("https://www.eventphone.de/guru2/phonebook?event=Chaos+Communication+Camp+2015&s={}&installedonly=0&format=json".format(sys.argv[1]), verify=False)
if req.ok:
print req.json()[0]["name"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment