From 88474546e1134f2d350e54e046e38cdebceb9e82 Mon Sep 17 00:00:00 2001 From: oliver Date: Wed, 26 Oct 2011 18:04:59 +0100 Subject: [PATCH] Adding in end point for userLookup to facilitate https://dev.twitter.com/docs/api/1/get/users/lookup --- twython/twitter_endpoints.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/twython/twitter_endpoints.py b/twython/twitter_endpoints.py index 6ad15bc..030d110 100644 --- a/twython/twitter_endpoints.py +++ b/twython/twitter_endpoints.py @@ -119,6 +119,11 @@ api_table = { 'method': 'GET', }, + 'lookupUser': { + 'url': '/users/lookup.json', + 'method': 'GET', + }, + # Status methods - showing, updating, destroying, etc. 'showStatus': { 'url': '/statuses/show/{{id}}.json',