8 Matching Annotations
- Jun 2017
-
github.com github.com
-
retrieves the JSON data
Step 2: Grabs the data from the URL...
-
generates a well-formed search URL
Step 1: Creates a URL to be looked at by another fuction/method
-
To enhance that process, you could add the appropriate path to the output file name in this script, and write a shell script that runs this script and then commits/pushes to GitHub, and then schedule that script to run at regular intervals from your computer/server. I'm going to look into adding that functionality to this script, but it's not ready yet.
-
-
github.com github.com
-
# search for all annotations with the tag IndieEdTech and return them in json format. s = searchurl(tag = 'IndieEdTech') l = retrievelist(s) # print the title of each article annotated. for entry in l: e = Annotation(entry) print(e.title)
I don't get it. Is this all I need to put into a Jupyter Notebook?
-
given the annotation's API URL
Is this specific to an annotation? Yes, I guess.
-