我也是 Python 和 JSON 的新手。我安装了 twython 来与 Twitter API “对话”。我在 Mac 上使用 Python 2.7。
我想通过 API 获得我的提及。该程序应识别提到我的 Twitter 用户。
我尝试:
t = Twython(...)
men = t.get_mentions_timeline()
用户被提及一次,print men 显示了很多这样的东西:
[{u'contributors': None, u'truncated': False, u'text': .... u'Sun May 26 09:18:55 +0000 2013', u'in_reply_to_status_id_str': None, u'place': None}]
在这些东西的某个地方,我看到了我想从响应中提取的所有东西。
我怎样才能提取screen_name
?
我对 or 很困惑json.dumps
-json.loads
我应该使用json
orsimplejson
吗?