mdbq 3.7.16__py3-none-any.whl → 3.7.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mdbq/aggregation/optimize_data.py +1 -11
- mdbq/aggregation/query_data.py +15 -19
- mdbq/config/default.py +16 -83
- mdbq/config/myconfig.py +1 -1
- mdbq/config/products.py +1 -12
- mdbq/config/set_support.py +0 -8
- mdbq/other/download_sku_picture.py +1 -13
- mdbq/redis/getredis.py +5 -17
- mdbq/spider/aikucun.py +1 -12
- {mdbq-3.7.16.dist-info → mdbq-3.7.18.dist-info}/METADATA +1 -1
- {mdbq-3.7.16.dist-info → mdbq-3.7.18.dist-info}/RECORD +13 -13
- {mdbq-3.7.16.dist-info → mdbq-3.7.18.dist-info}/WHEEL +0 -0
- {mdbq-3.7.16.dist-info → mdbq-3.7.18.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,6 @@
|
|
1
1
|
# -*- coding: UTF-8 –*-
|
2
2
|
from mdbq.mysql import mysql
|
3
3
|
from mdbq.config import default
|
4
|
-
import socket
|
5
4
|
import subprocess
|
6
5
|
import psutil
|
7
6
|
import time
|
@@ -10,16 +9,7 @@ import logging
|
|
10
9
|
"""
|
11
10
|
对指定数据库所有冗余数据进行清理
|
12
11
|
"""
|
13
|
-
hostname =
|
14
|
-
local = 'remoto'
|
15
|
-
targe_host = socket.gethostname()
|
16
|
-
if targe_host == 'xigua_lx':
|
17
|
-
local = 'local' # 直接指向局域网地址
|
18
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
19
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
20
|
-
local = 'local' # 直接指向局域网地址
|
21
|
-
elif targe_host == 'MacBookPro':
|
22
|
-
local = 'local' # 直接指向局域网地址
|
12
|
+
targe_host, hostname, local = default.return_default_host()
|
23
13
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
24
14
|
if not username:
|
25
15
|
logger.info(f'找不到主机:')
|
mdbq/aggregation/query_data.py
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# -*- coding: UTF-8 –*-
|
2
2
|
import re
|
3
|
-
import socket
|
4
3
|
from mdbq.mysql import mysql
|
5
4
|
from mdbq.mysql import s_query
|
6
5
|
from mdbq.aggregation import optimize_data
|
@@ -21,23 +20,12 @@ import concurrent.futures
|
|
21
20
|
import traceback
|
22
21
|
import logging
|
23
22
|
import sys
|
24
|
-
import socket
|
25
23
|
|
26
24
|
"""
|
27
25
|
|
28
26
|
"""
|
29
27
|
dirname = os.path.join(os.path.realpath(os.path.dirname(sys.argv[0])), 'support')
|
30
|
-
hostname =
|
31
|
-
local = 'remoto'
|
32
|
-
targe_host = socket.gethostname()
|
33
|
-
|
34
|
-
if targe_host == 'xigua_lx':
|
35
|
-
local = 'local' # 直接指向局域网地址
|
36
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
37
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
38
|
-
local = 'local' # 直接指向局域网地址
|
39
|
-
elif targe_host == 'MacBookPro':
|
40
|
-
local = 'local' # 直接指向局域网地址
|
28
|
+
targe_host, hostname, local = default.return_default_host()
|
41
29
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
42
30
|
logger = logging.getLogger(__name__)
|
43
31
|
|
@@ -1466,9 +1454,13 @@ class MysqlDatasQuery:
|
|
1466
1454
|
end_date=end_date,
|
1467
1455
|
projection=projection,
|
1468
1456
|
)
|
1469
|
-
df.drop_duplicates(
|
1470
|
-
|
1471
|
-
|
1457
|
+
# df.drop_duplicates(
|
1458
|
+
# subset=['日期', '店铺名称', '商品id', '商品访客数'], keep='last',
|
1459
|
+
# inplace=True, ignore_index=True)
|
1460
|
+
# 保留最新日期的数据
|
1461
|
+
idx = df.groupby(['日期', '店铺名称', '商品id'])['更新时间'].idxmax()
|
1462
|
+
df = df.loc[idx]
|
1463
|
+
|
1472
1464
|
df_set['商品id'] = df_set['商品id'].astype('int64')
|
1473
1465
|
df_set = df_set[['商品id', '上市年份']]
|
1474
1466
|
df['商品id'] = df['商品id'].astype('int64')
|
@@ -3864,13 +3856,17 @@ def main(days=150, months=3):
|
|
3864
3856
|
)
|
3865
3857
|
|
3866
3858
|
|
3859
|
+
def test():
|
3860
|
+
sdq = MysqlDatasQuery() # 实例化数据处理类
|
3861
|
+
sdq.months = 1 # 设置数据周期, 1 表示近 2 个月
|
3862
|
+
sdq.update_service = True # 调试时加,true: 将数据写入 mysql 服务器
|
3863
|
+
sdq.spph(db_name='聚合数据', table_name='天猫_商品排行')
|
3864
|
+
|
3867
3865
|
if __name__ == '__main__':
|
3868
3866
|
main(
|
3869
3867
|
days=150, # 清理聚合数据的日期长度
|
3870
3868
|
months=3 # 生成聚合数据的长度
|
3871
3869
|
)
|
3872
3870
|
|
3873
|
-
|
3874
|
-
# sdq.months = 20 # 设置数据周期, 1 表示近 2 个月
|
3875
|
-
# sdq.tg_by_day(db_name='聚合数据', table_name='多店推广场景_按日聚合')
|
3871
|
+
|
3876
3872
|
|
mdbq/config/default.py
CHANGED
@@ -10,6 +10,21 @@ support_path = os.path.join(os.path.realpath(os.path.dirname(sys.argv[0])), 'sup
|
|
10
10
|
logger = logging.getLogger(__name__)
|
11
11
|
|
12
12
|
|
13
|
+
def return_default_host():
|
14
|
+
targe_host = socket.gethostname()
|
15
|
+
hostname = 'xigua_lx' # 正常情况下 spider_tg 只会在 xigua_lx 或者 xigua1 运行,且都指向主库
|
16
|
+
local = 'remoto'
|
17
|
+
|
18
|
+
if targe_host == 'xigua_lx':
|
19
|
+
local = 'local' # 直接指向局域网地址
|
20
|
+
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
21
|
+
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
22
|
+
local = 'local' # 直接指向局域网地址
|
23
|
+
elif targe_host == 'MacBookPro':
|
24
|
+
local = 'local' # 直接指向局域网地址
|
25
|
+
return targe_host, hostname, local
|
26
|
+
|
27
|
+
|
13
28
|
def get_mysql_engine(platform='Windows', hostname='xigua_lx', sql='mysql', local='remoto', config_file=None):
|
14
29
|
if not config_file:
|
15
30
|
config_file = os.path.join(support_path, 'my_config.txt')
|
@@ -28,76 +43,7 @@ def get_mysql_engine(platform='Windows', hostname='xigua_lx', sql='mysql', local
|
|
28
43
|
return _engine, username, password, host, port
|
29
44
|
|
30
45
|
|
31
|
-
def
|
32
|
-
"""
|
33
|
-
从配置文件数据中获取: username, password, host, port
|
34
|
-
:param conf_data:
|
35
|
-
:return:
|
36
|
-
"""
|
37
|
-
return conf_data['username'], conf_data['password'], conf_data['host'], conf_data['port']
|
38
|
-
|
39
|
-
|
40
|
-
def return_one_engine(conf_data):
|
41
|
-
"""
|
42
|
-
返回一个 engine
|
43
|
-
"""
|
44
|
-
username, password, host, port = return_host(conf_data)
|
45
|
-
return mysql.MysqlUpload(username=username, password=password, host=host, port=port, charset='utf8mb4')
|
46
|
-
|
47
|
-
|
48
|
-
def get_hostname(platform, hostname, sql, local):
|
49
|
-
"""
|
50
|
-
返回一个主机的: username, password, host, port
|
51
|
-
"""
|
52
|
-
config_file = os.path.join(support_path, 'my_config.txt')
|
53
|
-
with open(config_file, 'r', encoding='utf-8') as f:
|
54
|
-
conf = json.load(f)
|
55
|
-
conf_data = conf[platform][hostname][sql][local]
|
56
|
-
return return_host(conf_data)
|
57
|
-
|
58
|
-
|
59
|
-
def get_engine_bak():
|
60
|
-
"""
|
61
|
-
要删除
|
62
|
-
"""
|
63
|
-
if not os.path.isdir(support_path):
|
64
|
-
print(f'缺少配置文件,无法读取配置文件: {file}')
|
65
|
-
return
|
66
|
-
config_file = os.path.join(support_path, 'my_config.txt')
|
67
|
-
|
68
|
-
with open(config_file, 'r', encoding='utf-8') as f:
|
69
|
-
conf = json.load(f)
|
70
|
-
|
71
|
-
if socket.gethostname() == 'company' or socket.gethostname() == 'Mac2.local':
|
72
|
-
conf_data = conf['Windows']['xigua_lx']['mysql']['remoto']
|
73
|
-
m_engine = return_one_engine(conf_data=conf_data)
|
74
|
-
conf_data = conf['Windows']['company']['mysql']['local']
|
75
|
-
company_engine = return_one_engine(conf_data=conf_data)
|
76
|
-
username, password, host, port = return_host(conf_data) # 顺序不能乱
|
77
|
-
conf_data = conf['Windows']['xigua_ts']['mysql']['remoto']
|
78
|
-
ts_engine = return_one_engine(conf_data=conf_data)
|
79
|
-
elif socket.gethostname() == 'xigua_lx' or socket.gethostname() == 'xigua1' or socket.gethostname() == 'MacBookPro':
|
80
|
-
conf_data = conf['Windows']['xigua_lx']['mysql']['local']
|
81
|
-
m_engine = return_one_engine(conf_data=conf_data)
|
82
|
-
username, password, host, port = return_host(conf_data) # 顺序不能乱
|
83
|
-
conf_data = conf['Windows']['company']['mysql']['remoto']
|
84
|
-
company_engine = return_one_engine(conf_data=conf_data)
|
85
|
-
conf_data = conf['Windows']['xigua_ts']['mysql']['remoto']
|
86
|
-
ts_engine = return_one_engine(conf_data=conf_data)
|
87
|
-
|
88
|
-
else:
|
89
|
-
conf_data = conf['Windows']['xigua_lx']['mysql']['remoto']
|
90
|
-
m_engine = return_one_engine(conf_data=conf_data)
|
91
|
-
username, password, host, port = return_host(conf_data) # 顺序不能乱
|
92
|
-
conf_data = conf['Windows']['company']['mysql']['remoto']
|
93
|
-
company_engine = return_one_engine(conf_data=conf_data)
|
94
|
-
conf_data = conf['Windows']['xigua_ts']['mysql']['remoto']
|
95
|
-
ts_engine = return_one_engine(conf_data=conf_data)
|
96
|
-
|
97
|
-
return m_engine, company_engine, ts_engine, (username, password, host, port)
|
98
|
-
|
99
|
-
|
100
|
-
def write_back(datas):
|
46
|
+
def write_back_bak(datas):
|
101
47
|
""" 将数据写回本地 """
|
102
48
|
if not os.path.isdir(support_path):
|
103
49
|
print(f'缺少配置文件,无法读取配置文件: {file}')
|
@@ -110,16 +56,3 @@ def write_back(datas):
|
|
110
56
|
|
111
57
|
if __name__ == '__main__':
|
112
58
|
pass
|
113
|
-
username, password, host, port = get_hostname(
|
114
|
-
platform='Windows',
|
115
|
-
hostname='xigua_lx',
|
116
|
-
sql='mysql',
|
117
|
-
local='remoto'
|
118
|
-
)
|
119
|
-
res = get_mysql_engine(
|
120
|
-
platform='Windows',
|
121
|
-
hostname='xigua_lx',
|
122
|
-
sql='mysql',
|
123
|
-
local='remoto'
|
124
|
-
)
|
125
|
-
print(res)
|
mdbq/config/myconfig.py
CHANGED
@@ -21,7 +21,7 @@ def main():
|
|
21
21
|
|
22
22
|
|
23
23
|
def write_back(datas):
|
24
|
-
""" 将数据写回本地 """
|
24
|
+
""" 将数据写回本地 all-datas.py 调用 """
|
25
25
|
# support_path = set_support.SetSupport(dirname='support').dirname
|
26
26
|
file = os.path.join(support_path, 'my_config.txt')
|
27
27
|
with open(file, 'w+', encoding='utf-8') as f:
|
mdbq/config/products.py
CHANGED
@@ -3,7 +3,6 @@ import json
|
|
3
3
|
import os
|
4
4
|
import platform
|
5
5
|
import getpass
|
6
|
-
import socket
|
7
6
|
import pandas as pd
|
8
7
|
from mdbq.mysql import mysql
|
9
8
|
from mdbq.config import default
|
@@ -13,17 +12,7 @@ from numpy.ma.core import product
|
|
13
12
|
天猫货品年份基准对照
|
14
13
|
用于聚合数据,通过此数据表进一步可确定商品上架年月
|
15
14
|
"""
|
16
|
-
hostname =
|
17
|
-
local = 'remoto'
|
18
|
-
targe_host = socket.gethostname()
|
19
|
-
|
20
|
-
if targe_host == 'xigua_lx':
|
21
|
-
local = 'local' # 直接指向局域网地址
|
22
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
23
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
24
|
-
local = 'local' # 直接指向局域网地址
|
25
|
-
elif targe_host == 'MacBookPro':
|
26
|
-
local = 'local' # 直接指向局域网地址
|
15
|
+
targe_host, hostname, local = default.return_default_host()
|
27
16
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
28
17
|
if not username:
|
29
18
|
print(f'找不到主机1:')
|
mdbq/config/set_support.py
CHANGED
@@ -13,14 +13,6 @@ support 文件夹包含很多配置类文件,是程序必不可少的依赖
|
|
13
13
|
class SetSupport:
|
14
14
|
def __init__(self, dirname):
|
15
15
|
self.dirname = os.path.join(os.path.realpath(os.path.dirname(sys.argv[0])), dirname)
|
16
|
-
# if platform.system() == 'Windows':
|
17
|
-
# self.dirname = f'C:\\数据中心2\\support'
|
18
|
-
# elif platform.system() == 'Darwin':
|
19
|
-
# self.dirname = f'/Users/{getpass.getuser()}/数据中心2/support'
|
20
|
-
# else:
|
21
|
-
# self.dirname = '数据中心2/support' # 没有用, 可以删
|
22
|
-
# if not os.path.isdir(self.dirname):
|
23
|
-
# os.mkdir(self.dirname)
|
24
16
|
|
25
17
|
|
26
18
|
if __name__ == '__main__':
|
@@ -4,7 +4,6 @@ import getpass
|
|
4
4
|
import json
|
5
5
|
import os
|
6
6
|
import platform
|
7
|
-
import socket
|
8
7
|
import random
|
9
8
|
from dateutil.relativedelta import relativedelta
|
10
9
|
import re
|
@@ -50,18 +49,7 @@ upload_path = os.path.join(D_PATH, '数据上传中心') # 此目录位于下
|
|
50
49
|
if not os.path.exists(upload_path): # 数据中心根目录
|
51
50
|
os.makedirs(upload_path)
|
52
51
|
|
53
|
-
hostname =
|
54
|
-
local = 'remoto'
|
55
|
-
targe_host = socket.gethostname()
|
56
|
-
|
57
|
-
if targe_host == 'xigua_lx':
|
58
|
-
local = 'local' # 直接指向局域网地址
|
59
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
60
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
61
|
-
local = 'local' # 直接指向局域网地址
|
62
|
-
elif targe_host == 'MacBookPro':
|
63
|
-
local = 'local' # 直接指向局域网地址
|
64
|
-
|
52
|
+
targe_host, hostname, local = default.return_default_host()
|
65
53
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
66
54
|
if not username:
|
67
55
|
print(f'找不到主机:')
|
mdbq/redis/getredis.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# -*- coding: UTF-8 –*-
|
2
|
-
import os
|
2
|
+
import os
|
3
3
|
import sys
|
4
4
|
import random
|
5
5
|
import redis
|
6
|
-
import socket
|
7
6
|
from mdbq.mysql import s_query
|
8
7
|
from mdbq.config import default
|
9
8
|
import pandas as pd
|
@@ -13,22 +12,10 @@ import datetime
|
|
13
12
|
import threading
|
14
13
|
import logging
|
15
14
|
from logging.handlers import RotatingFileHandler
|
16
|
-
import getpass
|
17
|
-
import platform
|
18
15
|
from decimal import Decimal
|
19
16
|
import orjson
|
20
17
|
|
21
|
-
hostname =
|
22
|
-
local = 'remoto'
|
23
|
-
targe_host = socket.gethostname()
|
24
|
-
|
25
|
-
if targe_host == 'xigua_lx':
|
26
|
-
local = 'local' # 直接指向局域网地址
|
27
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
28
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
29
|
-
local = 'local' # 直接指向局域网地址
|
30
|
-
elif targe_host == 'MacBookPro':
|
31
|
-
local = 'local' # 直接指向局域网地址
|
18
|
+
targe_host, hostname, local = default.return_default_host()
|
32
19
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
33
20
|
|
34
21
|
# 获取当前模块的日志记录器
|
@@ -37,6 +24,8 @@ logger = logging.getLogger(__name__)
|
|
37
24
|
# 创建一个文件处理器,用于将日志写入文件
|
38
25
|
dir_path = os.path.realpath(os.path.dirname(sys.argv[0]))
|
39
26
|
log_file = os.path.join(dir_path, 'logfile', 'redis.log')
|
27
|
+
if not os.path.isdir(os.path.join(dir_path, 'logfile')):
|
28
|
+
os.mkdir(os.path.join(dir_path, 'logfile'))
|
40
29
|
file_handler = RotatingFileHandler(log_file, maxBytes=3 * 1024 * 1024, backupCount=10, encoding='utf-8') # 保留10个备份文件
|
41
30
|
file_handler.setLevel(logging.INFO) # 设置文件处理器的日志级别
|
42
31
|
|
@@ -644,5 +633,4 @@ if __name__ == '__main__':
|
|
644
633
|
# )
|
645
634
|
# logger.info(df)
|
646
635
|
#
|
647
|
-
|
648
|
-
logger.info(socket.gethostname())
|
636
|
+
pass
|
mdbq/spider/aikucun.py
CHANGED
@@ -22,7 +22,6 @@ from mdbq.other import ua_sj
|
|
22
22
|
from mdbq.mysql import mysql
|
23
23
|
from mdbq.mysql import s_query
|
24
24
|
from mdbq.config import default
|
25
|
-
import socket
|
26
25
|
|
27
26
|
warnings.filterwarnings('ignore')
|
28
27
|
|
@@ -38,17 +37,7 @@ else:
|
|
38
37
|
D_PATH = str(pathlib.Path(f'/Users/{getpass.getuser()}/Downloads'))
|
39
38
|
upload_path = os.path.join(D_PATH, '数据上传中心', '爱库存') # 此目录位于下载文件夹
|
40
39
|
|
41
|
-
hostname =
|
42
|
-
local = 'remoto'
|
43
|
-
targe_host = socket.gethostname()
|
44
|
-
|
45
|
-
if targe_host == 'xigua_lx':
|
46
|
-
local = 'local' # 直接指向局域网地址
|
47
|
-
elif targe_host in ['localhost.localdomain', 'xigua1']:
|
48
|
-
targe_host = 'xigua1' # 修正 Linux 系统用户名
|
49
|
-
local = 'local' # 直接指向局域网地址
|
50
|
-
elif targe_host == 'MacBookPro':
|
51
|
-
local = 'local' # 直接指向局域网地址
|
40
|
+
targe_host, hostname, local = default.return_default_host()
|
52
41
|
m_engine, username, password, host, port = default.get_mysql_engine(platform='Windows', hostname=hostname, sql='mysql', local=local, config_file=None)
|
53
42
|
print(username, password, host, port)
|
54
43
|
# 实例化一个数据查询类,用来获取 cookies 表数据
|
@@ -1,15 +1,15 @@
|
|
1
1
|
mdbq/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
|
2
2
|
mdbq/__version__.py,sha256=y9Mp_8x0BCZSHsdLT_q5tX9wZwd5QgqrSIENLrb6vXA,62
|
3
3
|
mdbq/aggregation/__init__.py,sha256=EeDqX2Aml6SPx8363J-v1lz0EcZtgwIBYyCJV6CcEDU,40
|
4
|
-
mdbq/aggregation/optimize_data.py,sha256=
|
5
|
-
mdbq/aggregation/query_data.py,sha256=
|
4
|
+
mdbq/aggregation/optimize_data.py,sha256=wB7prQdZAHyjzXH9V8g8X_JBMdvCCUITN1hVwK72Tdg,952
|
5
|
+
mdbq/aggregation/query_data.py,sha256=uD9fHJrcgmHFBnEdhwvQ0Icthz8SzwaJedX3SFfVXfs,174712
|
6
6
|
mdbq/bdup/__init__.py,sha256=AkhsGk81SkG1c8FqDH5tRq-8MZmFobVbN60DTyukYTY,28
|
7
7
|
mdbq/bdup/bdup.py,sha256=hJs815hGFwm_X5bP2i9XugG2w2ZY_F0n3-Q0hVpIPPw,4892
|
8
8
|
mdbq/config/__init__.py,sha256=jso1oHcy6cJEfa7udS_9uO5X6kZLoPBF8l3wCYmr5dM,18
|
9
|
-
mdbq/config/default.py,sha256
|
10
|
-
mdbq/config/myconfig.py,sha256=
|
11
|
-
mdbq/config/products.py,sha256=
|
12
|
-
mdbq/config/set_support.py,sha256=
|
9
|
+
mdbq/config/default.py,sha256=pOBmlxmGzmK8XYstv_qwE4vDwJmytEmVIYE0bDnCXOs,2143
|
10
|
+
mdbq/config/myconfig.py,sha256=5gg3B8fnDx2_a5I3kfPLXx7xePqZwfb3ohj6iMVhplc,1022
|
11
|
+
mdbq/config/products.py,sha256=02sZAhFyF5dpapXj9h5iOKMXvC4ZNZjHTnQZgbzc9NA,5731
|
12
|
+
mdbq/config/set_support.py,sha256=7C7NFy7Em_uC7lig54qQlIlKG_AJeMCskxzK87anGkM,462
|
13
13
|
mdbq/dataframe/__init__.py,sha256=2HtCN8AdRj53teXDqzysC1h8aPL-mMFy561ESmhehGQ,22
|
14
14
|
mdbq/dataframe/converter.py,sha256=lETYhT7KXlWzWwqguqhk6vI6kj4rnOBEW1lhqKy2Abc,5035
|
15
15
|
mdbq/log/__init__.py,sha256=Mpbrav0s0ifLL7lVDAuePEi1hJKiSHhxcv1byBKDl5E,15
|
@@ -21,7 +21,7 @@ mdbq/mysql/mysql.py,sha256=bsv-khT7fyoYxEJMbJPks-V1tYvwX-mNHsoTNXfWiKk,95884
|
|
21
21
|
mdbq/mysql/s_query.py,sha256=pj5ioJfUT81Su9S-km9G49gF5F2MmXXfw_oAIUzhN28,8794
|
22
22
|
mdbq/mysql/year_month_day.py,sha256=VgewoE2pJxK7ErjfviL_SMTN77ki8GVbTUcao3vFUCE,1523
|
23
23
|
mdbq/other/__init__.py,sha256=jso1oHcy6cJEfa7udS_9uO5X6kZLoPBF8l3wCYmr5dM,18
|
24
|
-
mdbq/other/download_sku_picture.py,sha256=
|
24
|
+
mdbq/other/download_sku_picture.py,sha256=Da_5hsw3yeDm2lXE-YLMbIxk2-36K5-o7D3Sm9APj9M,44760
|
25
25
|
mdbq/other/porxy.py,sha256=UHfgEyXugogvXgsG68a7QouUCKaohTKKkI4RN-kYSdQ,4961
|
26
26
|
mdbq/other/pov_city.py,sha256=AEOmCOzOwyjHi9LLZWPKi6DUuSC-_M163664I52u9qw,21050
|
27
27
|
mdbq/other/ua_sj.py,sha256=JuVYzc_5QZ9s_oQSrTHVKkQv4S_7-CWx4oIKOARn_9U,22178
|
@@ -30,10 +30,10 @@ mdbq/pbix/pbix_refresh.py,sha256=JUjKW3bNEyoMVfVfo77UhguvS5AWkixvVhDbw4_MHco,239
|
|
30
30
|
mdbq/pbix/refresh_all.py,sha256=OBT9EewSZ0aRS9vL_FflVn74d4l2G00wzHiikCC4TC0,5926
|
31
31
|
mdbq/pbix/refresh_all_old.py,sha256=_pq3WSQ728GPtEG5pfsZI2uTJhU8D6ra-htIk1JXYzw,7192
|
32
32
|
mdbq/redis/__init__.py,sha256=YtgBlVSMDphtpwYX248wGge1x-Ex_mMufz4-8W0XRmA,12
|
33
|
-
mdbq/redis/getredis.py,sha256=
|
33
|
+
mdbq/redis/getredis.py,sha256=MLVWENvFtLFpxUlkUMBvc5bXPXeG-QIl8f_A200TIWE,25497
|
34
34
|
mdbq/spider/__init__.py,sha256=RBMFXGy_jd1HXZhngB2T2XTvJqki8P_Fr-pBcwijnew,18
|
35
|
-
mdbq/spider/aikucun.py,sha256=
|
36
|
-
mdbq-3.7.
|
37
|
-
mdbq-3.7.
|
38
|
-
mdbq-3.7.
|
39
|
-
mdbq-3.7.
|
35
|
+
mdbq/spider/aikucun.py,sha256=o_QwFWbD6O2F56k6bwnpVV55EcdFCyes05ON7iu9TrA,21882
|
36
|
+
mdbq-3.7.18.dist-info/METADATA,sha256=lMvpo0kmnnG8XQQmln8HqSV8L6k1ZzcDYslHmuyqUTo,244
|
37
|
+
mdbq-3.7.18.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
38
|
+
mdbq-3.7.18.dist-info/top_level.txt,sha256=2FQ-uLnCSB-OwFiWntzmwosW3X2Xqsg0ewh1axsaylA,5
|
39
|
+
mdbq-3.7.18.dist-info/RECORD,,
|
File without changes
|
File without changes
|