您的位置:首页 > 房产 > 家装 > 网络推广seo是什么_网页设计免费网站推荐_马鞍山seo_互联网营销师考证多少钱

网络推广seo是什么_网页设计免费网站推荐_马鞍山seo_互联网营销师考证多少钱

2025/4/3 20:27:24 来源:https://blog.csdn.net/2503_90633075/article/details/146508717  浏览:    关键词:网络推广seo是什么_网页设计免费网站推荐_马鞍山seo_互联网营销师考证多少钱
网络推广seo是什么_网页设计免费网站推荐_马鞍山seo_互联网营销师考证多少钱

一.request断言

if断言

案例:

import   requests
s=requests.Session()
url1="http://49.233.201.254:8080/cms/manage/loginJump.do"
data1={'userAccount':'admin','loginPwd':'123456'}
h1={"Content-Type":"application/x-www-form-urlencoded"}
jk1=s.request("post",url=url1,data=data1,headers=h1)
wb=jk1.json()
print(jk1.json())
if wb["msg"]=="登录成功!":print("ok")
else:print("no")

二.assert断言

h1={"Content-Type":"application/x-www-form-urlencoded"}
jk1=s.request("post",url=url1,data=data1,headers=h1)
wb=jk1.json()
print(jk1.json())
assert  wb["msg"]=='登录成功'
print(jk1.cookies)

 

二.封装接口

案例1:requests.Session()

import   requests
s=requests.Session()
class  Cms(object):def __init__(self):passdef  dl(self):url1 = "http://49.233.201.254:8080/cms/manage/loginJump.do"data1={'userAccount':'admin','loginPwd':'123456'}h1={"Content-Type":"application/x-www-form-urlencoded"}jk1=s.request("post",url=url1,data=data1,headers=h1)print(jk1.json())def   yh(self):url2="http://49.233.201.254:8080/cms/manage/queryUserList.do"data2={'startCreateDat':'','endCreateDate':'','searchValue':'','page':'1'}h2={"Content-Type":"application/x-www-form-urlencoded"}jk2=s.request("post",url=url2,data=data2,headers=h2)print(jk2.text)
if __name__ == '__main__':dx=Cms()dx.dl()dx.yh()

案例2:

cookies 保持会话

案例:

import   requests
class  Cms(object):def __init__(self):passdef  dl(self):url1 = "http://49.233.201.254:8080/cms/manage/loginJump.do"data1={'userAccount':'admin','loginPwd':'123456'}h1={"Content-Type":"application/x-www-form-urlencoded"}jk1=requests.request("post",url=url1,data=data1,headers=h1)print(jk1.text)c=str(jk1.cookies)print(c) #<RequestsCookieJar[<Cookie JSESSIONID=DAB3F94092C907F3BAD009410A8778E0 for 49.233.201.254/cms/>]>self.cookie=c.split(" ")[1] #JSESSIONID=6D60B90E937058D8B91B66A18671A4CB# print(cookie)def   yh(self):url2="http://49.233.201.254:8080/cms/manage/queryUserList.do"data2={'startCreateDat':'','endCreateDate':'','searchValue':'','page':'1'}h2={"Content-Type":"application/x-www-form-urlencoded","Cookie":self.cookie}jk2=requests.request("post",url=url2,data=data2,headers=h2)print(jk2.text)
if __name__ == '__main__':dx=Cms()dx.dl()dx.yh()

案例3:

import   requests
class  Cms(object):def __init__(self):passdef  dl(self):url1 = "http://49.233.201.254:8080/cms/manage/loginJump.do"data1={'userAccount':'admin','loginPwd':'123456'}h1={"Content-Type":"application/x-www-form-urlencoded"}jk1=requests.request("post",url=url1,data=data1,headers=h1)print(jk1.text)c=str(jk1.cookies)print(c) #<RequestsCookieJar[<Cookie JSESSIONID=DAB3F94092C907F3BAD009410A8778E0 for 49.233.201.254/cms/>]>cookie=c.split(" ")[1] #JSESSIONID=6D60B90E937058D8B91B66A18671A4CB# print(cookie)return cookiedef   yh(self):d=self.dl()url2="http://49.233.201.254:8080/cms/manage/queryUserList.do"data2={'startCreateDat':'','endCreateDate':'','searchValue':'','page':'1'}h2={"Content-Type":"application/x-www-form-urlencoded","Cookie":d}jk2=requests.request("post",url=url2,data=data2,headers=h2)print(jk2.text)
if __name__ == '__main__':dx=Cms()# dx.dl()dx.yh()

关联接口

省份接口:

http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupportProvince城市接口http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupport 入参CitybyProvinceName:{{cs}}

import   requests
s=requests.Session()
class  Gl(object):def __init__(self):passdef  sf(self):url="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupportProvince"jk=s.post(url=url)print(jk.text)def  cs(self):url1=r"http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupportCity"data1={'byProvinceName':"浙江"}h1={"Content-Type":"application/x-www-form-urlencoded"}jk1=s.post(url=url1,data=data1,)print(jk1.text)
if __name__ == '__main__':dx=Gl()dx.sf()dx.cs()

案例2:

import   requests
import  re
s=requests.Session()
class  Gl(object):def __init__(self):passdef  sf(self):url="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupportProvince"jk=s.post(url=url)print(jk.text)self.tq=re.findall('<string>(.+?)</string>',jk.text)# print(tq)def  cs(self):url1=r"http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getSupportCity"data1={'byProvinceName':self.tq[8]}h1={"Content-Type":"application/x-www-form-urlencoded"}jk1=s.post(url=url1,data=data1,headers=h1)print(jk1.text)
if __name__ == '__main__':dx=Gl()dx.sf()dx.cs()

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com