Skip to main content

Kerberos over HTTP Negotiate/SPNEGO support for urllib2

Project description

# urllib_kerberos

## Usage

### Python 2

```
import urllib2
import urllib_kerberos

handlers.append(urllib_kerberos.HTTPKerberosAuthHandler())

opener = urllib2.build_opener(*handlers)
urllib2.install_opener(opener)
request = urllib2.Request(url, data)
```

### Python 3

```
import urllib.request
import urllib_kerberos

handlers.append(urllib_kerberos.HTTPKerberosAuthHandler())

opener = urllib.request.build_opener(*handlers)
urllib.request.install_opener(opener)
request = urllib.request.Request(url, data)
```

## Credits

Tim Olsen was the original author of `urllib2_kerberos`
[library](https://bitbucket.org/tolsen/urllib2_kerberos)
which is the bulk of the content of the `urllib_kerberos`
module.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

urllib_kerberos-0.2.0.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page