I need a Python Warrior to help me (I\'m a noob)! I\'m trying to scrape certain data from an intra-net site using Module urllib. However, since it is my company website that
Try requests with requests_ntlm:
import requests
from requests_ntlm import HttpNtlmAuth
r = requests.get("http://ntlm_protected_site.com",auth=HttpNtlmAuth('domain\\username','password'))
print r.text
If you need help with any specifics of this library and can't find it in the docs, leave a comment.