常用python日期、日志、获取内容循环的代码片段

近段时间对shell脚本和python进行了梳理,将一些脚本中常用的内容,考虑多种方法整理出来,形成有用的代码片段,这样就可以在需要的时候直接使用,也可以用于备忘和思考。
本次整理的代码片段有: python中日期、时间常用获取方法; 记录处理日志的logging模块使用;从目录,文件,命名结果中,获取循环条件进行循环。
我将这些有用的代码片段整理在一个Python脚本中了,并且测试可用。
脚本内容如下:

#!/usr/bin/env python
#_*_coding:utf8_*_
#常用日期和时间
import datetime,time
today = datetime.date.today()
yesterday = datetime.date.today() - datetime.timedelta(days=1)
tomorrow = datetime.date.today() + datetime.timedelta(days=1)
Today_nyr = int(datetime.datetime.strftime(today, ‘%Y%m%d‘))
Yesterday_nyr = int(datetime.datetime.strftime(yesterday, ‘%Y%m%d‘))
Tomorrow_nyr = int(datetime.datetime.strftime(tomorrow ,‘%Y%m%d‘))
time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time())) 
print "now time is {time}".format(time=time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time())))
print "normal type , today is {today} , yesterday is {yesterday} , tomorrow is {tommorrow} .".format(today=today,yesterday=yesterday,tommorrow=tomorrow)
print "nyr style , today is {today} , yesterday is {yesterday} , tommrrow is {tommorrow} .".format(today=Today_nyr,yesterday=Yesterday_nyr,tommorrow=Tomorrow_nyr)
#logging.info("now time is {time}".format(time=time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time()))))
#logging.info("normal type , today is {today} , yesterday is {yesterday} , tomorrow is {tommorrow} .".format(today=today,yesterday=yesterday,tommorrow=tomorrow))
#logging.info("nyr style , today is {today} , yesterday is {yesterday} , tommrrow is {tommorrow} .".format(today=Today_nyr,yesterday=Yesterday_nyr,tommorrow=Tomorrow_nyr))
###程序日志模块logging使用
import logging
import os
THISFILEPATH = os.path.dirname(os.path.realpath(__file__))
logfile = ‘{path}/python_test_file.log‘.format(path=THISFILEPATH)
logging.basicConfig(level=logging.DEBUG,
                    format=‘%(asctime)s - %(filename)s - [line:%(lineno)d] %(levelname)s: %(message)s‘,
                    datefmt=‘%Y-%m-%d %H:%M:%S %p‘,
                    filename=logfile,
                    #level=10,
                    filemode=‘a‘)

logging.info("This is a info.\n")
logging.warn("This is a warning.\n")
logging.error("This is a error.\n")
#logging.log("This is a log. \n\n")
logging.debug("This is a debug. \n\n")
logging.critical("This is a critical \n\n\n")

logging.info("now time is {time}".format(time=time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time()))))
logging.info("normal type , today is {today} , yesterday is {yesterday} , tomorrow is {tommorrow} .".format(today=today,yesterday=yesterday,tommorrow=tomorrow))
logging.info("nyr style , today is {today} , yesterday is {yesterday} , tommrrow is {tommorrow} .".format(today=Today_nyr,yesterday=Yesterday_nyr,tommorrow=Tomorrow_nyr))

###从一个目录中,取出所有文件名进行循环
from subprocess import call
File_Dir = "/tmp"
File_List = os.listdir(File_Dir)
for f in File_List:
    if( f[0] == ‘.‘ ):
        continue
    else:
        logging.info("{filename}".format(filename=f))
###读取一个文件的多行,进行循环
#文件读取方法一:
file = open("/tmp/3.txt")
while 1:
    line = file.readline()
    if not line:
        break
    logging.info("this line is :{line}".format(line=line))
#文件读取方法二:
import fileinput
for line in fileinput.input("/tmp/3.txt"):
    logging.info("this line is :{line}  .".format(line=line))
#文件读取方法三:
file = open("/tmp/3.txt")
for line in file:
    logging.info("this line is :{line}  .".format(line=line))

###获取一个shell命令执行结果,进行循环
#获取命令方法一:
import subprocess
shell_cmd = "df -h | awk ‘{print $1}‘"
p = subprocess.Popen("{cmd}".format(cmd=shell_cmd), shell=True, stdout=subprocess.PIPE)
out = p.stdout.readlines()
for line in out:
    print line.strip()
    logging.info(" file system is :{line}  .".format(line=line.strip()))

#获取命令方法二:
for line in subprocess.Popen("df -h | awk ‘{print $1}‘",shell=True,stdout=subprocess.PIPE).stdout.readlines():
    print line.strip()
    logging.info(" file system is :{line}  .".format(line=line.strip()))

上面的脚本,可使用 python 3.py 直接执行。
脚本执行结果如下:

2017-03-02 16:48:43 PM - 3.py - [line:38] INFO: This is a info.
2017-03-02 16:48:43 PM - 3.py - [line:39] WARNING: This is a warning.
2017-03-02 16:48:43 PM - 3.py - [line:40] ERROR: This is a error.
2017-03-02 16:48:43 PM - 3.py - [line:42] DEBUG: This is a debug.

2017-03-02 16:48:43 PM - 3.py - [line:43] CRITICAL: This is a critical

2017-03-02 16:48:43 PM - 3.py - [line:46] INFO: now time is 2017-03-02 16:48:43
2017-03-02 16:48:43 PM - 3.py - [line:47] INFO: normal type , today is 2017-03-02 , yesterday is 2017-03-01 , tomorrow is 2017-03-03 .
2017-03-02 16:48:43 PM - 3.py - [line:48] INFO: nyr style , today is 20170302 , yesterday is 20170301 , tommrrow is 20170303 .
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: 40001501_20170302.csv
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: proc_cpu_result
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: qaucli_022317-18_15_41.log
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: sfcbHttpSocket
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: 1.py
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: sfcbLocalSocket
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: 2.txt
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: null
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: 3.txt
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: 3.py
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: hsperfdata_root
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: updatehbaconf.sh.log
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: proc_cpu_detail.txt
2017-03-02 16:48:43 PM - 3.py - [line:60] INFO: python_test_file.log
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :1
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :2
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :3
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :4
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :5
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :6
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :7
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :8
2017-03-02 16:48:43 PM - 3.py - [line:69] INFO: this line is :9
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :1
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :2
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :3
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :4
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :5
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :6
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :7
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :8
  .
2017-03-02 16:48:43 PM - 3.py - [line:74] INFO: this line is :9
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :1
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :2
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :3
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :4
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :5
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :6
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :7
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :8
  .
2017-03-02 16:48:43 PM - 3.py - [line:79] INFO: this line is :9
  .
2017-03-02 16:48:43 PM - 3.py - [line:90] INFO:  file system is :Filesystem  .
2017-03-02 16:48:43 PM - 3.py - [line:90] INFO:  file system is :/dev/sda2  .
2017-03-02 16:48:43 PM - 3.py - [line:90] INFO:  file system is :tmpfs  .
2017-03-02 16:48:43 PM - 3.py - [line:90] INFO:  file system is :/dev/sda1  .
2017-03-02 16:48:43 PM - 3.py - [line:90] INFO:  file system is :/dev/sda5  .
2017-03-02 16:48:43 PM - 3.py - [line:96] INFO:  file system is :Filesystem  .
2017-03-02 16:48:43 PM - 3.py - [line:96] INFO:  file system is :/dev/sda2  .
2017-03-02 16:48:43 PM - 3.py - [line:96] INFO:  file system is :tmpfs  .
2017-03-02 16:48:43 PM - 3.py - [line:96] INFO:  file system is :/dev/sda1  .
2017-03-02 16:48:43 PM - 3.py - [line:96] INFO:  file system is :/dev/sda5  .
时间: 2024-12-25 04:44:29

常用python日期、日志、获取内容循环的代码片段的相关文章

[Java Code] 时间维度循环生成代码片段

public static void main(String[] args) throws ParseException { String str = "20140301"; String str1 = "20140731"; SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); Calendar start = Calendar.getInstance(); Calendar e

python定时器用法 + 获取脚本所在绝对路径 + 定义日志格式 + shell将脚本直接启动到后

python定时器用法 + 获取脚本所在绝对路径 + 定义日志格式 的测试代码 如果用python写好一个有定时器的脚本后,如果脚本里还读了配置文件,那么配置文件路径如果写死的话,有一天要换了存放目录的话,需要修改脚本的配置文件路径,而且每次都要到脚本所在路径用 nohup 启动到后台很麻烦.用 os.path.split(os.path.realpath(sys.argv[0]))[0] 来获取文件所在的绝对路径,配置文件同样扔到和它同级,这样就可以在任意地方启动,一劳永逸~~~ 此用法站在运

python 日期格式化常用标记

符号 说明             例子    %a  英文星期的简写 Mon  %A  英文星期的完整编写 Monday  %b  英文月份的简写 Jun  %B  英文月份的完整编写 June  %c  显示本地的日期和时间 06/30/14 01:03:17  %I  小时数,取值在01~12之间 01  %j  显示从本年第一天开始到当天的天数 181  %w (week)  显示今天是星期几,0表示星期天 1  %W  显示当天属于本年的第几周,星期一作为一周的第一天进行计算 26  

Python 常用的日期时间命令

今天用到自动添加当前时间,居然把之前的知识忘了,特整理常用的日期时间命令 代码: # 获取当前时间# import time# localtime = time.localtime(time.time())# print("本地时间为:",localtime)# # 获取格式划时间# import time# localtime = time.asctime(time.localtime(time.time()))# print("本地时间为:",localtime

python 分析android日志获取activit加载时间

最近有个需求,需要对比前后两个版本单个activity加载的时间 在android日志中我们可以看到类似INFO/ActivityManager(2486): Displayed activity com.teleca/.ContextMenuActivity: 240 ms (total 41289 ms)的日志,即为Activity的加载时间 首先通过adb logcat > xx.txt获取日志,然后用如下代码分析日志: #-*-coding:utf-8 -*- # 分析android a

Python之日志处理(logging模块)

本节内容 日志相关概念 logging模块简介 使用logging提供的模块级别的函数记录日志 logging模块日志流处理流程 使用logging四大组件记录日志 配置logging的几种方式 向日志输出中添加上下文信息 参考文档 一.日志相关概念 日志是一种可以追踪某些软件运行时所发生事件的方法.软件开发人员可以向他们的代码中调用日志记录相关的方法来表明发生了某些事情.一个事件可以用一个可包含可选变量数据的消息来描述.此外,事件也有重要性的概念,这个重要性也可以被称为严重性级别(level)

python标准日志模块logging的使用方法

最近写一个爬虫系统,需要用到python的日志记录模块,于是便学习了一下.python的标准库里的日志系统从Python2.3开始支持.只要import logging这个模块即可使用.如果你想开发一个日志系统, 既要把日志输出到控制台, 还要写入日志文件,只要这样使用: 复制代码代码如下: import logging# 创建一个loggerlogger = logging.getLogger('mylogger')logger.setLevel(logging.DEBUG)# 创建一个han

常用Linux命令--日志分析

序 在学习使用python处理日志开始阶段,对我阻力最大的莫过于对linux的不熟悉了,有种寸步难行的感觉. 在之后乱学一通之后,发现有点对我颇有益处: 学<鸟哥linux私房菜基础学习篇>,内容不多,但是对linux文件系统和基本组成有个基本的认识很有必要: 熟悉使用vim.开始的时候每次都下载到windowns再编辑实在太傻 了~: 使用ls -l + 通配符查找文件,复杂的查找使用find: 按自己需要学习linux文本领域的三大利器:grep(查找).sed(编辑).awk(分析) 大

常用Python实现

32个常用 Python 实现 1.冒泡排序 lis = [56,12,1,8,354,10,100,34,56,7,23,456,234,-58] def sortport: for i in range(len(lis)-1): for j in range(len(lis)-1-i): if lis[j]>lis[j+1]: lis[j],lis[j+1] = lis[j+1],lis[j] return lis if __name__ == '__main__': sortport pr