Skip to content

Commit b68bab3

Browse files
committed
Updating documentation ready for formal release of 0.4.1
1 parent 0c9ee2a commit b68bab3

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
A HTTPS client implementation for httplib and urllib2 based on
2-
PyOpenSSL. PyOpenSSL provides a more fully featured SSL implementation over the
3-
default provided with Python and importantly enables full verification of the
4-
SSL peer.
1+
A HTTPS client implementation for
2+
* ``httplib`` (Python 2), ``http.client`` (Python 3) and
3+
* ``urllib2`` (Python 2) and ``urllib`` (Python 3)
4+
5+
... based on PyOpenSSL. PyOpenSSL provides a more fully featured SSL implementation
6+
over the default provided with Python and importantly enables full verification
7+
of the SSL peer using ``pyasn1``.
58

69
Releases
710
========

setup.py

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88
NAMESPACE_PKGS = ['ndg']
99

1010
_long_description = '''
11-
This is a HTTPS client implementation for httplib and urllib2 based on
12-
PyOpenSSL. PyOpenSSL provides a more fully featured SSL implementation over the
13-
default provided with Python and importantly enables full verification of the
14-
SSL peer.
11+
A HTTPS client implementation for
12+
* ``httplib`` (Python 2), ``http.client`` (Python 3) and
13+
* ``urllib2`` (Python 2) and ``urllib`` (Python 3)
14+
15+
... based on PyOpenSSL. PyOpenSSL provides a more fully featured SSL implementation
16+
over the default provided with Python and importantly enables full verification
17+
of the SSL peer using ``pyasn1``.
1518
1619
Releases
1720
========
@@ -41,13 +44,13 @@
4144
4245
0.3.1
4346
-----
44-
* extended utils functions to support keyword for passing additional urllib2
47+
* extended utils functions to support keyword for passing additional ``urllib2``
4548
handlers.
4649
4750
0.3.0
4851
-----
49-
* Added ndg.httpsclient.utils.fetch_stream_from_url function and added
50-
parameter for data to post in open_url and fetch_* methods.
52+
* Added ``ndg.httpsclient.utils.fetch_stream_from_url`` function and added
53+
parameter for data to post in ``open_url`` and ``fetch_*`` methods.
5154
* fix to ndg.httpsclient.utils module _should_use_proxy and open_url functions
5255
5356
0.2.0
@@ -61,10 +64,10 @@
6164
6265
Prerequisites
6366
=============
64-
This has been developed and tested for Python 2.6 and 2.7 with pyOpenSSL 0.13 and 0.14.
65-
Version 0.4.0 tested with pyOpenSSL 0.15.1 and Python 2.7 and 3.4. Note that proxy support
66-
is only available from Python 2.6.2 onwards. pyasn1 is required for correct SSL
67-
verification with subjectAltNames.
67+
This has been developed and tested for Python 2.6 and 2.7 with pyOpenSSL 0.13
68+
and 0.14. Version 0.4.0 tested with ``pyOpenSSL`` 0.15.1 and Python 2.7 and
69+
3.4. Note that proxy support is only available from Python 2.6.2 onwards.
70+
``pyasn1`` is required for correct SSL verification with ``subjectAltNames``.
6871
6972
Installation
7073
============

0 commit comments

Comments
 (0)