09 2022 档案
摘要:# -*- coding: utf-8 -*-# class Point: def __init__(self, xy): self.x = xy[0] self.y = xy[1] def line_intersection(line1, line2): """ :param line1: 线段一
阅读全文
摘要:# -*- coding: utf-8 -*-# import math lines_dic = { "正常": [ [[0, 0], [1, 1], [2, 2], [3, 3]], [[0, 0], [1, 1], [1, 2], [3, 5]] ], "勾": [ [[0, 0], [1, 1
阅读全文
摘要:def convert(self, pose_list, output): data_list = self.parse_pose(pose_list) time_z_dic = {} font2 = {'family': 'Times New Roman', 'weight': 'normal',
阅读全文
摘要:import requests import shutil def download_file(url, local_filename): """ :param url: url连接 :param local_filename: 下载后保存文件名字 """ with requests.get(url
阅读全文