aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-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