Created
August 29, 2020 15:29
-
-
Save Neptune998/32d66c7859cd80770f5bbd8db64c7333 to your computer and use it in GitHub Desktop.
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
// The name of the Python script that returns the scraped data is scrape_data.py | |
let scrapeJSON = 'http://bluegalaxy.info/cgi/scrape_data.py' | |
$.get(scrapeJSON, function(data) { | |
// Get JSON data from Python script | |
if (data){ | |
console.log("Data returned:", data) | |
} | |
jobDataJSON = JSON.parse(data) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment