#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ @author: yinzhuoqun @site: http://zhuoqun.info/ @email: yin@zhuoqun.info @time: 2019/4/22 15:22 """ import os import time import requests import pandas as pd # pip install pandas DESKTOP = os.path.join(os.path.expanduser("~"), "Desktop") # 桌面 class FormToMany: def __init__(self, file_path, file_save_path=DESKTOP, api_url=None): self.file_path = file_path self.file_save_path = file_save_path self.api_url = api_url def to_json(self): """ 转变成 json 对象 :return: """ if self.file_path.endswith(".csv"): data = pd.read_csv(self.file_path, encoding='gb2312') else: data = pd.read_excel(self.file_path) data = data.to_json(orient="index") return data def to_json_file(self): """ 保存到 json 文件 :return: """ current_date = time.strftime("%Y%m") if self.file_path.endswith(".csv"): # 违规 file_save_name = "order_illegal_%s.json" % current_date else: # 维权 file_save_name = "order_rights_%s.json" % current_date try: with open(os.path.join(self.file_save_path, file_save_name), "w") as f: f.write(self.to_json()) print("提示:数据导出成功") return True except Exception as e: print(str(e)) return False def to_json_post(self): """ 上传 json 对象 :return: """ if self.file_path.endswith(".csv"): kind = "csv" else: kind = "excel" body = { "type": kind, "data": self.to_json() } try: req = requests.post(self.api_url, data=body, timeout=180) except Exception as e: print(str(e)) return False else: if req.status_code == 200: print("数据上传成功") return True else: print("数据上传结束") return False if __name__ == "__main__": file_path = r"C:\Users\Desktop\orders.csv" # file_path = r"C:\Users\Desktop\RefundDetailReport-2019-06-25.xls" data = FormToMany(file_path=file_path) data.to_json_file()
Zhuoyuebiji ( 广东·深圳 )
🚩成长的时候,能帮有需要的你
我是 卓越笔记,软件测试工作者,热爱互联网,喜欢琢磨,遇到问题就一定要找到答案。我的博客主要记录学习中遇到的知识点和遇到的问题及问题的解决方法。欢迎同样热爱互联网的小伙伴们交换友链,一起探索互联网的世界 😊
为向您提供更好的服务,我们使用 Cookies。更多相关信息请查阅我们的 隐私政策 和 免责声明