Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2017
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. import requests
  2. from requests_ntlm import HttpNtlmAuth
  3. from bs4 import BeautifulSoup
  4.  
  5. username = ''
  6. password = ''
  7. url = 'http://www.ccisites.com'
  8. nextPage = 'http://www.ccisites.com/cci-ui/sdm/site/US/801313/operations/summary'
  9.  
  10. r = requests.get(url, auth=HttpNtlmAuth(username,password))
  11.  
  12. print(r.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement