The Status
object of tweepy itself is not JSON serializable, but it has a _json
property which contains JSON serializable response data. For example:
>>> status_list = api.user_timeline(user_handler)
>>> status = status_list[0]
>>> json_str = json.dumps(status._json)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…