Added some ascii art to readme. Added copyrights to sources.
authorJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 03:28:38 +0000 (22:28 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Thu, 30 Jul 2009 03:28:38 +0000 (22:28 -0500)
LICENSE
README
__init__.py
api.py
binder.py
error.py
models.py
parsers.py

diff --git a/LICENSE b/LICENSE
index d4a7114894d41a779ece544a6ce277181951a3b6..84b4bb796aad8457ed07dae3d062989c2be9086c 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,3 +1,4 @@
+MIT License
 Copyright (c) 2009 Joshua Roesslein
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/README b/README
index e6d60235b30b406ed4000d7db3355d5dcf34818e..ac2c3c3afe968434b5284d251c674911894bb2c3 100644 (file)
--- a/README
+++ b/README
@@ -1,10 +1,13 @@
-==========================
-Tweepy Twitter API Library
-==========================
+  ______                                   
+ /_  __/_      __ ___   ___   ____   __  __
+  / /  | | /| / // _ \ / _ \ / __ \ / / / /
+ / /   | |/ |/ //  __//  __// /_/ // /_/ / 
+/_/    |__/|__/ \___/ \___// .___/ \__, /  
+                          /_/     /____/ 
 
-A Twitter API library for Python!
+A Twitter library for Python!
 
-Author: Joshua Roesslein <jroesslein at gmail.com>
+Author: Joshua Roesslein
 License: MIT
 Dependencies:
   Simplejson <http://undefined.org/python/#simplejson>
index 6d6657ddd06b490f49cc1ebefafc8b21130fd83e..ce3e0ef99422fd5f50aa376c40bfbbe2e9dd88c8 100644 (file)
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 """
 Tweepy Twitter API library
 """
diff --git a/api.py b/api.py
index 1a4c16a0616f07c6d21b4f9d528d357844434a32..b271ddf3f500839c3728a9710fcd7b8e7bb812d6 100644 (file)
--- a/api.py
+++ b/api.py
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 import base64
 
 from binder import bind_api
index 80bd8d3aa0ad8ca3ead536ab4f4ed4359bf301a6..42b84ae4eeced22abfe2746f302b33e4d0d8fe2c 100644 (file)
--- a/binder.py
+++ b/binder.py
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 import httplib
 import urllib
 
index 23a9c0bdf3171b7354d91a2d6506d99aab10aaf8..04924fe6d25786651a102e4e9398a3dc91cae7a5 100644 (file)
--- a/error.py
+++ b/error.py
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 """
 Tweepy exception
 """
index 4990f507ebd4485eb43646abcec040b0cfce995e..017d5bb92eebbbbe14739a2e1b01ebc60f13956b 100644 (file)
--- a/models.py
+++ b/models.py
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 class Status(object):
 
   def destroy(self):
index 6f9ed1f874d9e1b49d6415425f90464944296168..77fdce9f84a972d3ff8d06b4b150e2157f061d51 100644 (file)
@@ -1,3 +1,7 @@
+# Tweepy
+# Copyright 2009 Joshua Roesslein
+# See LICENSE
+
 from datetime import datetime
 
 try: