代码拉取完成,页面将自动刷新
#!/usr/bin/env python
# -- coding: utf-8 --
"""
Copyright (c) 2018. All rights reserved.
Created by C. L. Wang on 2018/7/9
常用方法
"""
import collections
import glob
import io
import json
import operator
import os
import random
import re
import shutil
import time
from datetime import timedelta, datetime
from itertools import chain
FORMAT_DATE = '%Y%m%d'
FORMAT_DATE_2 = '%Y-%m-%d'
FORMAT_DATE_3 = '%Y%m%d%H%M%S'
def traverse_dir_files(root_dir, ext=None):
"""
列出文件夹中的文件, 深度遍历
:param root_dir: 根目录
:param ext: 后缀名
:return: [文件路径列表, 文件名称列表]
"""
names_list = []
paths_list = []
for parent, _, fileNames in os.walk(root_dir):
for name in fileNames:
if name.startswith('.'): # 去除隐藏文件
continue
if ext: # 根据后缀名搜索
if name.endswith(tuple(ext)):
names_list.append(name)
paths_list.append(os.path.join(parent, name))
else:
names_list.append(name)
paths_list.append(os.path.join(parent, name))
if not names_list: # 文件夹为空
return paths_list, names_list
paths_list, names_list = sort_two_list(paths_list, names_list)
return paths_list, names_list
def sort_two_list(list1, list2, reverse=False):
"""
排序两个列表
:param list1: 列表1
:param list2: 列表2
:param reverse: 逆序
:return: 排序后的两个列表
"""
list1, list2 = (list(t) for t in zip(*sorted(zip(list1, list2), reverse=reverse)))
return list1, list2
def mkdir_if_not_exist(dir_name, is_delete=False):
"""
创建文件夹
:param dir_name: 文件夹
:param is_delete: 是否删除
:return: 是否成功
"""
try:
if is_delete:
if os.path.exists(dir_name):
shutil.rmtree(dir_name)
print('[Info] 文件夹 "%s" 存在, 删除文件夹.' % dir_name)
if not os.path.exists(dir_name):
os.makedirs(dir_name)
print('[Info] 文件夹 "%s" 不存在, 创建文件夹.' % dir_name)
return True
except Exception as e:
print('[Exception] %s' % e)
return False
def datetime_to_str(date, date_format=FORMAT_DATE):
return date.strftime(date_format)
def str_to_datetime(date_str, date_format=FORMAT_DATE):
date = time.strptime(date_str, date_format)
return datetime(*date[:6])
def get_next_half_year():
"""
当前时间的半年前
:return: 半年时间
"""
n_days = datetime.now() - timedelta(days=178)
return n_days.strftime('%Y-%m-%d')
def timestr_2_timestamp(time_str):
"""
时间字符串转换为毫秒
:param time_str: 时间字符串, 2017-10-11
:return: 毫秒, 如1443715200000
"""
return int(time.mktime(datetime.strptime(time_str, "%Y-%m-%d").timetuple()) * 1000)
def create_folder(atp_out_dir):
"""
创建文件夹
:param atp_out_dir: 文件夹
:return:
"""
if os.path.exists(atp_out_dir):
shutil.rmtree(atp_out_dir)
print('文件夹 "%s" 存在,删除文件夹。' % atp_out_dir)
if not os.path.exists(atp_out_dir):
os.makedirs(atp_out_dir)
print('文件夹 "%s" 不存在,创建文件夹。' % atp_out_dir)
def create_file(file_name):
"""
创建文件
:param file_name: 文件名
:return: None
"""
if os.path.exists(file_name):
print("文件存在,删除文件:%s" % file_name)
os.remove(file_name) # 删除已有文件
if not os.path.exists(file_name):
print("文件不存在,创建文件:%s" % file_name)
open(file_name, 'a').close()
def remove_punctuation(line):
"""
去除所有半角全角符号,只留字母、数字、中文
:param line:
:return:
"""
rule = re.compile(u"[^a-zA-Z0-9\u4e00-\u9fa5]")
line = rule.sub('', line)
return line
def check_punctuation(word):
pattern = re.compile(u"[^a-zA-Z0-9\u4e00-\u9fa5]")
if pattern.search(word):
return True
else:
return False
def clean_text(text):
"""
text = "hello world nice ok done \n\n\n hhade\t\rjdla"
result = hello world nice ok done hhade jdla
将多个空格换成一个
:param text:
:return:
"""
if not text:
return ''
return re.sub(r"\s+", " ", text)
def merge_files(folder, merge_file):
"""
将多个文件合并为一个文件
:param folder: 文件夹
:param merge_file: 合并后的文件
:return:
"""
paths, _, _ = listdir_files(folder)
with open(merge_file, 'w') as outfile:
for file_path in paths:
with open(file_path) as infile:
for line in infile:
outfile.write(line)
def random_pick(some_list, probabilities):
"""
根据概率随机获取元素
:param some_list: 元素列表
:param probabilities: 概率列表
:return: 当前元素
"""
x = random.uniform(0, 1)
cumulative_probability = 0.0
item = some_list[0]
for item, item_probability in zip(some_list, probabilities):
cumulative_probability += item_probability
if x < cumulative_probability:
break
return item
def intersection_of_lists(l1, l2):
"""
两个list的交集
:param l1:
:param l2:
:return:
"""
return list(set(l1).intersection(set(l2)))
def safe_div(x, y):
"""
安全除法
:param x: 分子
:param y: 分母
:return: 除法
"""
x = float(x)
y = float(y)
if y == 0.0:
return 0.0
return x / y
def calculate_percent(x, y):
"""
计算百分比
:param x: 分子
:param y: 分母
:return: 百分比
"""
x = float(x)
y = float(y)
return safe_div(x, y) * 100
def invert_dict(d):
"""
当字典的元素不重复时, 反转字典
:param d: 字典
:return: 反转后的字典
"""
return dict((v, k) for k, v in d.iteritems())
def init_num_dict():
"""
初始化值是int的字典
:return:
"""
return collections.defaultdict(int)
def sort_dict_by_value(dict_, reverse=True):
"""
按照values排序字典
:param dict_: 待排序字典
:param reverse: 默认从大到小
:return: 排序后的字典
"""
return sorted(dict_.items(), key=operator.itemgetter(1), reverse=reverse)
def get_current_time_str():
"""
输入当天的日期格式, 201707181137
:return: 201707181137
"""
return datetime.now().strftime('%Y%m%d%H%M%S')
def get_current_time_for_show():
"""
输入当天的日期格式, 20170718_1137
:return: 20170718_1137
"""
return datetime.now().strftime('%Y-%m-%d %H:%M:%S')
def get_current_day_str():
"""
输入当天的日期格式, 20170718
:return: 20170718
"""
return datetime.now().strftime('%Y%m%d')
def remove_line_of_file(ex_line, file_name):
ex_line = ex_line.replace('\n', '')
lines = read_file(file_name)
out_file = open(file_name, "w")
for line in lines:
line = line.replace('\n', '') # 确认编码格式
if line != ex_line:
out_file.write(line + '\n')
out_file.close()
def map_to_ordered_list(data_dict, reverse=True):
"""
将字段根据Key的值转换为有序列表
:param data_dict: 字典
:param reverse: 默认从大到小
:return: 有序列表
"""
return sorted(data_dict.items(), key=operator.itemgetter(1), reverse=reverse)
def map_to_index(data_list, all_list):
"""
转换为one-hot形式
:param data_list:
:param all_list:
:return:
"""
index_dict = {l.strip(): i for i, l in enumerate(all_list)} # 字典
index = index_dict[data_list.strip()]
return index
def n_lines_of_file(file_name):
"""
获取文件行数
:param file_name: 文件名
:return: 数量
"""
return sum(1 for line in open(file_name))
def remove_file(file_name):
"""
删除文件
:param file_name: 文件名
:return: 删除文件
"""
if os.path.exists(file_name):
os.remove(file_name)
def find_sub_in_str(string, sub_str):
"""
子字符串的起始位置
:param string: 字符串
:param sub_str: 子字符串
:return: 当前字符串
"""
return [m.start() for m in re.finditer(sub_str, string)]
def list_has_sub_str(string_list, sub_str):
"""
字符串是否在子字符串中
:param string_list: 字符串列表
:param sub_str: 子字符串列表
:return: 是否在其中
"""
for string in string_list:
if sub_str in string:
return True
return False
def remove_last_char(str_value, num):
"""
删除最后的字符串
:param str_value: 字符串
:param num: 删除位置
:return: 新的字符串
"""
str_list = list(str_value)
return "".join(str_list[:(-1 * num)])
def read_file(data_file, mode='more'):
"""
读文件, 原文件和数据文件
:return: 单行或数组
"""
try:
with open(data_file, 'r') as f:
if mode == 'one':
output = f.read()
return output
elif mode == 'more':
output = f.readlines()
output = [o.strip() for o in output]
return output
else:
return list()
except IOError:
return list()
def read_file_utf8(data_file, mode='more'):
"""
读文件, 原文件和数据文件
:return: 单行或数组
"""
try:
with open(data_file, 'r', encoding='utf8') as f:
if mode == 'one':
output = f.read()
return output
elif mode == 'more':
output = f.readlines()
output = [o.strip() for o in output]
return output
else:
return list()
except IOError:
return list()
def read_file_gb2312(data_file, mode='more'):
"""
读文件, 原文件和数据文件
:return: 单行或数组
"""
try:
with open(data_file, 'r', encoding='gb2312') as f:
if mode == 'one':
output = f.read()
return output
elif mode == 'more':
output = f.readlines()
output = [o.strip() for o in output]
return output
else:
return list()
except IOError:
return list()
def find_word_position(original, word):
"""
查询字符串的位置
:param original: 原始字符串
:param word: 单词
:return: [起始位置, 终止位置]
"""
u_original = original.decode('utf-8')
u_word = word.decode('utf-8')
start_indexes = find_sub_in_str(u_original, u_word)
end_indexes = [x + len(u_word) - 1 for x in start_indexes]
return zip(start_indexes, end_indexes)
def write_list_to_file(file_name, data_list):
"""
将列表写入文件
:param file_name: 文件名
:param data_list: 数据列表
:return: None
"""
for data in data_list:
write_line(file_name, data)
def write_line_utf8(file_name, line):
"""
将行数据写入文件
:param file_name: 文件名
:param line: 行数据
:return: None
"""
if file_name == "":
return
with io.open(file_name, "a+", encoding='utf8') as fs:
if type(line) is (tuple or list):
fs.write("%s\n" % ", ".join(line))
else:
fs.write("%s\n" % line)
def write_line(file_name, line):
"""
将行数据写入文件
:param file_name: 文件名
:param line: 行数据
:return: None
"""
if file_name == "":
return
with io.open(file_name, "a+") as fs:
if type(line) is (tuple or list):
fs.write("%s\n" % ", ".join(line))
else:
fs.write("%s\n" % line)
def show_set(data_set):
"""
显示集合数据
:param data_set: 数据集
:return: None
"""
data_list = list(data_set)
show_string(data_list)
def show_string(obj):
"""
用于显示UTF-8字符串, 尤其是含有中文的.
:param obj: 输入对象, 可以是列表或字典
:return: None
"""
print(list_2_utf8(obj))
def list_2_utf8(obj):
"""
用于显示list汉字
:param obj:
:return:
"""
return json.dumps(obj, encoding="UTF-8", ensure_ascii=False)
def listdir_no_hidden(root_dir):
"""
显示顶层文件夹
:param root_dir: 根目录
:return: 文件夹列表
"""
return glob.glob(os.path.join(root_dir, '*'))
def listdir_files(root_dir, ext=None):
"""
列出文件夹中的文件
:param root_dir: 根目录
:param ext: 类型
:return: [文件路径(相对路径), 文件夹名称, 文件名称]
"""
names_list = []
paths_list = []
for parent, _, fileNames in os.walk(root_dir):
for name in fileNames:
if name.startswith('.'):
continue
if ext:
if name.endswith(tuple(ext)):
names_list.append(name)
paths_list.append(os.path.join(parent, name))
else:
names_list.append(name)
paths_list.append(os.path.join(parent, name))
return paths_list, names_list
def time_elapsed(start, end):
"""
输出时间
:param start: 开始
:param end: 结束
:return:
"""
hours, rem = divmod(end - start, 3600)
minutes, seconds = divmod(rem, 60)
return "{:0>2}:{:0>2}:{:05.2f}".format(int(hours), int(minutes), seconds)
def batch(iterable, n=1):
"""
批次迭代器
:param iterable: 迭代器
:param n: 次数
:return:
"""
l = len(iterable)
for ndx in range(0, l, n):
yield iterable[ndx:min(ndx + n, l)]
def unicode_str(s):
"""
将字符串转换为unicode
:param s: 字符串
:return: unicode字符串
"""
try:
s = str(s, 'utf-8')
except Exception as e:
s = s
return s
def unfold_nested_list(data_list):
"""
展开嵌套的list
:param data_list: 数据list
:return: 展开list
"""
return list(chain.from_iterable(data_list))
def unicode_list(data_list):
"""
将list转换为unicode list
:param data_list: 数量列表
:return: unicode列表
"""
return [unicode_str(s) for s in data_list]
def is_non_zero_file(fpath):
"""
判断空文件
"""
return os.path.isfile(fpath) and os.path.getsize(fpath) > 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。