上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: #!/usr/bin/env python # -*- coding:utf-8 -*- import subprocess import datetime plist = [] p = subprocess.Popen('net user test1234 /domain',shell=True,stdout=subprocess.PIPE) out,err = p.communicate() 阅读全文
posted @ 2019-09-27 15:27 tec2019 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: import pymysql cnn =pymysql.connect(host="localhost", user="root",password="1234567",database="test",charset="utf8") cursor=cnn.cursor() res =cursor.execute("select * from contacts;") print("{} rows i 阅读全文
posted @ 2019-09-27 11:04 tec2019 阅读(182) 评论(0) 推荐(0) 编辑
摘要: from datetime import timedelta, datetime yesterday = datetime.today()+timedelta(-1) yesterday_format = yesterday.strftime('%Y-%m-%d') print('昨天是:%s' %yesterday_format) 阅读全文
posted @ 2019-09-12 16:07 tec2019 阅读(2782) 评论(0) 推荐(0) 编辑
摘要: # encoding:utf-8 import logging import time class Logs: def __init__(self): self.logger = logging.getLogger() def writeLog(self): err = True self.logger.setLevel... 阅读全文
posted @ 2019-09-12 15:27 tec2019 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 配置文件截图如下: 提取主机和URL信息代码: 执行结果: 阅读全文
posted @ 2019-09-11 14:15 tec2019 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 默认用foxfire浏览器,如果用chrome请到官网下载 chromedriver驱动,解压后放到python目录scripts下 然后添加环境变量,在Path下添加chromedrvier的路径。 阅读全文
posted @ 2019-09-04 15:27 tec2019 阅读(332) 评论(0) 推荐(0) 编辑
摘要: Sub createMenus() Dim cmdBar As CommandBar Dim cmdMenu As CommandBarPopup Dim cmdBtn As CommandBarButton Set cmdBar = Application.CommandBars("WorkSheet Menu Bar") 'Set cmdBar = Application.CommandBar 阅读全文
posted @ 2019-08-20 13:36 tec2019 阅读(3126) 评论(0) 推荐(0) 编辑
摘要: 在windows里新建一个计划任务定期去执行以下脚本,脚本会自动执行备份任务,并记录执行结果到日志文件。(执行时间,备份是否成功) 阅读全文
posted @ 2019-08-19 08:56 tec2019 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: Sub ImportData() ' ' Copy Data from one workbook to the Current Workbook ' Place the macro file in the same folder as the source file ' p = ThisWorkbook.Path & "\" f = Dir(p & "*.xlsx")... 阅读全文
posted @ 2019-08-15 15:47 tec2019 阅读(827) 评论(0) 推荐(0) 编辑
摘要: 单账号: 多账号: 详细参见原文https://www.jianshu.com/p/4f0ed762f521 给多个地址发邮件: 阅读全文
posted @ 2019-08-08 09:03 tec2019 阅读(9780) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页