Infrastructure as Code

Repositories with services as code

requests-ntlm (1.3.0)

Published 2026-05-23 22:13:42 +03:00 by mpavlov

Installation

pip install --index-url  requests-ntlm

About this package

This package allows for HTTP NTLM authentication using the requests library.

requests-ntlm

.. image:: https://github.com/requests/requests-ntlm/actions/workflows/ci.yml/badge.svg :target: https://github.com/requests/requests-ntlm/actions/workflows/ci.yml

This package allows for HTTP NTLM authentication using the requests library.

Usage

HttpNtlmAuth extends requests AuthBase, so usage is simple:

.. code:: python

import requests
from requests_ntlm import HttpNtlmAuth

requests.get("http://ntlm_protected_site.com",auth=HttpNtlmAuth('domain\\username','password'))

HttpNtlmAuth can be used in conjunction with a Session in order to make use of connection pooling. Since NTLM authenticates connections, this is more efficient. Otherwise, each request will go through a new NTLM challenge-response.

.. code:: python

import requests
from requests_ntlm import HttpNtlmAuth

session = requests.Session()
session.auth = HttpNtlmAuth('domain\\username','password')
session.get('http://ntlm_protected_site.com')

Installation

pip install requests_ntlm

Requirements

  • requests_
  • pyspnego_

.. _requests: https://github.com/kennethreitz/requests/ .. _pyspnego: https://github.com/jborean93/pyspnego/

Authors

  • Ben Toews_

.. _Ben Toews: https://github.com/mastahyeti

  • Ian Cordasco_

.. _Ian Cordasco: https://github.com/sigmavirus24

  • Cory Benfield_

.. _Cory Benfield: https://github.com/Lukasa

Requirements

Requires Python: >=3.8
Details
PyPI
2026-05-23 22:13:42 +03:00
9
Ben Toews
ISC
6.4 KiB
Assets (1)
Versions (1) View all
1.3.0 2026-05-23