summaryrefslogtreecommitdiff
path: root/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests
diff options
context:
space:
mode:
Diffstat (limited to 'requests-0.14.0/debian/python-requests/usr/share/doc/python-requests')
-rw-r--r--requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.Debian6
-rw-r--r--requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.rst78
-rw-r--r--requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gzbin0 -> 180 bytes
-rw-r--r--requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/copyright36
4 files changed, 120 insertions, 0 deletions
diff --git a/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.Debian b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.Debian
new file mode 100644
index 0000000..16fde0f
--- /dev/null
+++ b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.Debian
@@ -0,0 +1,6 @@
+python-requests for Debian
+--------------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Kristina Clair <kclair@leap.se> Wed, 03 Oct 2012 12:05:14 -0700
diff --git a/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.rst b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.rst
new file mode 100644
index 0000000..2a9208c
--- /dev/null
+++ b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.rst
@@ -0,0 +1,78 @@
+Requests: HTTP for Humans
+=========================
+
+
+.. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=develop
+ :target: https://secure.travis-ci.org/kennethreitz/requests
+
+Requests is an ISC Licensed HTTP library, written in Python, for human
+beings.
+
+Most existing Python modules for sending HTTP requests are extremely
+verbose and cumbersome. Python's builtin urllib2 module provides most of
+the HTTP capabilities you should need, but the api is thoroughly broken.
+It requires an enormous amount of work (even method overrides) to
+perform the simplest of tasks.
+
+Things shouldn't be this way. Not in Python.
+
+::
+
+ >>> r = requests.get('https://api.github.com', auth=('user', 'pass'))
+ >>> r.status_code
+ 204
+ >>> r.headers['content-type']
+ 'application/json'
+ >>> r.text
+ ...
+
+See `the same code, without Requests <https://gist.github.com/973705>`_.
+
+Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
+multipart files, and parameters with simple Python dictionaries, and access the
+response data in the same way. It's powered by httplib and `urllib3
+<https://github.com/shazow/urllib3>`_, but it does all the hard work and crazy
+hacks for you.
+
+
+Features
+--------
+
+- International Domains and URLs
+- Keep-Alive & Connection Pooling
+- Sessions with Cookie Persistence
+- Browser-style SSL Verification
+- Basic/Digest Authentication
+- Elegant Key/Value Cookies
+- Automatic Decompression
+- Unicode Response Bodies
+- Multipart File Uploads
+- Connection Timeouts
+- Thread-safety
+
+
+Installation
+------------
+
+To install requests, simply: ::
+
+ $ pip install requests
+
+Or, if you absolutely must: ::
+
+ $ easy_install requests
+
+But, you really shouldn't do that.
+
+
+
+Contribute
+----------
+
+#. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
+#. Fork `the repository`_ on Github to start making your changes to the **develop** branch (or branch off of it).
+#. Write a test which shows that the bug was fixed or that the feature works as expected.
+#. Send a pull request and bug the maintainer until it gets merged and published. :) Make sure to add yourself to AUTHORS_.
+
+.. _`the repository`: http://github.com/kennethreitz/requests
+.. _AUTHORS: https://github.com/kennethreitz/requests/blob/develop/AUTHORS.rst
diff --git a/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gz b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gz
new file mode 100644
index 0000000..a5b470a
--- /dev/null
+++ b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gz
Binary files differ
diff --git a/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/copyright b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/copyright
new file mode 100644
index 0000000..ae16eda
--- /dev/null
+++ b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/copyright
@@ -0,0 +1,36 @@
+This work was packaged for Debian by:
+
+ Kristina Clair <kclair@leap.se> on Wed, 03 Oct 2012 12:05:14 -0700
+
+It was downloaded from:
+
+ http://pypi.python.org/pypi/requests
+
+Upstream Author(s):
+
+ Kenneth Reitz
+
+Copyright:
+
+ Copyright (c) 2012 Kenneth Reitz.
+
+License:
+
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+The Debian packaging is:
+
+ Copyright (C) 2012 Kristina Clair <kclair@leap.se>
+
+ and is licensed under the GPL version 3,
+ see "/usr/share/common-licenses/GPL-3".