监控-海康威视摄像头更改OSD通道,一键更改,批量更改

监控-海康威视摄像头更改OSD通道,一键更改,批量更改

监控-海康威视摄像头更改OSD通道,一键更改,只能一次更改一个,支持循环

# coding=utf-8
#监控-海康威视摄像头更改OSD通道,一键更改,批量更改import os
import time
import requests
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
import xml.etree.ElementTree as ET#和监控摄像头通讯需要一个双方认可的密钥,可以随机生成
def generate_key():# 生成一个16字节的随机字节数组,16字节对应128位random_bytes = os.urandom(16)# 将字节数组转换成十六进制字符串hex_key = random_bytes.hex()return hex_key#格式数据,给摄像头输出
xml_data1 ="""
<?xml version: "1.0" encoding="utf-8"?>
<VideoOverlay><normalizedScreenSize><normalizedScreenWidth>704</normalizedScreenWidth><normalizedScreenHeight>576</normalizedScreenHeight></normalizedScreenSize><attribute><transparent>false</transparent><flashing>false</flashing></attribute><fontSize>adaptive</fontSize><frontColorMode>auto</frontColorMode><alignment>customize</alignment><TextOverlayList><TextOverlay><id>1</id><enabled>false</enabled><alignment>0</alignment><positionX>0</positionX><positionY>576</positionY><displayText>111</displayText></TextOverlay><TextOverlay><id>2</id><enabled>false</enabled><alignment>0</alignment><positionX>0</positionX><positionY>576</positionY><displayText>11</displayText></TextOverlay><TextOverlay><id>3</id><enabled>false</enabled><alignment>0</alignment><positionX>0</positionX><positionY>576</positionY><displayText/></TextOverlay><TextOverlay><id>4</id><enabled>false</enabled><alignment>0</alignment><positionX>0</positionX><positionY>576</positionY><displayText/></TextOverlay></TextOverlayList><DateTimeOverlay><enabled>true</enabled><positionY>544</positionY><positionX>0</positionX><dateStyle>CHR-YYYY-MM-DD</dateStyle><timeStyle>12hour</timeStyle><displayWeek>true</displayWeek></DateTimeOverlay><channelNameOverlay><enabled>true</enabled><positionY>48</positionY><positionX>336</positionX><videoFormat>PAL</videoFormat></channelNameOverlay>
</VideoOverlay>
"""def fun_GetOSD_Name(url):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPBasicAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url)# 检查状态码,如果为401则尝试Digest Auth#print(f'response.status_code:{response.status_code}')if response.status_code == 401:session.auth = HTTPDigestAuth(USERNAME, PASSWORD)response = session.get(url,timeout=5)#print(response.text)# 解析XMLosd_config = ET.fromstring(response.text)elif response.status_code == 200:# 解析XML响应以获取OSD通道名称osd_config = ET.fromstring(response.text)#print("OSD Configuration:", osd_config)else:print("Failed to retrieve OSD configuration. Status code:", response.status_code)# 找到并打印摄像头的OSD-name元素的文本name_element = osd_config.find('{http://www.hikvision.com/ver20/XMLSchema}name')if name_element is not None:osd_name = name_element.textreturn osd_nameelse:print("Name element not found")return '没找到通道名称'except Exception as e:print("An error occurred:", e)def fun_New_OSD_Name(url,xml_data):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPBasicAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url,timeout=5)# 检查状态码,如果为401则尝试Digest Authif response.status_code == 401:session.auth = HTTPDigestAuth(USERNAME, PASSWORD)# 发送PUT请求,更新OSD名称time.sleep(2)headers = {'Content-Type': 'application/xml'}response = session.put(url, data=xml_data2, headers=headers)# 检查响应状态码,确认更新是否成功if response.status_code == 200:print("\n OSD 通道名称更改成功!.")else:print(f"Failed to update OSD name. Status code: {response.status_code}")# 检查响应状态if response.status_code == 200:# 解析XML响应以获取OSD通道名称osd_config = response.text#print("OSD Configuration:", osd_config)else:print("Failed to retrieve OSD configuration. Status code:", response.status_code)except Exception as e:print("An error occurred:", e)if __name__=='__main__':#207辅楼楼顶设备间2(外)# 摄像头的IP地址、用户名和密码HOST1=input('请输入ip地址前3位不要少写最后的【点】:默认:10.25.27.')if not HOST1:HOST1='10.25.27.'USERNAME = 'admin'PASSWORD = 'qlyy1234'#跳转1:while 1:HOST2 = input('\n请输入ip地址最后三位:\n\n')HOST=HOST1+HOST2asekey=generate_key()#url1:输出格式的地址;url2:输出OSD名字的地址,后边的密钥可以是任意值url1=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/overlays'url2=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/?security=1&iv={asekey}'#获取通道名称OldName=fun_GetOSD_Name(url2)print(f'{HOST:}当前通道名称:{OldName}')New_OSD_Name=input('\n请输入新的通道名称:\n\n')if not New_OSD_Name:New_OSD_Name=OldName# 构建XML数据,注意这里的XML数据格式应该符合Hikvision API的要求#OSD通道数据,给设想头设置xml_data2 = f"""<?xml version: "1.0" encoding="UTF-8"?><VideoInputChannel xmlns="http://www.hikvision.com/ver20/XMLSchema" version="2.0"><id>1</id><inputPort>1</inputPort><name>{New_OSD_Name}</name><videoFormat>PAL</videoFormat></VideoInputChannel>"""#执行摄像头通道名称更改fun_New_OSD_Name(url2,xml_data2)#获取修改后的通道名称NewName=fun_GetOSD_Name(url2)print(f'{HOST:}当前通道名称:{NewName}')

海康威视更改摄像头IP地址,更改后重启,可以两台互换ip不冲突。

# coding=utf-8
#海康威视更改摄像头IP地址,更改后重启,可以两台互换ip不冲突。
import os
import time
import requests
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
import xml.etree.ElementTree as ET#和监控摄像头通讯需要一个双方认可的密钥,可以随机生成
def generate_key():# 生成一个16字节的随机字节数组,16字节对应128位random_bytes = os.urandom(16)# 将字节数组转换成十六进制字符串hex_key = random_bytes.hex()return hex_key#格式数据,给摄像头输出def fun_GetIP(url):# 尝试使用Digest Auth登录,不是Basic Authsession = requests.Session()session.auth = HTTPDigestAuth(USERNAME, PASSWORD)  # 确保USERNAME和PASSWORD已经被定义while True:try:# 发送GET请求response = session.get(url,timeout=5)# 检查响应状态码if response.status_code == 200:# 将HTML转化为ElementTree对象ip_config = ET.fromstring(response.text)  # 使用response.text# 将Element转换为字符串并打印#xml_str = ET.tostring(ip_config, encoding='unicode')#print(xml_str)# 提取命名空间# 注意:命名空间的格式应该是这样的:'{http://www.hikvision.com/ver20/XMLSchema}'ns = {'ns': 'http://www.hikvision.com/ver20/XMLSchema'}  # 注意这里命名空间的格式# 查找ipv4的ipaddress# 根据返回的XML结构,可能需要使用ip_config# 并且命名空间需要正确添加到'ipAddress'前面ip_address = ip_config.find('.//ns:ipAddress', ns).textreturn ip_addresselse:print("Request failed with status code:", response.status_code)return Noneexcept requests.exceptions.Timeout:print("Connection timed out. Do you want to retry?")choice = input("输入1重连,输入2退出: ")if choice != '1':print("Returning to main program.")return Noneexcept Exception as e:print("An error occurred:", e)return Nonedef fun_New_IPAddress(url,xml_data,rebootUrl):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPDigestAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url)# 发送PUT请求,更新IP地址time.sleep(2)headers = {'Content-Type': 'application/xml'}response = session.put(url, data=xml_data, headers=headers)# 检查响应状态码,确认更新是否成功if response.status_code == 200:print("\n IP更改成功!")response1=session.put(rebootUrl,data='', headers=headers)#重启设备print('重启设备------------------------------------------------')else:print(f"Failed to update OSD name. Status code: {response.status_code}")# 检查响应状态if response.status_code == 200:print('建立连接成功!')else:print("建立连接失败:", response.status_code)except Exception as e:print("An error occurred:", e)if __name__=='__main__':#207辅楼楼顶设备间2(外)# 摄像头的IP地址、用户名和密码HOST1=input('请输入ip地址前6位不要少写最后的【点】:默认:10.25.')if not HOST1:HOST1='10.25.'USERNAME = 'admin'PASSWORD = 'qlyy1234'#跳转1:while 1:HOST2 = input('\n请输入原始ip地址最后6位(例如:27.21):\n\n')HOST=HOST1+HOST2asekey=generate_key()#url1:输出格式的地址;url2:输出OSD名字的地址,后边的密钥可以是任意值url1=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/overlays'url2=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/?security=1&iv={asekey}'url3=f'http://{HOST}/ISAPI/System/Network/interfaces/1'#更改ip地址url4=f'http://{HOST}/ISAPI/System/Network/interfaces?security=1&iv={asekey}'#获取ip地址rebootUrl=f'http://{HOST}/ISAPI/System/reboot'#获取通道名称OldIPAddress=fun_GetIP(url4)print(f'当前IP地址:{OldIPAddress}')HOST2=input('\n请输入新的地址后6位(例如:31.21)【q:退出】:\n\n')if not HOST2:New_IPAddress=OldIPAddresselif HOST2 == 'q':exitelse:New_IPAddress=HOST1+HOST2xml_data3 = f"""<?xml version: "1.0" encoding="UTF-8"?><NetworkInterface><id>1</id><IPAddress><ipVersion>dual</ipVersion><addressingType>static</addressingType><ipAddress>{New_IPAddress}</ipAddress><subnetMask>255.255.224.0</subnetMask><ipV6AddressingType>ra</ipV6AddressingType><DefaultGateway><ipAddress>10.25.27.254</ipAddress></DefaultGateway><PrimaryDNS><ipAddress>114.114.114.114</ipAddress></PrimaryDNS><SecondaryDNS><ipAddress>8.8.8.8</ipAddress></SecondaryDNS></IPAddress></NetworkInterface>"""#执行摄像头通道名称更改fun_New_IPAddress(url3,xml_data3,rebootUrl)

监控-获取所有摄像头的OSD通道名称[ip.txt]

# coding=utf-8
#监控-获取所有摄像头的OSD通道名称[ip.txt]
import os
import time
import requests
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
import xml.etree.ElementTree as ET
#注意:和ip.txt放在一个文件夹,会生成ip_name.txt文件#根据ip地址清单,获取摄像头的信息
#和监控摄像头通讯需要一个双方认可的密钥,可以随机生成
def generate_key():# 生成一个16字节的随机字节数组,16字节对应128位random_bytes = os.urandom(16)# 将字节数组转换成十六进制字符串hex_key = random_bytes.hex()return hex_key
def fun_GetOSD_Name(url):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPDigestAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url,timeout=5)if response.status_code == 200:# 解析XML响应以获取OSD通道名称osd_config = ET.fromstring(response.text)#print("OSD Configuration:", osd_config)else:print("Failed to retrieve OSD configuration. Status code:", response.status_code)# 找到并打印摄像头的OSD-name元素的文本name_element = osd_config.find('{http://www.hikvision.com/ver20/XMLSchema}name')if name_element is not None:osd_name = name_element.textreturn osd_nameelse:print("Name element not found")return '没找到通道名称'except Exception as e:print("An error occurred:", e)def get_ip_list():#从txt中获得ip列表,根据列表获得摄像头信息并,存入txt中# 文件路径file_path =f'{os.getcwd()}/ip.txt'# 创建一个空列表来存储每一行的数据data_list = []try:# 打开文件with open(file_path, 'r', encoding='utf-8') as file:# 逐行读取文件内容for line in file:# 去除行尾的换行符(\n 或 \r\n),然后添加到列表中data_list.append(line.strip())except FileNotFoundError:print(f"Error: The file {file_path} does not exist.")except Exception as e:print(f"An error occurred: {e}")# 打印列表,验证是否正确读取了文件内容print(data_list)return data_listif __name__=='__main__':USERNAME = 'admin'PASSWORD = 'qlyy1234'ip_list=[]ip_list=get_ip_list()#跳转1:ip_name_list=[]for ip in ip_list:HOST=ipasekey=generate_key()#url1:输出格式的地址;url2:输出OSD名字的地址,后边的密钥可以是任意值url1=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/overlays'url2=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/?security=1&iv={asekey}'#获取通道名称Name=fun_GetOSD_Name(url2)ip_name=f'{ip}\t{Name}'ip_name_list.append(ip_name)print(ip_name)time.sleep(0.2)#写入文本# 文件路径file_path =f'{os.getcwd()}/ip_osd.txt'# 如果文件存在,则先重命名if os.path.exists(file_path):new_file_path = file_path + '.bak'os.rename(file_path, new_file_path)try:# 打开文件,如果不存在则会被创建with open(file_path, 'a', encoding='utf-8') as file:# 写入列表中的每个元素,每行一个for ip_name in ip_name_list:file.write(ip_name + '\n')except IOError as e:print(f"An error occurred while writing to the file: {e}")else:print(f"Successfully wrote data to {file_path}")# 如果之前重命名了文件,可以在这里做进一步处理,例如删除旧文件或记录日志

监控-海康威视摄像头批量更改OSD通道[ip_osd.txt]

# coding=utf-8
#监控-海康威视摄像头批量更改OSD通道[ip_osd.txt]
import os
import time
import requests
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
import xml.etree.ElementTree as ET"""
需要在同一个文件夹创建ip_osd.txt,每行一个数据例如:
ip_osd.txt的内容(用tab分割)
10.25.25.10 控制室监控
10.25.25.11 UPS监控
"""
#和监控摄像头通讯需要一个双方认可的密钥,可以随机生成
def generate_key():# 生成一个16字节的随机字节数组,16字节对应128位random_bytes = os.urandom(16)# 将字节数组转换成十六进制字符串hex_key = random_bytes.hex()return hex_keydef get_ip_osd_list():#从txt中获得ip列表,根据列表获得摄像头信息并,存入txt中# 文件路径file_path =f'{os.getcwd()}/ip_osd.txt'# 创建一个空列表来存储每一行的数据data_list = []try:# 打开文件with open(file_path, 'r', encoding='utf-8') as file:# 逐行读取文件内容for line in file:# 去除行尾的换行符(\n 或 \r\n),然后添加到列表中data_list.append(line.strip())except FileNotFoundError:print(f"Error: The file {file_path} does not exist.")except Exception as e:print(f"An error occurred: {e}")# 打印列表,验证是否正确读取了文件内容print(data_list)return data_listdef fun_GetOSD_Name(url):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPBasicAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url)# 检查状态码,如果为401则尝试Digest Auth#print(f'response.status_code:{response.status_code}')if response.status_code == 401:session.auth = HTTPDigestAuth(USERNAME, PASSWORD)response = session.get(url,timeout=5)#print(response.text)# 解析XMLosd_config = ET.fromstring(response.text)elif response.status_code == 200:# 解析XML响应以获取OSD通道名称osd_config = ET.fromstring(response.text)#print("OSD Configuration:", osd_config)else:print("Failed to retrieve OSD configuration. Status code:", response.status_code)# 找到并打印摄像头的OSD-name元素的文本name_element = osd_config.find('{http://www.hikvision.com/ver20/XMLSchema}name')if name_element is not None:osd_name = name_element.textreturn osd_nameelse:print("Name element not found")return '没找到通道名称'except Exception as e:print("An error occurred:", e)def fun_New_OSD_Name(HOST,url,xml_data):# 尝试使用Basic Auth登录session = requests.Session()session.auth = HTTPBasicAuth(USERNAME, PASSWORD)try:# 发送GET请求response = session.get(url,timeout=5)# 检查状态码,如果为401则尝试Digest Authif response.status_code == 401:session.auth = HTTPDigestAuth(USERNAME, PASSWORD)# 发送PUT请求,更新OSD名称time.sleep(2)headers = {'Content-Type': 'application/xml'}response = session.put(url, data=xml_data2, headers=headers)# 检查响应状态码,确认更新是否成功if response.status_code == 200:print(f"\n {HOST}:OSD 通道名称更改成功!")else:print(f"Failed to update OSD name. Status code: {response.status_code}")# 检查响应状态if response.status_code == 200:# 解析XML响应以获取OSD通道名称osd_config = response.text#print("OSD Configuration:", osd_config)else:print("Failed to retrieve OSD configuration. Status code:", response.status_code)except Exception as e:print("An error occurred:", e)if __name__=='__main__':#207辅楼楼顶设备间2(外)# 摄像头的IP地址、用户名和密码USERNAME = 'admin'PASSWORD = 'qlyy1234'#获得ip_osd_list列表:ip_osd_list=[]ip_osd_list=get_ip_osd_list()for ip_osd in ip_osd_list:asekey=generate_key()HOST, New_OSD_Name = ip_osd.split('\t')#url1:输出格式的地址;url2:输出OSD名字的地址,后边的密钥可以是任意值url1=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/overlays'url2=f'http://{HOST}/ISAPI/System/Video/inputs/channels/1/?security=1&iv={asekey}'#OSD通道数据,给设想头设置xml_data2 = f"""<?xml version: "1.0" encoding="UTF-8"?><VideoInputChannel xmlns="http://www.hikvision.com/ver20/XMLSchema" version="2.0"><id>1</id><inputPort>1</inputPort><name>{New_OSD_Name}</name><videoFormat>PAL</videoFormat></VideoInputChannel>"""#执行摄像头通道名称更改fun_New_OSD_Name(HOST,url2,xml_data2)time.sleep(0.5)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/48281.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机三级嵌入式笔记(一)—— 嵌入式系统概论

目录 考点1 嵌入式系统 考点2 嵌入式系统的组成与分类 考点3 嵌入式系统的分类与发展 考点4 SOC芯片 考点5 数字&#xff08;电子&#xff09;文本 考点6 数字图像 考点7 数字音频与数字视频 考点8 数字通信 考点9 计算机网络 考点10 互联网 考纲&#xff08;2023&am…

2、如何发行自己的数字代币(truffle智能合约项目实战)

2、如何发行自己的数字代币&#xff08;truffle智能合约项目实战&#xff09; 1-Atom IDE插件安装2-truffle tutorialtoken3-tutorialtoken源码框架分析4-安装openzeppelin代币框架&#xff08;代币发布成功&#xff09; 1-Atom IDE插件安装 正式介绍基于web的智能合约开发 推…

【Vue3】响应式数据

【Vue3】响应式数据 背景简介开发环境基本数据类型对象数据类型使用 reactive 定义对象类型响应式数据使用 ref 定义对象类型响应式数据 ref 和 reactive 的对比使用原则建议 背景 随着年龄的增长&#xff0c;很多曾经烂熟于心的技术原理已被岁月摩擦得愈发模糊起来&#xff0…

牛客:TOP101链表相加(二)

文章目录 1. 题目描述2. 解题思路3. 代码实现 1. 题目描述 2. 解题思路 按照我们习惯的加法运算&#xff0c;肯定是要从个位开始相加&#xff0c;然后十位……&#xff0c;但是在链表中如果我们先运算后面的&#xff0c;那么接下来我们是无法找到前一位的。想要解决这个问题也很…

【架构艺术】大规模业务逻辑迁移实践

对于一个成熟的工程项目而言&#xff0c;因为项目未来发展或是和企业内部更深度融合的需要&#xff0c;我们可能需要对既有业务逻辑做很大规模的改动&#xff0c;涉及到多方面的逻辑迁移和代码重构&#xff0c;才能够达到下一代产品所需要的效果。 今天这篇文章&#xff0c;就…

优选算法之滑动窗口(下)

目录 一、水果成篮 1.题目链接&#xff1a;904.水果成篮 2.题目描述&#xff1a; 3.解法&#xff08;滑动窗口&#xff09; &#x1f341;算法思路&#xff1a; &#x1f341;算法流程&#xff1a; &#x1f341;算法代码1&#xff08;使用容器&#xff09;&#xff1a; …

数模·插值和拟合算法

插值 将离散的点连成曲线或者线段的一种方法 题目中有"任意时刻任意的量"时使用插值&#xff0c;因为插值一定经过样本点 插值函数的概念 插值函数与样本离散的点一一重合 插值函数往往有多个区间&#xff0c;多个区间插值函数样态不完全一样&#xff0c;简单来说就…

C的预编译指令

预编译指令 #include对于形如 #include "demo.h" 的指令&#xff1a;对于形如 #include <demo.h> 的指令&#xff1a; #define简单宏替换带参数的宏 #ifdef, #ifndef, #if#pragma#error#line 在C语言中&#xff0c;预编译指令用于在编译之前进行代码的预处理。…

etcd磁盘空间故障处理办法

查看etcd状态 etcdctl --cacert=/etc/kubernetes/ssl/ca.crt --cert=/etc/kubernetes/ssl/etcd_server.crt --key=/etc/kubernetes/ssl/etcd_server.key --endpoints=https://10.10.10.31:1159,https://10.10.10.32:1159,https://10.10.10.33:1159 endpoint status --write-…

【系统架构设计 每日一问】二 MySql主从复制延迟可能是什么原因,怎么解决

主从复制的架构设计如下图所示&#xff1a; 同步原理 具体到数据库之间是通过binlog和复制线程操作的&#xff1a; Master的更新事件(update、insert、delete)会按照顺序写入bin-log中。当Slave连接到Master的后,Master机器会为Slave开启&#xff0c;binlog dump线程,该线程…

24、获取NCL色标并将其保存为Excel文件

文章目录 1. 前言2. 代码 1. 前言 在数据可视化的世界里&#xff0c;色彩不仅仅是视觉的盛宴&#xff0c;更是信息的传递者。NCL&#xff08;The NCAR Command Language&#xff09;色标&#xff0c;作为气象和环境科学领域的瑰宝&#xff0c;以其丰富的色彩组合和科学的编排&…

Linux指令ros学习python深度学习bug学习笔记

## 这个文件是关于ros、linux指令&#xff0c;pytorch、python、onnx和相关problem的一些笔记 ### ROS && linux **find: 在当前路径或指定的路径下递归地搜索文件或目录&#xff0c;并可以根据不同的条件进行过滤和匹配。** find -name *.py find /home/dai/bev_…

H3CNE(计算机网络的概述)

1. 计算机网络的概述 1.1 计算机网络的三大基本功能 1. 资源共享 2. 分布式处理与负载均衡 3. 综合信息服务 1.2 计算机网络的三大基本类型 1.3 网络拓扑 定义&#xff1a; 网络设备连接排列的方式 网络拓扑的类型&#xff1a; 总线型拓扑&#xff1a; 所有的设备共享一…

Vue3 --- 路由

路由就是一组key-value的对应关系&#xff1b;多个路由&#xff0c;需要经过路由器的管理。 1. 基本切换效果 安装路由器 npm i vue-router /router/index.ts // import { createRouter, createWebHistory } from vue-router import Home from /components/Home.vue import…

Python面试整理-字典和集合的操作

在Python中,字典(dictionary)和集合(set)是两种非常有用的数据结构,用于存储和操作数据集。字典是一种键值对的集合,而集合是一种只包含唯一元素的集合。下面详细介绍它们的常用操作: 字典操作 创建字典 person = {"name": "Alice",

萝卜快跑爆火的背后,美格智能如何助力无人车商业化?

近期&#xff0c;“订单量超过600万单”等夺人眼球的信息&#xff0c;让无人驾驶出租车“萝卜快跑”从江城武汉爆火出圈&#xff0c;在2024年的炎炎夏日为这座大火炉再添了一把火。热度背后&#xff0c;不少地方主管部门&#xff0c;近期也纷纷针对无人驾驶出租车、无人驾驶运输…

基于术语词典干预的机器翻译挑战赛笔记Task2 #Datawhale AI 夏令营

上回&#xff1a; 基于术语词典干预的机器翻译挑战赛笔记Task1 跑通baseline Datawhale AI 夏令营-CSDN博客文章浏览阅读718次&#xff0c;点赞11次&#xff0c;收藏8次。基于术语词典干预的机器翻译挑战赛笔记Task1 跑通baselinehttps://blog.csdn.net/qq_23311271/article/d…

C++树形结构(2 树的直径)

目录 1.定义&#xff1a; 2.直径的性质&#xff1a; 3.树的直径求解方法&#xff1a; 4.直径端点求解方法&#xff1a; 朴素方法&#xff1a; 优化方法&#xff1a; 5.例题&#xff1a; 6.直径公共点&#xff1a; 7.例题&#xff1a; 8.去掉再加上&#xff1a; 9.例…

最新版kubeadm搭建k8s(已成功搭建)

kubeadm搭建k8s&#xff08;已成功搭建&#xff09; 环境配置 主节点 k8s-master&#xff1a;4核8G、40GB硬盘、CentOS7.9&#xff08;内网IP&#xff1a;10.16.64.67&#xff09; 从节点 k8s-node1&#xff1a; 4核8G、40GB硬盘、CentOS7.9&#xff08;内网IP&#xff1a;10…

【极客日常】Golang一个的slice数据替换的bug排查

上周某天下班前&#xff0c;接到同事转来一个bug要排查&#xff0c;症状是代码重构之后某些业务效果不符合预期&#xff0c;由于代码重构人是笔者&#xff0c;于是blame到笔者这边。经过10min左右的排查和尝试后&#xff0c;解决了这个问题&#xff1a;既往逻辑没有改动&#x…