In [19]:
import requests
import json

In [20]:
r = requests.get("https://jobs.github.com/positions.json?description=python&location=sf")

In [22]:
#print r.text
data = r.text

jobs_data = json.loads(data)

In [23]:
for job in jobs_data:
    print job['title']


Full-Stack Software Engineer
Maps Software Engineer - Python/DevOps - 37466787
Java Server Software Engineer - 37455960
Security Software Engineer - 37455514
Generalist Software Engineer @ Motionloft
ZeroCater is looking for a full-stack engineer to help feed the world.
Software Engineer
Maps Services API Engineer - Mandarin - 36598627
Operations Engineer
Senior Software Engineer, Maps API - 37256225
Maps Search infrastructure Engineer - 31734940
Sr Software Engineer
Senior Systems Engineer
Lead DevOps Engineer
Senior Backend Engineer @ GoPro
Frontend Software Engineer

In [24]:
for job in jobs_data:
    if "Django" in job['description']:
        print job['url']


http://jobs.github.com/positions/9190fff6-cb5e-11e3-8805-d4467767e4fe
http://jobs.github.com/positions/41990432-7f2f-11e4-88d6-5baaedf16410

In [ ]: