From: Josh Roesslein Date: Thu, 30 Jul 2009 03:28:38 +0000 (-0500) Subject: Added some ascii art to readme. Added copyrights to sources. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=eddae96dbabffac2668e8722bca73de551e07d77;p=tweepy.git Added some ascii art to readme. Added copyrights to sources. --- diff --git a/LICENSE b/LICENSE index d4a7114..84b4bb7 100644 --- 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 e6d6023..ac2c3c3 100644 --- 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 +Author: Joshua Roesslein License: MIT Dependencies: Simplejson diff --git a/__init__.py b/__init__.py index 6d6657d..ce3e0ef 100644 --- a/__init__.py +++ b/__init__.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + """ Tweepy Twitter API library """ diff --git a/api.py b/api.py index 1a4c16a..b271ddf 100644 --- a/api.py +++ b/api.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + import base64 from binder import bind_api diff --git a/binder.py b/binder.py index 80bd8d3..42b84ae 100644 --- a/binder.py +++ b/binder.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + import httplib import urllib diff --git a/error.py b/error.py index 23a9c0b..04924fe 100644 --- a/error.py +++ b/error.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + """ Tweepy exception """ diff --git a/models.py b/models.py index 4990f50..017d5bb 100644 --- a/models.py +++ b/models.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + class Status(object): def destroy(self): diff --git a/parsers.py b/parsers.py index 6f9ed1f..77fdce9 100644 --- a/parsers.py +++ b/parsers.py @@ -1,3 +1,7 @@ +# Tweepy +# Copyright 2009 Joshua Roesslein +# See LICENSE + from datetime import datetime try: