From 3a56a2602da03da0df62602d1e14f407270096bb Mon Sep 17 00:00:00 2001 From: k clair Date: Tue, 9 Oct 2012 13:15:53 -0700 Subject: add previously generated debian packaging files --- .../usr/share/doc/python-requests/README.Debian | 6 ++ .../usr/share/doc/python-requests/README.rst | 78 +++++++++++++++++++++ .../share/doc/python-requests/changelog.Debian.gz | Bin 0 -> 180 bytes .../usr/share/doc/python-requests/copyright | 36 ++++++++++ 4 files changed, 120 insertions(+) create mode 100644 requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.Debian create mode 100644 requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/README.rst create mode 100644 requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gz create mode 100644 requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/copyright (limited to 'requests-0.14.0/debian/python-requests/usr/share/doc') 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 +-------------------------- + + + + -- Kristina Clair 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 `_. + +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 +`_, 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 Binary files /dev/null and b/requests-0.14.0/debian/python-requests/usr/share/doc/python-requests/changelog.Debian.gz 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 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 + + and is licensed under the GPL version 3, + see "/usr/share/common-licenses/GPL-3". -- cgit v1.2.3