首页 > 代码库 > 自动化
自动化
import requestsimport http.cookiejar as cookielibimport reimport timeimport os.pathfrom PIL import Image# 构造 Request headersheaders = { "Host": "www.dotcpp.com", "Referer": "http://www.dotcpp.com/oj/loginpage.php", ‘User-Agent‘: ‘Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0‘,}# 构造 cookie 信息session = requests.session()session.cookies = cookielib.LWPCookieJar(filename=‘cookies‘)try: session.cookies.load(ignore_discard=True) # 如果已经有 cookie信息的话 直接用于登录except: print("Cookie 未能加载") def get_capther(): captcha_url = ‘http://www.dotcpp.com/oj/vcode.php‘ r = session.get(captcha_url, headers=headers) with open(‘captcha.jpg‘, ‘wb‘) as f: f.write(r.content) f.close() try: im = Image.open(‘captcha.jpg‘) im.show() im.close() except: print(u‘请到 %s 目录找到captcha.jpg 手动输入‘ % os.path.abspath(‘captcha.jpg‘)) captcha = input("please input the captcha\n>") return captchadef login(): post_url = ‘http://www.dotcpp.com/oj/login.php‘ postdata = { ‘user_id‘: ‘xpower‘, ‘password‘: ‘q.123456‘, ‘vcode‘: get_capther() } login_page = session.post(post_url, data=http://www.mamicode.com/postdata, headers=headers) text = str(login_page.content,‘utf-8‘) print(text)
自动化
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。