Хабр Курсы для всех
РЕКЛАМА
Большая витрина: от крупнейших школ до частных авторов. Сравнивайте по цене, длительности, формату и выбирайте самый подходящий курс!
import urllib2
response = urllib2.urlopen("http://example.com")
print response.code, response.read()
handler = urllib2.HTTPBasicAuthHandler()
handler.add_password('', 'https://api.github.com', 'user', 'pass')
response = urllib2.build_opener(auth_handler).open('https://api.github.com')
print response.code, response.read()
Библиотека для упрощения HTTP-запросов