import sys import xlrd import pymysql import math import json from collections import OrderedDict # json 转换成对像 class JSONObject: def __init__(self, d): self.__dict__ = d # 异常处理 class MyError(Exception): def __init__(self, v): self.value = v def __str…