摘要: 点击任务-configure-Build Triggers 勾选定时构建,20,29 17 * * 1-5表示,每周一到周五,17点20分,17点29分各执行一次 阅读全文
posted @ 2023-04-25 17:29 liuweipaul123 阅读(206) 评论(0) 推荐(0) 编辑
摘要: # 获取文件时间(浮点数格式)csv_time = os.path.getmtime("C:/Users/DELL/Desktop/20000/allqueryCommodity.csv")print("csv_time",csv_time) # 结果:1682402963.033327# 把浮点数 阅读全文
posted @ 2023-04-25 15:11 liuweipaul123 阅读(167) 评论(0) 推荐(1) 编辑
摘要: 一、时间的表示格式 在Python中,表示时间的格式有4种较为常用,分别是浮点数格式、标准可读格式、格式化格式以及自定义格式。(名字是自己起的,非官方命名) (1)浮点数格式 用一个float格式的浮点数表示时间,其具体含义表示为从世界标准纪元时间(1970年1月1日)起算至该时间节点的秒数。 (2 阅读全文
posted @ 2023-04-25 15:03 liuweipaul123 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1,用python判断文件是否已存在 if os.path.exists("C:/Users/DELL/Desktop/20000/check_queryTrades_result.csv") == True: print("文件已存在") 阅读全文
posted @ 2023-04-25 13:22 liuweipaul123 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1,创建每3秒执行一个定时任务 import schedule def task(): print("3秒执行一次任务") def func(): # 清空任务 schedule.clear() # 创建一个任务 schedule.every(3).seconds.do(task) while Tr 阅读全文
posted @ 2023-04-25 10:48 liuweipaul123 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1,查看python版本,输入python 2,查看python路径,输入whereis python 阅读全文
posted @ 2023-04-25 10:35 liuweipaul123 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 1,进入控制面板,选择小图标-Internet选项-高级,取消勾选启用第三方浏览器扩展,最后点击确定,重启电脑后就生效 阅读全文
posted @ 2023-04-20 17:13 liuweipaul123 阅读(483) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python import os import time import win32gui import win32api import win32con import pymouse,pykeyboard from pymouse import * from pykeyboar 阅读全文
posted @ 2023-04-15 00:54 liuweipaul123 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1,问题概述 from pykeyboard import PyKeyboard,运行时出现如下错误: ImportError: cannot import name ‘PyKeyboard‘ from ‘pykeyboard‘ 2,解决方法 进入C:\Users\Administrator\App 阅读全文
posted @ 2023-04-15 00:04 liuweipaul123 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 1,在cmd安装python第三方库提示超时,可以使用清华镜像安装 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade 库名 阅读全文
posted @ 2023-04-14 22:56 liuweipaul123 阅读(151) 评论(0) 推荐(0) 编辑