摘要: import xlsxwriter import numpy as np def write_excel(order_list, path, sheet_name='Sheet1'): book = xlsxwriter.Workbook(path) table = book.add_workshe 阅读全文
posted @ 2020-10-16 17:07 不可描述的细节 阅读(109) 评论(0) 推荐(0)
摘要: import os import pandas as pd def merge_excel(old_dir_path, new_path): file_list = [] for file in os.listdir(old_dir_path): file_path = os.path.join(p 阅读全文
posted @ 2020-10-16 17:05 不可描述的细节 阅读(116) 评论(0) 推荐(0)
摘要: import json import re import requests from urllib.parse import quote from bs4 import BeautifulSoup from pyquery import PyQuery as pq class BaiDuPerson 阅读全文
posted @ 2020-10-16 16:59 不可描述的细节 阅读(186) 评论(0) 推荐(0)