--- id: requests-ntlm3 version: "6.1.3b1" license: ISC license_treatment: permissive maintenance: abandoned --- # requests-ntlm3 — The HTTP NTLM proxy and/or server authentication library. License: permissive · Maintenance: abandoned · Downloads: 273.7K/mo ## What it is and what it does requests-ntlm3 is an authentication handler for the requests library that implements the NTLM (NT LAN Manager) protocol, used primarily by Windows-based servers and corporate proxies. It extends requests' AuthBase to provide transparent NTLM authentication, handling the multi-step NTLM handshake (the "NTLM Dance") automatically. The package supports configurable NTLM compatibility levels, session-based connection pooling for efficiency, and HTTP CONNECT tunneling through NTLM-authenticated proxies via its HttpNtlmAdapter. The package depends on requests for HTTP operations, ntlm-auth for the NTLM protocol implementation, and cryptography for underlying cryptographic operations. It was designed to work with Python 2.7 and 3.5–3.8, though it has been abandoned since February 2020 with no subsequent maintenance or updates. Use it for: - Authenticate requests against corporate Windows servers or Active Directory-protected endpoints that require NTLM. - Route HTTP/HTTPS traffic through an NTLM-authenticated corporate proxy without manual challenge-response handling. - Build connection pooling with session objects to avoid repeated NTLM handshakes for multiple requests to the same server. - Configure NTLM compatibility levels (LM, NTLMv1, NTLMv2) to match legacy or modern enterprise authentication policies. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides HTTP NTLM authentication for the requests library, enabling clients to authenticate against NTLM-protected servers and proxies. Yes, if you have a specific, static NTLM authentication requirement and can accept the risk of an abandoned package. The low install friction and permissive license make it straightforward to add, but the lack of maintenance since 2020 means no bug fixes, security patches, or compatibility updates with newer Python or dependency versions. Suitable only for stable, isolated use cases where you control the environment and can tolerate no future support. ## Install pip install requests-ntlm3 uv add requests-ntlm3 poetry add requests-ntlm3 ## Installing requests-ntlm3 Before you install: Low install friction with three stable runtime dependencies (requests, ntlm-auth, cryptography). However, the package is abandoned—last release was 2020-02-19 and no commits or maintenance activity since. Use only if your NTLM requirements are static and you can accept no future updates. License in practice: ISC license is permissive and poses no restrictions on commercial or private use, modification, or redistribution. Quickstart: pip install requests-ntlm3 import requests from requests_ntlm3 import HttpNtlmAuth auth = HttpNtlmAuth('domain\\username', 'password') response = requests.get('http://ntlm_protected_site.com', auth=auth) Verify before relying: - Whether the package works reliably with modern versions of requests, ntlm-auth, and cryptography given its 2020 release date and abandoned status. - Whether NTLMv2 compatibility level 3 (the default) meets current security standards for your use case. - Whether the package has been tested against current Windows NTLM implementations or enterprise proxy configurations. ## Package facts - License: ISC (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 273.7K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags NTLM authentication requests, HTTP NTLM proxy auth, Windows NTLM requests library, NTLM challenge response, requests NTLM adapter, proxy authentication NTLM, NTLMv2 requests, ntlm-auth, proxy-auth, windows-integration [View on SkillFed](https://skillfed.io/packages/requests-ntlm3) · [View on PyPI](https://pypi.org/project/requests-ntlm3/)