摘要:
这只是符合比较正常的需求和场景。 #一、适用合并两个字典(key不能相同否则会被覆盖),简单,好用。 1 A = {'a': 11, 'b': 22} 2 B = {'c': 48, 'd': 13} 3 #update() 把字典B的键/值对更新到A里 4 A.update(B) 5 print( 阅读全文
摘要:
使用shutil移动重复文件出错处理.思路:将重名的文件,重新命名到目标文件夹 import osimport platformimport reimport shutildef move_file(soure_file_abspath, dirname): '''移动文件,例:xxx(6).txt 阅读全文
摘要:
直接上代码 pub.py;向已建立好的mqtt服务,发送消息 import paho.mqtt.client as mqtt def on_connect(client, userdata, flags, rc): print("Connected with result code: " + str 阅读全文
摘要:
修复BUG PytzUsageWarning: The zone attribute is specific to pytz's interface; please migrate to a new time zone provider. For more details on how to do 阅读全文
摘要:
如今基本都是磁力、BT下载的天下,搭建开源软件是当下比较好的选择,这里就需要Aria2这款下载神器了。Aria2比较全能,HTTP下载和BT下载都有,性能也相当不错,速度不比迅雷慢,但是它没有自带UI,需要自备,并且配置麻烦,上手较难。这里介绍下windows上安装配置Aria2的详细方法。 安装A 阅读全文