Python
文章平均质量分 57
skywin88
这个作者很懒,什么都没留下…
展开
-
python根据后缀筛选文件并读取内容
#!/usr/bin/python# -*- coding: utf-8 -*-# --------------------------------------------------# @Time : 2020/12/20 18:40# @Author : skywin886# @File : ls_and_cat.py# @Version : 1.0# --------------------------------------------------# ---------------原创 2020-12-22 09:56:55 · 1098 阅读 · 2 评论 -
vscode推送代码至gitlab
1.初始化存储库2.输入tag回车提交3.源代码添加远程仓库3.输入gitlab上仓库地址4.登录gitlab添加sshkey(已添加则忽略)打开git bashcd进入代码文件夹git initgit remote add origin http://xxxxxx/xx/wildcard.git5.之后即可使用vscode的各项git功能...原创 2020-11-23 10:33:44 · 4732 阅读 · 0 评论 -
python时间向前取整方法
#统计区间(前几小时)gtHours = "1"#开始时间(整点执行)def beforeHoursdate(hours, date_format='%Y-%m-%d %H:%M:%S'): hours = int(hours) tStart = time.time() - hours*60*60 tStart = time.strftime('%Y-%m-%dT%H:%M:%S+08:00', time.localtime(tStart)) return tStar原创 2020-11-19 13:02:28 · 3380 阅读 · 1 评论 -
python模糊查询es数据库脚本
使用wildcard方法查询elasticsearch数据库,匹配查询时间段、index、内容等,脚本如下#!/usr/bin/python# -*- coding: utf-8 -*-# --------------------------------------------------# @Time : 2020/10/10 11:40# @Author : skywin88# @File : elasticsearch_wildcard.py# @Version : 1.0# ----原创 2020-10-10 17:41:36 · 1400 阅读 · 0 评论 -
日志循环清理脚本Python
# -*- coding: utf-8 -*-# --------------------------------------------------# @Time : 2020/5/10 9:59 # @Author : skywin886# @File : auto_cyclic_clean.py# @Version : 1.0.0# --------------------------------------------------# -------------------------原创 2020-05-12 03:18:57 · 397 阅读 · 0 评论 -
linux批量修改文件名后缀
批量修改后缀为.bak的文件为原文件名例如AuthLogs.log.bak执行后变为AuthLogs.log# -*- coding: utf-8 -*-import os,syspath=sys.argv[1]def main(): for file in os.listdir(path): #print file #以.bak后缀结尾 ...原创 2020-05-06 01:27:46 · 1911 阅读 · 0 评论 -
树莓派gpio+python遥控三轮小车
使用四按键 硬件遥控模块crontab -e添加一行设置脚本开机启动@reboot python /home/pi/car_tele.py# -*- coding: utf-8 -*-#将RPi.GPIO 模块映射为GPIO来使用from RPi import GPIO#引入time模块import time#引入多线程模块import threading #采用BCM引...原创 2020-04-26 18:18:32 · 1325 阅读 · 0 评论 -
统计Linux进程占用内存py
#!/usr/bin/env python– coding: utf-8 –--------------------------------------------------@Time : 2019/6/17 9:59@Author :@File : totalmem.py@Version : 1.0.0---------------------------------------...原创 2019-10-18 09:58:33 · 296 阅读 · 0 评论