diff --git a/README.md b/README.md index a722219..a0acaf4 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ See TwitterAPI documentation. Geocoder -------- -The geocoder uses Google Maps API to get latitude and longitude from a human-readable address. See pygeocoder package for details. Google will attempt to geocode anything. (If you say your location is The Titanic, Google will geocode the shipwreck.) +The geocoder uses Google Maps API to get latitude and longitude from a human-readable address. All geocode is cached to avoid duplicate requests. Geocode requests are throttled to avoid exceeding the rate limit. See Geocoder.py for more information. @@ -44,7 +44,3 @@ Dependencies * TwitterAPI * pygeocoder * Fridge - -Contributors ------------- -* Jonas Geduldig diff --git a/README.txt b/README.txt deleted file mode 100644 index 4d5037e..0000000 --- a/README.txt +++ /dev/null @@ -1,47 +0,0 @@ -TwitterGeoPics -============== -Python scripts for geocoding tweets and for downloading images embedded in tweets. Supports Python 2.x and 3.x. - -SearchOldTweets.py ------------------ -Uses 'search/tweets' Twitter resource to get tweets, geocode and embedded photos. - -Example: - - > python -u -m TwitterGeoPics.SearchOldTweets -words love hate -location nyc - -For help: - - > python -u -m TwitterGeoPics.SearchOldTweets -h - -StreamNewTweets.py ------------------ -Uses 'statuses/filter' Twitter resource to get tweets, geocode and embedded photos. - -Example: - - > python -u -m TwitterGeoPics.StreamNewTweets -words love hate -location nyc - -For help: - - > python -u -m TwitterGeoPics.StreamNewTweets -h - -Authentication --------------- -See TwitterAPI documentation. - -Geocoder --------- -The geocoder uses Google Maps API to get latitude and longitude from a human-readable address. See pygeocoder package for details. Google will attempt to geocode anything. (If you say your location is The Titanic, Google will geocode the shipwreck.) - -All geocode is cached to avoid duplicate requests. Geocode requests are throttled to avoid exceeding the rate limit. See Geocoder.py for more information. - -Dependencies ------------ -* TwitterAPI -* pygeocoder -* Fridge - -Contributors ------------- -* Jonas Geduldig diff --git a/TwitterGeoPics/Geocoder.py b/TwitterGeoPics/Geocoder.py index 7167bf2..8b076ad 100755 --- a/TwitterGeoPics/Geocoder.py +++ b/TwitterGeoPics/Geocoder.py @@ -1,4 +1,4 @@ -__author__ = "Jonas Geduldig" +__author__ = "boxnumber03" __date__ = "December 20, 2012" __license__ = "MIT" @@ -292,4 +292,4 @@ def print_stats(self): # sys.stdout.write(cache) stats = stats + cache - return stats \ No newline at end of file + return stats diff --git a/TwitterGeoPics/SearchOldTweets.py b/TwitterGeoPics/SearchOldTweets.py index f79edef..8d50ec9 100644 --- a/TwitterGeoPics/SearchOldTweets.py +++ b/TwitterGeoPics/SearchOldTweets.py @@ -1,4 +1,4 @@ -__author__ = "Jonas Geduldig" +__author__ = "boxnumber03" __date__ = "December 20, 2012" __license__ = "MIT" diff --git a/TwitterGeoPics/StreamNewTweets.py b/TwitterGeoPics/StreamNewTweets.py index 51ce01c..9f69afd 100644 --- a/TwitterGeoPics/StreamNewTweets.py +++ b/TwitterGeoPics/StreamNewTweets.py @@ -1,4 +1,4 @@ -__author__ = "Jonas Geduldig" +__author__ = "boxnumber03" __date__ = "December 20, 2012" __license__ = "MIT" diff --git a/TwitterGeoPics/__init__.py b/TwitterGeoPics/__init__.py index a382107..10b99b9 100644 --- a/TwitterGeoPics/__init__.py +++ b/TwitterGeoPics/__init__.py @@ -1,5 +1,5 @@ __title__ = 'TwitterGeoPics' __version__ = '2.2.4' -__author__ = 'Jonas Geduldig' +__author__ = 'boxnumber03' __license__ = 'MIT' -__copyright__ = 'Copyright 2013 Jonas Geduldig' +__copyright__ = 'Copyright 2013 boxnumber03' diff --git a/setup.py b/setup.py index af3f141..795f9b4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,6 @@ def read(*filenames, **kwargs): setup( name='TwitterGeoPics', version=TwitterGeoPics.__version__, - author='Jonas Geduldig', author_email='boxnumber03@gmail.com', packages=['TwitterGeoPics'], package_data={'': []},