当前位置:
首页 > Python基础教程 >
-
python案例练习合集
一、python批量查询练习
通过接口批量查询该ip是否属于指定接口:
import requests
import json
if __name__ == "__main__":
headers = {
'user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.0 Safari/537.36'
}
# 获取源IP
with open('./ip.txt','r') as fp:
list_ip = fp.readlines()
# 处理每个ip后面对\n
for li in list_ip:
li = li.rstrip()
url="http://www.xxxx.com/api/query_ip?ip={0}&flag=1&key=cdbcbdhbhcbdhcbhdbchdbchdbch&user=root".format(li)
#
result_json = requests.get(url, headers=headers)
# print(result_json.json())
# 获取到数据和未获取到数据最终打印对结果要不一样
if result_json.json()['total'] == 0:
cw_url="http://www.sss.cn/api/query_ip?ip={0}&flag=1&key=fjdifjdifncjdnjcndjhfjndjnjdhfjdhj&user=root".format(li)
cw_result_json = requests.get(cw_url,headers=headers)
print("XXX科技CMDB未发现该资产 ->",end="")
if cw_result_json.json()['total']==0:
print(li + " <- SSSSCMDB未发现该资产")
print(result_json.json(),cw_result_json.json())
else:
print("该资产属于SSSSCMDB:")
ip1 = cw_result_json.json()['data'][0]['ip1']
company = cw_result_json.json()['data'][0]['company']
profile_center = cw_result_json.json()['data'][0]['profit_center']
platform = cw_result_json.json()['data'][0]['platform']
leader = cw_result_json.json()['data'][0]['leader']
email = cw_result_json.json()['data'][0]['email']
print(ip1 + ' ' + company + ' ' + profile_center + ' ' + platform + ' ' + leader + ' ' + email)
else:
ip1 = result_json.json()['data'][0]['ip1']
company = result_json.json()['data'][0]['company']
profile_center = result_json.json()['data'][0]['profit_center']
platform = result_json.json()['data'][0]['platform']
leader = result_json.json()['data'][0]['leader']
email = result_json.json()['data'][0]['email']
print(ip1 + ' ' + company + ' ' + profile_center + ' ' + platform + ' ' + leader + '
二、python批量请求(GET | POST)
本案例为普通的测试案例,主要用于测试通过get请求和post请求产生响应是否一致,主要针对响应码为200的结果进行输出,没有什么技术含量!
#-*- coding:utf-8 -*-
import requests
def apiRequest():
header = {
'User-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.0 Safari/537.36',
'Cookie': 'JSESSIONID=E65BD767F22CBEFE30BAF33D84A59072',
'Referer':'http://aaa.xxx.com',
'Content-Type':'application/json;'
}
with open('url.txt','r',encoding='utf-8') as fp:
urls = fp.readlines()
for li in urls:
get_response = requests.get(url=li,headers=header)
post_response = requests.post(url=li, headers=header)
if get_response.status_code == 200 or post_response.status_code == 200:
print(li.strip()+"请求测试结果如下:")
print("GET请求测试结果",get_response.content)
print("POST请求测试结果", post_response.content)
if __name__ == '__main__':
apiRequest()
三、python列表转集合练习
处理字符串重复问题—本练习用于fuzz字典去重
if __name__ == '__main__':
with open('E:/xilie/web/fuzzDicts-master/apiDict/api.txt','r') as fp:
list1 = fp.readlines()
list2 = set(list1)
print("去重前的条数:"+str(len(list1)))
print(type(list2), "去重后的条数"+str(len(list2)))
with open('E:/xilie/web/fuzzDicts-master/apiDict/new_api.txt','w+') as fp1:
for li1 in list2:
fp1.write(li1)
print("已将去重内容写入新文件!!!")
到此这篇关于python案例学习合集的文章就介绍到这了,更多相关python案例内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持
原文链接:https://blog.csdn.net/weixin_42380348/article/details/120494003
栏目列表
最新更新
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
Java使用poi生成word文档的简单实例
计算机二级考试MySQL常考点 8种MySQL数据库
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比