aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2011-06-05 12:27:14 -0400
committerMike Crute <mcrute@gmail.com>2011-06-05 12:27:14 -0400
commite6a92aae4fbbccb9e20c3ab41f9c807de3ffa4a8 (patch)
treeb23210dd62628b6ef0db762c58702055c2e62f2a
parent3c8ce09e0e1f13cfc09553e8f51a63809a99ef02 (diff)
downloadpygithubissues-master.tar.bz2
pygithubissues-master.tar.xz
pygithubissues-master.zip
Updating the README file.HEADmaster
-rw-r--r--README12
1 files changed, 7 insertions, 5 deletions
diff --git a/README b/README
index e3bace0..6d58109 100644
--- a/README
+++ b/README
@@ -2,9 +2,11 @@ I want to interact with github issues using python.
2 2
3I'm following these docs: http://developer.github.com/v3/issues/ 3I'm following these docs: http://developer.github.com/v3/issues/
4 4
5This code uses subprocess and curl. It doesn't create a shell though, 5This code uses the nifty requests library. You can get it with pip or
6so security risks are limited. 6easy_install::
7 7
8I welcome patches that replace using curl at the command-line with 8 pip install requests
9something that either uses the pycurl, or something from the standard 9
10library, or something like the requests or httplib2 libraries. 10or
11
12 easy_install requests