Skip to content

Commit 68815d5

Browse files
committed
Slight fixes to setup.py
1 parent b440689 commit 68815d5

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

setup.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
#!/usr/bin/env python
22

33
"""
4-
This module implements a set of requests TransportAdapter, PoolManager, ConnectionPool and
5-
HTTPSConnection with one goal only:
4+
This module implements a set of requests TransportAdapter, PoolManager,
5+
ConnectionPool and HTTPSConnection with one goal only:
66
7-
to use a specific IP address when connecting via SSL to a web service without running into SNI trouble.
8-
The usual technique to force an IP address on an HTTP connection with Requests is
9-
(assuming I want http://example.com/some/path on IP 1.2.3.4):
7+
to use a specific IP address when connecting via SSL to a web service without
8+
running into SNI trouble. The usual technique to force an IP address on an
9+
HTTP connection with Requests is (assuming I want http://example.com/some/path
10+
on IP 1.2.3.4):
1011
1112
requests.get("http://1.2.3.4/some/path", headers={'Host': 'example.com'})
13+
1214
this is useful if I want to specifically test how 1.2.3.4 is responding;
1315
for instance, if example.com is DNS round-robined to several IP addresses
1416
and I want to hit one of them specifically.
@@ -19,7 +21,7 @@
1921
PACKAGE_NAME = 'forcediphttpsadapter'
2022
PACKAGE_VERSION = '1.0.0'
2123
AUTHOR = 'Roadmaster'
22-
EMAIL = 'your@email'
24+
EMAIL = 'daniel@tomechangosubanana.com'
2325
URL = 'https://github.com/Roadmaster/forcediphttpsadapter'
2426

2527

0 commit comments

Comments
 (0)