上一页 1 ··· 111 112 113 114 115 116 117 118 119 ··· 189 下一页
摘要: from PyQt5.QtWidgets import QWidget, QApplication, QPushButton, QTextEdit, QCheckBox, QLabel, QFileDialog from PyQt5.QtGui import QIcon import sys imp 阅读全文
posted @ 2022-03-22 21:42 myrj 阅读(113) 评论(0) 推荐(0)
摘要: 通过AES256进行模糊处理 解密AES256 c:\Anaconda32\envs\myenv\Scripts\pyinstaller.exe --distpath=./dist/win32 --workpath=./build/win32 --uac-admin --uac-uiaccess - 阅读全文
posted @ 2022-03-22 21:12 myrj 阅读(354) 评论(0) 推荐(0)
摘要: """ Add the `Makespec` options to a option-parser instance or a option group. """ g = parser.add_argument_group('What to generate') g.add_argument( "- 阅读全文
posted @ 2022-03-22 20:09 myrj 阅读(310) 评论(0) 推荐(0)
摘要: import ntplib import os,datetime hosts = ['0.cn.pool.ntp.org','1.cn.pool.ntp.org','2.cn.pool.ntp.org','3.cn.pool.ntp.org'] hosts=['ntp.aliyun.com','nt 阅读全文
posted @ 2022-03-20 09:50 myrj 阅读(545) 评论(0) 推荐(0)
摘要: def get_web_now_timea(time_format='YYYY-MM-DD HH:mm:ss.SSSSSS'): """ 获取网络时间,返回时间格式:2019-12-13 11:39:48.398 :param time_format:控制返回字符串的格式,默认为:'YYYY-MM- 阅读全文
posted @ 2022-03-20 09:32 myrj 阅读(435) 评论(0) 推荐(0)
摘要: import ntplib import os,datetime def ntp_client(): #hosts = ['0.cn.pool.ntp.org','1.cn.pool.ntp.org','2.cn.pool.ntp.org','3.cn.pool.ntp.org'] hosts=[' 阅读全文
posted @ 2022-03-20 09:28 myrj 阅读(434) 评论(0) 推荐(0)
摘要: import datetime import time def get_float_time_stamp(): datetime_now = datetime.datetime.now() return datetime_now.timestamp() def get_time_stamp16(): 阅读全文
posted @ 2022-03-20 06:04 myrj 阅读(992) 评论(0) 推荐(0)
摘要: 金山文档,百度搜索,打开网页,微信登录,上传模板文件,任何人都可编辑,分享,复制链接到微信群 阅读全文
posted @ 2022-03-18 16:44 myrj 阅读(470) 评论(0) 推荐(0)
摘要: >>> a='0000234230000'>>> ac=re.sub('^0+','',a)>>> ac'234230000'>>> ac=re.sub('0+','',a)>>> ac'23423'>>> 搜索 复制 阅读全文
posted @ 2022-03-18 06:43 myrj 阅读(93) 评论(0) 推荐(0)
摘要: 1.利用QT DESIGNER软件建立自己的UI,保存为aa.ui2.进入c:\python373.pyuic5 -o test.py aa.ui4.形成对应的py PyQt5:获取文本框和line的值不同的方法 得到textEdit的值:self.textEdit_5.toPlainText()得 阅读全文
posted @ 2022-03-16 21:23 myrj 阅读(117) 评论(0) 推荐(0)
上一页 1 ··· 111 112 113 114 115 116 117 118 119 ··· 189 下一页