Skip to content

Instantly share code, notes, and snippets.

@vrootic
Created July 28, 2017 23:50
Show Gist options
  • Save vrootic/3144895face87e21f9616ff797c25f6b to your computer and use it in GitHub Desktop.
Save vrootic/3144895face87e21f9616ff797c25f6b to your computer and use it in GitHub Desktop.
import reqeusts
url = 'http://salesforce.careermount.com/candidate/job_search/quick/results'
payload = {
'location': 'California',
'keyword': 'software',
'sort_dir': 'desc',
'sort_field': 'post_date',
'relevance': 'false'
}
r = requests.get(url, params=payload)
print(r.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment