首页 > 后端开发 > 正文

关于用python写的登陆程序,怎么获取cookie值并返回出来

2024-03-06 03:32:41 | 我爱编程网

今天我爱编程网小编整理了关于用python写的登陆程序,怎么获取cookie值并返回出来相关信息,希望在这方面能够更好帮助到大家。

本文目录一览:

关于用python写的登陆程序,怎么获取cookie值并返回出来

关于用python写的登陆程序,怎么获取cookie值并返回出来

两种方式:

一、

接口,可以pip install requests模块,安装一个requests,对接口支持简单好用

例子,写一个getcookie()方法

import requests

def getcookie():

data={'username':username,'password':pwd}

session=requests.session()

loginurl="

"

#具体要接口登录后才可以获得cookies

result=session.post(loginurl,data=data)

cookies=requests.utils.dict_from_cookiejar(session.cookies)

return cookies

二、

UI自动化登录:可以easy_install -U selenium,安装selenium模块,支持UI自动化,模拟前端,用户名、密码登录后,这种方式也可以获得cookie

一个例子,登录csdn,并且获取cookie,用户名和密码我隐去了,可以参考。

from selenium import webdriver

from selenium.webdriver.common.keys import Keys

import selenium

import os,time

import sys

sys.path.append("..")

import web

import datetime

#默认得安装一个火狐浏览器

class webconn:

def __init__(self,drivertype):

self.drivertype=drivertype

def web_conn(self):

PASS=0

FAIL=0

get_cookie={}

t=datetime.datetime.now()

starttime=datetime.datetime.now()

driver = webdriver.Firefox()

try:

driver.get('

')

time.sleep(2)

assert u'帐号登录' in driver.title

driver.find_element_by_id("username").send_keys(u"yoursername")

print "输入用户名"

driver.find_element_by_id("password").send_keys(u"yourpassword")

print "输入密码"

driver.find_element_by_class_name("logging").click()

time.sleep(2)

assert u'全球最大中文' in driver.title

driver.add_cookie({'name':'key-aaaaaa','value':'value-bbbb'})

for cookie in driver.get_cookies():

print "%s -> %s" %(cookie['name'],cookie['value'])

get_cookie[cookie['name'].encode("UTF-8")]=cookie['value'].encode("UTF-8")

print "cookie cookie cookie cookie cookie"

print get_cookie

PASS=PASS+1

except Exception,e:

print(str(Exception)+":"+str(e))

FAIL=FAIL+1

finally:

driver.close()

driver.quit()

endtime=datetime.datetime.now()

totaltime=endtime-starttime

usetime=str(endtime-starttime)

hour=usetime.split(':').pop(0)

minute=usetime.split(':').pop(1)

second=usetime.split(':').pop(2)

totaltime=float(hour)*60*60+float(minute)*60+float(second)

totaltime=str(totaltime)+"s"

return get_cookie

关于用python写的登陆程序,怎么获取cookie值并返回出来

python中,怎么让类返回值啊?

函数可以说是一个黑箱,输入一些值,然后输出一些值,因此return就是让函数输出值的操作。

然而,类,简单来说就是一系列函数的集合,它最主要的用途是设定对象和方法。

在Python中,我简单举个例子,我要算a+b=c,我输入a和b,输出c。

那么,函数就是这样的:

def plus(a, b):

c = a + b

return c

这里你就可以看到,输入两个值,经过函数内部计算,就输出的一个值。在主程序中你调用这个函数,比如:c = plus(1,2),那么print c就得到3。我爱编程网

但是类是不同的,同样是计算a+b=c,我要先设定一种方法,比如叫做Plus,如下:

Class Plus:

def __init__(self, a, b):

self.a = a

self.b = b

def return_result(self):

self.c = self.a + self.b

return self.c

那么在主程序中你就要调用这个类,如下:

equation = Plus(1, 2)

result = equation.return_result()

print result

这样你就会得到结果3。

希望可以帮到你,或者你把你的程序发过来,我看看~

关于用python写的登陆程序,怎么获取cookie值并返回出来

python程序运行结束后,怎么让它自动回到开头重新运行?

我爱编程网(https://www.52biancheng.com)小编还为大家带来python程序运行结束后,怎么让它自动回到开头重新运行?的相关内容。

1、首先在电脑的

搜索框

中输入“idle”,出现的“IDLE”就是Python的入口,如下图所示。

2、进入Python到界面中,然后点击“File”,在下拉菜单中选择“New File”进去程序编写页面。

3、程序编写完成后,点击“File”,然后在下拉菜单中选择“Save”进行保存。

4、保存完了之后,按下”F5“键运行程序即可,如下图所示就完成了。

以上,就是我爱编程网小编给大家带来的关于用python写的登陆程序,怎么获取cookie值并返回出来全部内容,希望对大家有所帮助!更多相关文章关注我爱编程网:www.52biancheng.com

免责声明:文章内容来自网络,如有侵权请及时联系删除。
与“关于用python写的登陆程序,怎么获取cookie值并返回出来”相关推荐