Ravenports generated: 24 May 2019 12:36
[ravenports.git] / bucket_0A / python-requests
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               python-requests
4 VERSION=                2.22.0
5 KEYWORDS=               python
6 VARIANTS=               py27 py36 py37
7 SDESC[py36]=            Python HTTP for Humans (PY 36)
8 SDESC[py37]=            Python HTTP for Humans (PY 37)
9 SDESC[py27]=            Python HTTP for Humans (PY 27)
10 HOMEPAGE=               http://python-requests.org
11 CONTACT=                Python_Automaton[python@ironwolf.systems]
12
13 DOWNLOAD_GROUPS=        main
14 SITES[main]=            PYPI/r/requests
15 DISTFILE[1]=            requests-2.22.0.tar.gz:main
16 DF_INDEX=               1
17 SPKGS[py36]=            single
18 SPKGS[py37]=            single
19 SPKGS[py27]=            single
20
21 OPTIONS_AVAILABLE=      PY27 PY36 PY37
22 OPTIONS_STANDARD=       none
23 VOPTS[py36]=            PY27=OFF PY36=ON PY37=OFF
24 VOPTS[py37]=            PY27=OFF PY36=OFF PY37=ON
25 VOPTS[py27]=            PY27=ON PY36=OFF PY37=OFF
26
27 DISTNAME=               requests-2.22.0
28
29 GENERATED=              yes
30
31 [PY36].BUILDRUN_DEPENDS_ON=             python-chardet:single:py36
32                                         python-idna:single:py36
33                                         python-urllib3:single:py36
34                                         python-certifi:single:py36
35 [PY36].USES_ON=                         python:py36
36
37 [PY37].BUILDRUN_DEPENDS_ON=             python-chardet:single:py37
38                                         python-idna:single:py37
39                                         python-urllib3:single:py37
40                                         python-certifi:single:py37
41 [PY37].USES_ON=                         python:py37
42
43 [PY27].BUILDRUN_DEPENDS_ON=             python-chardet:single:py27
44                                         python-idna:single:py27
45                                         python-urllib3:single:py27
46                                         python-certifi:single:py27
47 [PY27].USES_ON=                         python:py27
48
49 [FILE:3653:descriptions/desc.single]
50 Requests: HTTP for Humans™
51 ==========================
52
53 [![image](https://img.shields.io/pypi/v/requests.svg)](https://pypi.org/pro
54 ject/requests/)
55 [![image](https://img.shields.io/pypi/l/requests.svg)](https://pypi.org/pro
56 ject/requests/)
57 [![image](https://img.shields.io/pypi/pyversions/requests.svg)](https://pyp
58 i.org/project/requests/)
59 [![codecov.io](https://codecov.io/github/requests/requests/coverage.svg?bra
60 nch=master)](https://codecov.io/github/requests/requests)
61 [![image](https://img.shields.io/github/contributors/requests/requests.svg)
62 ](https://github.com/requests/requests/graphs/contributors)
63 [![image](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://
64 saythanks.io/to/kennethreitz)
65
66 Requests is the only *Non-GMO* HTTP library for Python, safe for human
67 consumption.
68
69 ![image](https://farm5.staticflickr.com/4317/35198386374_1939af3de6_k_d.jpg
70 )
71
72 Behold, the power of Requests:
73
74 ``` {.sourceCode .python}
75 >>> import requests
76 >>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
77 >>> r.status_code
78 200
79 >>> r.headers['content-type']
80 'application/json; charset=utf8'
81 >>> r.encoding
82 'utf-8'
83 >>> r.text
84 u'{"type":"User"...'
85 >>> r.json()
86 {u'disk_usage': 368627, u'private_gists': 484, ...}
87 ```
88
89 See [the similar code, sans Requests](https://gist.github.com/973705).
90
91 [![image](https://raw.githubusercontent.com/requests/requests/master/docs/_
92 static/requests-logo-small.png)](http://docs.python-requests.org/)
93
94 Requests allows you to send *organic, grass-fed* HTTP/1.1 requests,
95 without the need for manual labor. There's no need to manually add query
96 strings to your URLs, or to form-encode your POST data. Keep-alive and
97 HTTP connection pooling are 100% automatic, thanks to
98 [urllib3](https://github.com/shazow/urllib3).
99
100 Besides, all the cool kids are doing it. Requests is one of the most
101 downloaded Python packages of all time, pulling in over 11,000,000
102 downloads every month. You don't want to be left out!
103
104 Feature Support
105 ---------------
106
107 Requests is ready for today's web.
108
109 -   International Domains and URLs
110 -   Keep-Alive & Connection Pooling
111 -   Sessions with Cookie Persistence
112 -   Browser-style SSL Verification
113 -   Basic/Digest Authentication
114 -   Elegant Key/Value Cookies
115 -   Automatic Decompression
116 -   Automatic Content Decoding
117 -   Unicode Response Bodies
118 -   Multipart File Uploads
119 -   HTTP(S) Proxy Support
120 -   Connection Timeouts
121 -   Streaming Downloads
122 -   `.netrc` Support
123 -   Chunked Requests
124
125 Requests officially supports Python 2.7 & 3.4–3.7, and runs great on
126 PyPy.
127
128 Installation
129 ------------
130
131 To install Requests, simply use [pipenv](http://pipenv.org/) (or pip, of
132 course):
133
134 ``` {.sourceCode .bash}
135 $ pipenv install requests
136 ✨🍰✨
137 ```
138
139 Satisfaction guaranteed.
140
141 Documentation
142 -------------
143
144 Fantastic documentation is available at
145 <http://docs.python-requests.org/>, for a limited time only.
146
147 How to Contribute
148 -----------------
149
150 1.  Become more familiar with the project by reading our [Contributor's
151 Guide](http://docs.python-requests.org/en/latest/dev/contributing/) and
152 our [development
153 philosophy](http://docs.python-requests.org/en/latest/dev/philosophy/).
154 2.  Check for open issues or open a fresh issue to start a discussion
155     around a feature idea or a bug. There is a [Contributor
156
157 Friendly](https://github.com/requests/requests/issues?direction=desc&labels
158 =Contributor+Friendly&page=1&sort=updated&state=open)
159     tag for issues that should be ideal for people who are not very
160     familiar with the codebase yet.
161 3.  Fork [the repository](https://github.com/requests/requests) on
162     GitHub to start making your changes to the **master** branch (or
163
164
165 [FILE:101:distinfo]
166 11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4       113406 requests-2.22.0.tar.gz
167