I'm having some trouble in understanding how jsonify works even though I went through the documentation. As you can see below, I'm calling the lookup() function which returns a dictionary, then I'm trying to jsonify it.
@app.route("/articles")
def articles():
    a = lookup(33496)
    return jsonify([link=a["link"], title = a["title"]])       #invalid syntax error
my helpers.py:
import feedparser
import urllib.parse
def lookup(geo):
    """Looks up articles for geo."""       #this function already parses the 'link' and 'title' form rss feed
    # check cache for geo
    if geo in lookup.cache:
        return lookup.cache[geo]
    # get feed from Google
    feed = feedparser.parse("http://news.google.com/news?geo={}&output=rss".format(urllib.parse.quote(geo, safe="")))
    # if no items in feed, get feed from Onion
    if not feed["items"]:
        feed = feedparser.parse("http://www.theonion.com/feeds/rss")
    # cache results
    lookup.cache[geo] = [{"link": item["link"], "title": item["title"]} for item in feed["items"]]
    # return results
    return lookup.cache[geo]
# initialize cache
lookup.cache = {}
The error that I'm getting is of invalid syntax. Any idea into what I'm doing wrong? Thanks
 
     
     
    