8 Matching Annotations
  1. Jun 2017
    1. retrieves the JSON data

      Step 2: Grabs the data from the URL...

    2. generates a well-formed search URL

      Step 1: Creates a URL to be looked at by another fuction/method

    3. 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.
    1. # 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?

    2. given the annotation's API URL

      Is this specific to an annotation? Yes, I guess.