当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
0 Star 0 Fork 0

chengruhui/python
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
csv-md5.py 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
ruhui.cheng 提交于 2019-03-21 19:22 . Project init
import os, csv
import hashlib
input_path = '/home/crh/temp2018/local/mac_addr_data/output'
output_path = '/home/crh/temp2018/local/mac_addr_data/output-md5'
headers = ['mac','mac_company','mac_time','mac_lat','mac_lon','geo_hash5','geo_hash6','geo_hash7','geo_hash8','geo_hash9','geo_category','client_id']
class csv_md5():
def run(self):
for maindir, subdir, file_name_list in os.walk(input_path):
for filename in file_name_list:
input_file = os.path.join(maindir, filename)
dt = self.file_read(input_file)
output_dir = maindir.replace('output','output-md5')
if (os.path.exists(output_dir) == False):
os.makedirs(output_dir)
output_file = os.path.join(output_dir,filename)
self.file_write(output_file,dt)
def file_read(self, input_file):
ls =[]
with open(input_file) as fr:
reader = csv.DictReader(fr)
for row in reader:
data = row['mac']
data = data.replace(':','')
hash = hashlib.md5(data.encode('utf-8'))
row['mac'] = hash.hexdigest()
ls.append(row)
return ls
def file_write(self, output_file,datas):
with open(output_file,'w',newline='') as fw:
writer = csv.DictWriter(fw,headers)
writer.writeheader()
writer.writerows(datas)
if __name__ == "__main__":
obj = csv_md5()
obj.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chengruhui/python.git
git@gitee.com:chengruhui/python.git
chengruhui
python
python
master

搜索帮助