python 아 날로 그 웹 로그 인 및 다운로드
전제 조건
제3자 가방 필요
httplib2
2
이 스 크 립 트 는 본 사이트 의 자동 로그 인 다운로드 파일 을 실현 합 니 다.
import httplib2
import urllib
import os
from urllib import urlencode
# config
m_downurl = 'http://dl.iteye.com/topics/download/46527af3-941f-38f0-b0f3-9f74bf5ffa67'
m_host = "http://www.iteye.com/login"
m_username_value = "***********"
m_password_value = "***********"
m_authenticity_token = "*************"
# create http cache
h = httplib2.Http('.cache')
# open debug
httplib2.debuglevel = 1
# get login url
getheader = {"Accept":"text/html, application/xhtml+xml, */*",
"Accept-Language":"zh-CN",
"User-Agent":"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)",
"Accept-Encoding":"gzip, deflate",
"Host":"www.iteye.com",
"Connection": "Keep-Alive",
"cache-control":"no-cache"
}
response1, content1 = h.request(m_host, headers = getheader)
data = {'authenticity_token': m_authenticity_token, 'name' : m_username_value, 'password': m_password_value , 'button': '%E7%99%BB%E3%80%80%E5%BD%95'}
postheader = {"Accept":"text/html, application/xhtml+xml, */*",
"Referer": "http://www.iteye.com/login",
"Accept-Language":"zh-CN",
"User-Agent":"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)",
"Accept-Encoding":"gzip, deflate",
"Host":"www.iteye.com",
"Connection": "Keep-Alive",
"cache-control":"no-cache",
'Cookie': response1['set-cookie']
}
# authentication supports SSL | Http Basic
# h.add_credentials(m_username_value, m_password_value )
# login
response2, content2 = h.request(m_host, 'POST', urlencode(data), headers = postheader)
# download
downloadheader = {"Accept":"text/html, application/xhtml+xml, */*",
"Accept-Language":"zh-CN",
"User-Agent":"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)",
"Accept-Encoding":"gzip, deflate",
"Host":"dl.iteye.com",
"Connection": "Keep-Alive",
"cache-control":"no-cache",
"Cookie": response2['set-cookie'],
}
response3, content3 = h.request(m_downurl, headers = downloadheader)
# save
filename = response3["content-disposition"].split("=")[1].replace('"', "")
file = open(filename,'wb')
file.write(content3)
file.close()
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.