Proxy auto-config and auto-discovery for Python.
Project description
PyPAC is a pure-Python library for finding proxy auto-config (PAC) files and making HTTP requests that respect them. PAC files are often used in organizations that need fine-grained and centralized control of proxy settings.
PyPAC provides a subclass of a Requests Session, so you can start using it immediately, with any PAC file transparently discovered and honoured:
>>> from pypac import PACSession
>>> session = PACSession()
>>> session.get('http://example.org')
...
If a PAC file isn’t found, then PACSession acts exactly like a regular Session.
PyPAC can find PAC files according to the DNS portion of the Web Proxy Auto-Discovery (WPAD) protocol. On Windows, PyPAC can also obtain the PAC file URL from the Internet Options dialog, via the registry.
Features
The same Requests API that you already know and love
Honour PAC setting from Windows Internet Options
Follow DNS Web Proxy Auto-Discovery protocol
Proxy authentication pass-through
Proxy failover and load balancing
PyPAC supports Python 2.7 and 3.3+.
Installation
Install PyPAC using pip:
$ pip install pypac
Documentation
PyPAC’s documentation is available at http://pypac.readthedocs.io/.
0.4.0 (2017-11-07)
Add recursion_limit keyword argument to PACSession and PACFile. The default is an arbitrarily high value (10000), which should cover most applications.
Exclude port numbers from host passed to FindProxyForURL(url, host).
0.3.1 (2017-06-23)
Update GitHub username.
0.3.0 (2017-04-12)
Windows: Get system auto-proxy config setting using winreg module.
Windows: Accept local filesystem paths from system proxy auto-config setting.
Raise PacComplexityError when recursion limit is hit while parsing PAC file.
Support setting PACSession.proxy_auth and ProxyResolver.proxy_auth after constructing an instance.
Narrative docs.
0.2.1 (2017-01-19)
Require Js2Py >= 0.43 for Python 3.6 support, and to avoid needing to monkeypatch out pyimport.
0.1.0 (2016-06-12)
First release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for pypac-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4f90182010d7e306f26ff8dee70ae09a0f7ce4e60fa2b2a1d9e940231917812 |
|
MD5 | 0a234e90a44ed2a6607cef4c9ecfd4d2 |
|
BLAKE2b-256 | 394177e92fb2592bb7a1ec29da66f16cb9e48fec05ca1a473868689519af98fe |