Created
August 29, 2020 15:18
-
-
Save Neptune998/5dcb10359daf58038bc6fefb5e3aa35a to your computer and use it in GitHub Desktop.
Here we can scrape data using requests module in Python.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
jsonData = requests.get(r'https://api.stagingjobshq.com/madgexWidgetJobs.php?callback=displayJobs&city=Moorhead&state=Minnesota', verify=False).text.strip() | |
return jsonData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment