From 62b523b154df57d77ba8b27e68672a77ae0d3ce6 Mon Sep 17 00:00:00 2001 From: Wade Simmons Date: Wed, 17 Mar 2010 12:16:21 -0600 Subject: [PATCH] rename twitterstream to txtwitterstream --- twitterstream/__init__.py | 3 --- txtwitterstream/__init__.py | 5 +++++ {twitterstream => txtwitterstream}/client.py | 3 --- {twitterstream => txtwitterstream}/util.py | 0 4 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 twitterstream/__init__.py create mode 100644 txtwitterstream/__init__.py rename {twitterstream => txtwitterstream}/client.py (98%) rename {twitterstream => txtwitterstream}/util.py (100%) diff --git a/twitterstream/__init__.py b/twitterstream/__init__.py deleted file mode 100644 index e4ef890..0000000 --- a/twitterstream/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from twitterstream.client import Client, TweetReceiver - -__all__ = ["Client", "TweetReceiver"] \ No newline at end of file diff --git a/txtwitterstream/__init__.py b/txtwitterstream/__init__.py new file mode 100644 index 0000000..fdaf98c --- /dev/null +++ b/txtwitterstream/__init__.py @@ -0,0 +1,5 @@ +from twitterstream.client import Client, TweetReceiver + +__author__ = "Wade Simmons" +__version__ = "0.1.0" +__all__ = ["Client", "TweetReceiver"] \ No newline at end of file diff --git a/twitterstream/client.py b/txtwitterstream/client.py similarity index 98% rename from twitterstream/client.py rename to txtwitterstream/client.py index 35bff74..3b1d2b6 100644 --- a/twitterstream/client.py +++ b/txtwitterstream/client.py @@ -14,9 +14,6 @@ # License for the specific language governing permissions and limitations # under the License. -__author__ = "Alexandre Fiori, Wade Simmons" -__version__ = "0.1.0" - """Twisted client library for the Twitter Streaming API: http://apiwiki.twitter.com/Streaming-API-Documentation""" diff --git a/twitterstream/util.py b/txtwitterstream/util.py similarity index 100% rename from twitterstream/util.py rename to txtwitterstream/util.py