From d7d099b52dcaa8d645b7f443e168745104294dd5 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Thu, 17 Sep 2009 01:58:23 -0400 Subject: [PATCH] Moving README to Markdown --- README => README.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename README => README.markdown (90%) diff --git a/README b/README.markdown similarity index 90% rename from README rename to README.markdown index 0a73895..c55ccb8 100644 --- a/README +++ b/README.markdown @@ -1,5 +1,5 @@ Twython - Easy Twitter utilities in Python ------------------------------------------------------------------------------------------------------ +========================================================================================= I wrote Twython because I found that other Python Twitter libraries weren't that up to date. Certain things like the Search API, OAuth, etc, don't seem to be fully covered. This is my attempt at a library that offers more coverage. @@ -21,15 +21,15 @@ Requirements Twython requires (much like Python-Twitter, because they had the right idea :D) a library called "simplejson". You can grab it at the following link: -http://pypi.python.org/pypi/simplejson +> http://pypi.python.org/pypi/simplejson Example Use ----------------------------------------------------------------------------------------------------- -import twython - -twitter = twython.setup(authtype="Basic", username="example", password="example") -twitter.updateStatus("See how easy this was?") +> import twython +> +> twitter = twython.setup(authtype="Basic", username="example", password="example") +> twitter.updateStatus("See how easy this was?") Twython 3k