Skip to content

Commit 95336a0

Browse files
author
Kenneth Reitz
committed
Merge branch 'develop' into feature/rewrite
2 parents b908559 + e257151 commit 95336a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1427
-919
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ pylint.txt
77
docs/_build
88
toy.py
99
.gitignore
10+
junit-report.xml

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,10 @@ Patches and Suggestions
4040
- Mikko Ohtamaa
4141
- Den Shabalin
4242
- Daniel Miller <danielm@vs-networks.com>
43+
- Alejandro Giacometti
44+
- Rick Mak
45+
- Johan Bergström
46+
- Josselin Jacquard
47+
- Travis N. Vaught
48+
- Fredrik Möllerstrand
49+
- Daniel Hengeveld

AUTHORS.orig

Lines changed: 0 additions & 40 deletions
This file was deleted.

HACKING

Lines changed: 0 additions & 15 deletions
This file was deleted.

HISTORY.rst

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,63 @@
11
History
22
-------
33

4+
0.7.2 (2011-10-23)
5+
++++++++++++++++++
6+
7+
* PATCH Fix.
8+
9+
10+
0.7.1 (2011-10-23)
11+
++++++++++++++++++
12+
13+
* Move away from urllib2 authentication handling.
14+
* Fully Remove AuthManager, AuthObject, &c.
15+
* New tuple-based auth system with handler callbacks.
16+
17+
18+
0.7.0 (2011-10-22)
19+
++++++++++++++++++
20+
21+
* Sessions are now the primary interface.
22+
* Deprecated InvalidMethodException.
23+
* PATCH fix.
24+
* New config system (no more global settings).
25+
26+
27+
0.6.6 (2011-10-19)
28+
++++++++++++++++++
29+
30+
* Session parameter bugfix (params merging).
31+
32+
33+
0.6.5 (2011-10-18)
34+
++++++++++++++++++
35+
36+
* Offline (fast) test suite.
37+
* Session dictionary argument merging.
38+
39+
40+
0.6.4 (2011-10-13)
41+
++++++++++++++++++
42+
43+
* Automatic decoding of unicode, based on HTTP Headers.
44+
* New ``decode_unicode`` setting.
45+
* Removal of ``r.read/close`` methods.
46+
* New ``r.faw`` interface for advanced response usage.*
47+
* Automatic expansion of parameterized headers.
48+
49+
50+
0.6.3 (2011-10-13)
51+
++++++++++++++++++
52+
53+
* Beautiful ``requests.async`` module, for making async requests w/ gevent.
54+
55+
56+
0.6.2 (2011-10-09)
57+
++++++++++++++++++
58+
59+
* GET/HEAD obeys allow_redirects=False.
60+
461

562
0.6.1 (2011-08-20)
663
++++++++++++++++++
@@ -28,6 +85,7 @@ History
2885
* Improved https testing
2986
* Bugfixes
3087

88+
3189
0.5.1 (2011-07-23)
3290
++++++++++++++++++
3391

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.rst LICENSE HISTORY.rst
1+
include README.rst LICENSE HISTORY.rst test_requests.py

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
init:
2+
pip install -r reqs.txt
3+
4+
test:
5+
nosetests test_requests.py
6+
7+
ci: init
8+
nosetests test_requests.py --with-xunit --xunit-file=junit-report.xml
9+
10+
stats:
11+
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt
12+
13+
site:
14+
cd docs; make dirhtml
15+
16+
docs: site

README.rst

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,15 @@ all the hard work and crazy hacks for you.
3434
Features
3535
--------
3636

37-
- Extremely simple HEAD, GET, POST, PUT, PATCH, DELETE Requests
38-
+ Simple HTTP Header Request Attachment
39-
+ Simple Data/Params Request Attachment
40-
+ Simple Multipart File Uploads
41-
+ CookieJar Support
42-
+ Redirection History
43-
+ Proxy Support
44-
+ Redirection Recursion Urllib Fix
45-
+ Auto Decompression of GZipped Content
46-
+ Unicode URL Support
47-
48-
- Simple Authentication
49-
+ Simple URL + HTTP Auth Registry
37+
- Extremely simple HEAD, GET, POST, PUT, PATCH, DELETE Requests.
38+
- Gevent support for Asyncronous Requests.
39+
- Sessions with cookie persistience.
40+
- Basic, Digest, and Custom Authentication support.
41+
- Automatic form-encoding of dictionaries
42+
- A simple dictionary interface for request/response cookies.
43+
- Multipart file uploads.
44+
- Automatc decoding of Unicode, gzip, and deflate responses.
45+
- Full support for unicode URLs and domain names.
5046

5147

5248
Usage

debian/changelog

Lines changed: 0 additions & 5 deletions
This file was deleted.

debian/compat

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)