diff --git a/setup.py b/setup.py index 106cbb6..90f94a1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from setuptools import find_packages __author__ = 'Ryan McGrath ' -__version__ = '1.4.4' +__version__ = '1.4.5' setup( # Basic package information. diff --git a/twython/twython.py b/twython/twython.py index 7cee037..14b5806 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -9,7 +9,7 @@ """ __author__ = "Ryan McGrath " -__version__ = "1.4.4" +__version__ = "1.4.5" import cgi import urllib diff --git a/twython3k/twitter_endpoints.py b/twython3k/twitter_endpoints.py index 6ad15bc..030d110 100644 --- a/twython3k/twitter_endpoints.py +++ b/twython3k/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',