From 226f129edb443b2e7c348527986039e0ba108941 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Thu, 27 Oct 2011 02:32:28 +0900 Subject: [PATCH] Copy new endpoint to Twython3k, bump release --- setup.py | 2 +- twython/twython.py | 2 +- twython3k/twitter_endpoints.py | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) 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',