Python Forum

Full Version: Async API request and NTLM authentication
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

I want to hit APIs asynchronously along with NTLM authentication. Could you please suggest the best way to do so?

What I have tried so far -

1. requests module - It supports NTLM auth but not async
2. aiohttp module - It supports async but not NTLM (only Basic Auth)
3. httpx module - Facing issues with NTLM auth

Please suggest if there is any workaround.

Thank you,
Himanshu.