mdbq 3.8.19__py3-none-any.whl → 3.9.0__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/__version__.py CHANGED
@@ -1 +1 @@
1
- VERSION = '3.8.19'
1
+ VERSION = '3.9.0'
mdbq/mysql/mysql.py CHANGED
@@ -12,6 +12,9 @@ import os
12
12
  import logging
13
13
  from mdbq.other import otk
14
14
 
15
+ from dbutils.pooled_db import PooledDB
16
+ from typing import Union, List, Dict, Optional, Any, Tuple
17
+
15
18
  warnings.filterwarnings('ignore')
16
19
  """
17
20
  建表流程:
@@ -43,6 +46,520 @@ def count_decimal_places(num_str):
43
46
  return 0, 0
44
47
 
45
48
 
49
+ class MySQLUploader:
50
+ def __init__(
51
+ self,
52
+ username: str,
53
+ password: str,
54
+ host: str = 'localhost',
55
+ port: int = 3306,
56
+ charset: str = 'utf8mb4',
57
+ collation: str = 'utf8mb4_0900_ai_ci',
58
+ enable_logging: bool = False,
59
+ log_level: str = 'ERROR',
60
+ max_retries: int = 10,
61
+ retry_interval: int = 10,
62
+ pool_size: int = 5
63
+ ):
64
+ """
65
+ 初始化MySQL上传工具
66
+
67
+ :param username: 数据库用户名
68
+ :param password: 数据库密码
69
+ :param host: 数据库主机地址,默认为localhost
70
+ :param port: 数据库端口,默认为3306
71
+ :param charset: 字符集,默认为utf8mb4
72
+ :param collation: 排序规则,默认为utf8mb4_0900_ai_ci
73
+ :param enable_logging: 是否启用日志,默认为False
74
+ :param log_level: 日志级别,默认为ERROR
75
+ :param max_retries: 最大重试次数,默认为10
76
+ :param retry_interval: 重试间隔(秒),默认为10
77
+ :param pool_size: 连接池大小,默认为5
78
+ """
79
+ self.username = username
80
+ self.password = password
81
+ self.host = host
82
+ self.port = port
83
+ self.charset = charset
84
+ self.collation = collation
85
+ self.max_retries = max_retries
86
+ self.retry_interval = retry_interval
87
+ self.pool_size = pool_size
88
+
89
+ # 初始化日志
90
+ if enable_logging:
91
+ self._init_logging(log_level)
92
+
93
+ # 创建连接池
94
+ self.pool = self._create_connection_pool()
95
+
96
+ def _init_logging(self, log_level: str):
97
+ """初始化日志配置"""
98
+ logging.basicConfig(
99
+ level=getattr(logging, log_level.upper(), logging.ERROR),
100
+ format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
101
+ )
102
+ self.logger = logging.getLogger('MySQLUploader')
103
+
104
+ def _create_connection_pool(self):
105
+ """创建数据库连接池"""
106
+ return PooledDB(
107
+ creator=pymysql,
108
+ host=self.host,
109
+ port=self.port,
110
+ user=self.username,
111
+ password=self.password,
112
+ charset=self.charset,
113
+ maxconnections=self.pool_size,
114
+ cursorclass=pymysql.cursors.DictCursor
115
+ )
116
+
117
+ def _validate_identifier(self, identifier: str) -> str:
118
+ """
119
+ 验证并清理数据库标识符(数据库名、表名、列名)
120
+ 防止SQL注入和非法字符
121
+
122
+ :param identifier: 要验证的标识符
123
+ :return: 清理后的安全标识符
124
+ """
125
+ if not identifier or not isinstance(identifier, str):
126
+ raise ValueError(f"Invalid identifier: {identifier}")
127
+
128
+ # 移除可能有害的字符
129
+ cleaned = re.sub(r'[^a-zA-Z0-9_$]', '', identifier)
130
+ if not cleaned:
131
+ raise ValueError(f"Invalid identifier after cleaning: {identifier}")
132
+
133
+ return cleaned
134
+
135
+ def _validate_value(self, value: Any, column_type: str) -> Any:
136
+ """
137
+ 验证并清理数据值,根据列类型进行适当转换
138
+
139
+ :param value: 要验证的值
140
+ :param column_type: 列的数据类型
141
+ :return: 清理后的值
142
+ """
143
+ if value is None:
144
+ return None
145
+
146
+ try:
147
+ if 'int' in column_type.lower():
148
+ return int(value) if value is not None else None
149
+ elif 'float' in column_type.lower() or 'double' in column_type.lower() or 'decimal' in column_type.lower():
150
+ return float(value) if value is not None else None
151
+ elif 'date' in column_type.lower() or 'time' in column_type.lower():
152
+ if isinstance(value, (datetime.datetime, pd.Timestamp)):
153
+ return value.strftime('%Y-%m-%d %H:%M:%S')
154
+ return str(value)
155
+ elif 'char' in column_type.lower() or 'text' in column_type.lower():
156
+ return str(value)
157
+ else:
158
+ return value
159
+ except (ValueError, TypeError) as e:
160
+ raise ValueError(f"Failed to convert value {value} to type {column_type}: {str(e)}")
161
+
162
+ def _execute_with_retry(self, func, *args, **kwargs):
163
+ """
164
+ 带重试机制的SQL执行装饰器
165
+
166
+ :param func: 要执行的函数
167
+ :param args: 位置参数
168
+ :param kwargs: 关键字参数
169
+ :return: 函数执行结果
170
+ """
171
+
172
+ @wraps(func)
173
+ def wrapper(*args, **kwargs):
174
+ last_exception = None
175
+ for attempt in range(self.max_retries):
176
+ try:
177
+ return func(*args, **kwargs)
178
+ except pymysql.OperationalError as e:
179
+ last_exception = e
180
+ if attempt < self.max_retries - 1:
181
+ time.sleep(self.retry_interval)
182
+ # 尝试重新连接
183
+ self.pool = self._create_connection_pool()
184
+ continue
185
+ raise last_exception if last_exception else Exception("Unknown error occurred")
186
+
187
+ return wrapper(*args, **kwargs)
188
+
189
+ def _get_connection(self):
190
+ """从连接池获取连接"""
191
+ return self.pool.connection()
192
+
193
+ def _check_database_exists(self, db_name: str) -> bool:
194
+ """检查数据库是否存在"""
195
+ db_name = self._validate_identifier(db_name)
196
+ sql = "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = %s"
197
+
198
+ with self._get_connection() as conn:
199
+ with conn.cursor() as cursor:
200
+ cursor.execute(sql, (db_name,))
201
+ return bool(cursor.fetchone())
202
+
203
+ def _create_database(self, db_name: str):
204
+ """创建数据库"""
205
+ db_name = self._validate_identifier(db_name)
206
+ sql = f"CREATE DATABASE IF NOT EXISTS `{db_name}` CHARACTER SET {self.charset} COLLATE {self.collation}"
207
+
208
+ with self._get_connection() as conn:
209
+ with conn.cursor() as cursor:
210
+ cursor.execute(sql)
211
+ conn.commit()
212
+
213
+ def _check_table_exists(self, db_name: str, table_name: str) -> bool:
214
+ """检查表是否存在"""
215
+ db_name = self._validate_identifier(db_name)
216
+ table_name = self._validate_identifier(table_name)
217
+ sql = """
218
+ SELECT TABLE_NAME
219
+ FROM INFORMATION_SCHEMA.TABLES
220
+ WHERE TABLE_SCHEMA = %s AND TABLE_NAME = %s
221
+ """
222
+
223
+ with self._get_connection() as conn:
224
+ with conn.cursor() as cursor:
225
+ cursor.execute(sql, (db_name, table_name))
226
+ return bool(cursor.fetchone())
227
+
228
+ def _get_table_columns(self, db_name: str, table_name: str) -> Dict[str, str]:
229
+ """获取表的列名和数据类型"""
230
+ db_name = self._validate_identifier(db_name)
231
+ table_name = self._validate_identifier(table_name)
232
+ sql = """
233
+ SELECT COLUMN_NAME, DATA_TYPE
234
+ FROM INFORMATION_SCHEMA.COLUMNS
235
+ WHERE TABLE_SCHEMA = %s AND TABLE_NAME = %s
236
+ """
237
+
238
+ with self._get_connection() as conn:
239
+ with conn.cursor() as cursor:
240
+ cursor.execute(sql, (db_name, table_name))
241
+ return {row['COLUMN_NAME']: row['DATA_TYPE'] for row in cursor.fetchall()}
242
+
243
+ def _create_table(
244
+ self,
245
+ db_name: str,
246
+ table_name: str,
247
+ columns: Dict[str, str],
248
+ primary_keys: Optional[List[str]] = None,
249
+ date_column: Optional[str] = None
250
+ ):
251
+ """
252
+ 创建数据表
253
+
254
+ :param db_name: 数据库名
255
+ :param table_name: 表名
256
+ :param columns: 列名和数据类型字典 {列名: 数据类型}
257
+ :param primary_keys: 主键列列表
258
+ :param date_column: 日期列名,如果存在将设置为索引
259
+ """
260
+ db_name = self._validate_identifier(db_name)
261
+ table_name = self._validate_identifier(table_name)
262
+
263
+ if not columns:
264
+ raise ValueError("No columns specified for table creation")
265
+
266
+ # 构建列定义SQL
267
+ column_defs = []
268
+ for col_name, col_type in columns.items():
269
+ safe_col_name = self._validate_identifier(col_name)
270
+ col_def = f"`{safe_col_name}` {col_type}"
271
+ column_defs.append(col_def)
272
+
273
+ # 添加主键定义
274
+ primary_key_sql = ""
275
+ if primary_keys:
276
+ safe_primary_keys = [self._validate_identifier(pk) for pk in primary_keys]
277
+ primary_key_sql = f", PRIMARY KEY (`{'`,`'.join(safe_primary_keys)}`)"
278
+
279
+ # 构建完整SQL
280
+ sql = f"""
281
+ CREATE TABLE IF NOT EXISTS `{db_name}`.`{table_name}` (
282
+ {','.join(column_defs)}
283
+ {primary_key_sql}
284
+ ) ENGINE=InnoDB DEFAULT CHARSET={self.charset} COLLATE={self.collation}
285
+ """
286
+
287
+ with self._get_connection() as conn:
288
+ with conn.cursor() as cursor:
289
+ cursor.execute(sql)
290
+
291
+ # 如果存在日期列,添加索引
292
+ if date_column and date_column in columns:
293
+ safe_date_col = self._validate_identifier(date_column)
294
+ index_sql = f"ALTER TABLE `{db_name}`.`{table_name}` ADD INDEX `idx_{safe_date_col}` (`{safe_date_col}`)"
295
+ with conn.cursor() as cursor:
296
+ cursor.execute(index_sql)
297
+
298
+ conn.commit()
299
+
300
+ def _prepare_data(
301
+ self,
302
+ data: Union[Dict, List[Dict], pd.DataFrame],
303
+ columns: Dict[str, str],
304
+ allow_null: bool = False
305
+ ) -> List[Dict]:
306
+ """
307
+ 准备要上传的数据,验证并转换数据类型
308
+
309
+ :param data: 输入数据
310
+ :param columns: 列名和数据类型字典 {列名: 数据类型}
311
+ :param allow_null: 是否允许空值
312
+ :return: 准备好的数据列表
313
+ """
314
+ # 统一数据格式为字典列表
315
+ if isinstance(data, pd.DataFrame):
316
+ data = data.to_dict('records')
317
+ elif isinstance(data, dict):
318
+ data = [data]
319
+
320
+ if not isinstance(data, list) or not all(isinstance(item, dict) for item in data):
321
+ raise ValueError("Data must be a dict, list of dicts, or DataFrame")
322
+
323
+ prepared_data = []
324
+ for row in data:
325
+ prepared_row = {}
326
+ for col_name, col_type in columns.items():
327
+ if col_name not in row:
328
+ if not allow_null:
329
+ raise ValueError(f"Missing required column '{col_name}' in data")
330
+ prepared_row[col_name] = None
331
+ else:
332
+ try:
333
+ prepared_row[col_name] = self._validate_value(row[col_name], col_type)
334
+ except ValueError as e:
335
+ raise ValueError(f"Error in column '{col_name}': {str(e)}")
336
+ prepared_data.append(prepared_row)
337
+
338
+ return prepared_data
339
+
340
+ def _get_partition_table_name(self, table_name: str, date_value: str, partition_by: str) -> str:
341
+ """
342
+ 获取分表名称
343
+
344
+ :param table_name: 基础表名
345
+ :param date_value: 日期值
346
+ :param partition_by: 分表方式 ('year' 或 'month')
347
+ :return: 分表名称
348
+ """
349
+ try:
350
+ date_obj = datetime.datetime.strptime(date_value, '%Y-%m-%d %H:%M:%S')
351
+ except ValueError:
352
+ try:
353
+ date_obj = datetime.datetime.strptime(date_value, '%Y-%m-%d')
354
+ except ValueError:
355
+ raise ValueError(f"Invalid date format: {date_value}")
356
+
357
+ if partition_by == 'year':
358
+ return f"{table_name}_{date_obj.year}"
359
+ elif partition_by == 'month':
360
+ return f"{table_name}_{date_obj.year}_{date_obj.month:02d}"
361
+ else:
362
+ raise ValueError("partition_by must be 'year' or 'month'")
363
+
364
+ def _insert_data(
365
+ self,
366
+ db_name: str,
367
+ table_name: str,
368
+ data: List[Dict],
369
+ columns: Dict[str, str],
370
+ check_duplicate: bool = False,
371
+ duplicate_columns: Optional[List[str]] = None,
372
+ batch_size: int = 1000
373
+ ):
374
+ """
375
+ 插入数据到表中
376
+
377
+ :param db_name: 数据库名
378
+ :param table_name: 表名
379
+ :param data: 要插入的数据
380
+ :param columns: 列名和数据类型字典
381
+ :param check_duplicate: 是否检查重复
382
+ :param duplicate_columns: 用于检查重复的列列表
383
+ :param batch_size: 批量插入的大小
384
+ """
385
+ db_name = self._validate_identifier(db_name)
386
+ table_name = self._validate_identifier(table_name)
387
+
388
+ if not data:
389
+ return
390
+
391
+ # 获取所有列名
392
+ all_columns = list(columns.keys())
393
+ safe_columns = [self._validate_identifier(col) for col in all_columns]
394
+ placeholders = ','.join(['%s'] * len(safe_columns))
395
+
396
+ # 构建INSERT SQL
397
+ if check_duplicate:
398
+ if duplicate_columns:
399
+ # 只检查指定列的重复
400
+ dup_columns = [self._validate_identifier(col) for col in duplicate_columns]
401
+ else:
402
+ # 检查所有列的重复
403
+ dup_columns = safe_columns
404
+
405
+ # 构建ON DUPLICATE KEY UPDATE子句
406
+ update_clause = ','.join([f"`{col}`=VALUES(`{col}`)" for col in safe_columns])
407
+
408
+ sql = f"""
409
+ INSERT INTO `{db_name}`.`{table_name}`
410
+ (`{'`,`'.join(safe_columns)}`)
411
+ VALUES ({placeholders})
412
+ ON DUPLICATE KEY UPDATE {update_clause}
413
+ """
414
+ else:
415
+ sql = f"""
416
+ INSERT INTO `{db_name}`.`{table_name}`
417
+ (`{'`,`'.join(safe_columns)}`)
418
+ VALUES ({placeholders})
419
+ """
420
+
421
+ # 分批插入数据
422
+ with self._get_connection() as conn:
423
+ with conn.cursor() as cursor:
424
+ for i in range(0, len(data), batch_size):
425
+ batch = data[i:i + batch_size]
426
+ # 准备批量数据
427
+ values = []
428
+ for row in batch:
429
+ row_values = []
430
+ for col in all_columns:
431
+ row_values.append(row.get(col))
432
+ values.append(row_values)
433
+
434
+ # 执行批量插入
435
+ try:
436
+ cursor.executemany(sql, values)
437
+ conn.commit()
438
+ except Exception as e:
439
+ conn.rollback()
440
+ raise e
441
+
442
+ def upload_data(
443
+ self,
444
+ db_name: str,
445
+ table_name: str,
446
+ data: Union[Dict, List[Dict], pd.DataFrame],
447
+ columns: Dict[str, str],
448
+ primary_keys: Optional[List[str]] = None,
449
+ check_duplicate: bool = False,
450
+ duplicate_columns: Optional[List[str]] = None,
451
+ allow_null: bool = False,
452
+ partition_by: Optional[str] = None,
453
+ partition_date_column: str = '日期',
454
+ auto_create: bool = True
455
+ ):
456
+ """
457
+ 上传数据到数据库
458
+
459
+ :param db_name: 数据库名
460
+ :param table_name: 表名
461
+ :param data: 要上传的数据
462
+ :param columns: 列名和数据类型字典 {列名: 数据类型}
463
+ :param primary_keys: 主键列列表
464
+ :param check_duplicate: 是否检查重复,默认为False
465
+ :param duplicate_columns: 用于检查重复的列列表,如果不指定则使用所有列
466
+ :param allow_null: 是否允许空值,默认为False
467
+ :param partition_by: 分表方式 ('year' 或 'month'),默认为None不分表
468
+ :param partition_date_column: 用于分表的日期列名,默认为'日期'
469
+ :param auto_create: 是否自动创建不存在的数据库或表,默认为True
470
+ """
471
+ # 验证参数
472
+ if not columns:
473
+ raise ValueError("Columns specification is required")
474
+
475
+ if partition_by and partition_by not in ['year', 'month']:
476
+ raise ValueError("partition_by must be 'year', 'month' or None")
477
+
478
+ # 准备数据
479
+ prepared_data = self._prepare_data(data, columns, allow_null)
480
+
481
+ # 检查数据库是否存在
482
+ if not self._check_database_exists(db_name):
483
+ if auto_create:
484
+ self._create_database(db_name)
485
+ else:
486
+ raise ValueError(f"Database '{db_name}' does not exist")
487
+
488
+ # 处理分表逻辑
489
+ if partition_by:
490
+ # 分组数据按分表
491
+ partitioned_data = {}
492
+ for row in prepared_data:
493
+ if partition_date_column not in row:
494
+ raise ValueError(f"Partition date column '{partition_date_column}' not found in data")
495
+ part_table = self._get_partition_table_name(table_name, str(row[partition_date_column]), partition_by)
496
+ if part_table not in partitioned_data:
497
+ partitioned_data[part_table] = []
498
+ partitioned_data[part_table].append(row)
499
+
500
+ # 对每个分表执行上传
501
+ for part_table, part_data in partitioned_data.items():
502
+ self._upload_to_table(
503
+ db_name, part_table, part_data, columns,
504
+ primary_keys, check_duplicate, duplicate_columns,
505
+ allow_null, auto_create, partition_date_column
506
+ )
507
+ else:
508
+ # 不分表,直接上传
509
+ self._upload_to_table(
510
+ db_name, table_name, prepared_data, columns,
511
+ primary_keys, check_duplicate, duplicate_columns,
512
+ allow_null, auto_create, partition_date_column
513
+ )
514
+
515
+ def _upload_to_table(
516
+ self,
517
+ db_name: str,
518
+ table_name: str,
519
+ data: List[Dict],
520
+ columns: Dict[str, str],
521
+ primary_keys: Optional[List[str]],
522
+ check_duplicate: bool,
523
+ duplicate_columns: Optional[List[str]],
524
+ allow_null: bool,
525
+ auto_create: bool,
526
+ date_column: Optional[str]
527
+ ):
528
+ """实际执行表上传的内部方法"""
529
+ # 检查表是否存在
530
+ if not self._check_table_exists(db_name, table_name):
531
+ if auto_create:
532
+ self._create_table(db_name, table_name, columns, primary_keys, date_column)
533
+ else:
534
+ raise ValueError(f"Table '{db_name}.{table_name}' does not exist")
535
+
536
+ # 获取表结构并验证
537
+ table_columns = self._get_table_columns(db_name, table_name)
538
+ if not table_columns:
539
+ raise ValueError(f"Failed to get columns for table '{db_name}.{table_name}'")
540
+
541
+ # 验证数据列与表列匹配
542
+ for col in columns:
543
+ if col not in table_columns:
544
+ raise ValueError(f"Column '{col}' not found in table '{db_name}.{table_name}'")
545
+
546
+ # 插入数据
547
+ self._insert_data(
548
+ db_name, table_name, data, columns,
549
+ check_duplicate, duplicate_columns
550
+ )
551
+
552
+ def close(self):
553
+ """关闭连接池"""
554
+ self.pool.close()
555
+
556
+ def __enter__(self):
557
+ return self
558
+
559
+ def __exit__(self, exc_type, exc_val, exc_tb):
560
+ self.close()
561
+
562
+
46
563
  class MysqlUpload:
47
564
  def __init__(self, username: str, password: str, host: str, port: int, charset: str = 'utf8mb4'):
48
565
  self.username = username
mdbq/spider/aikucun.py CHANGED
@@ -257,13 +257,13 @@ class AikuCun:
257
257
  )
258
258
  print(f'正在获取数据({num}/{len(date_list)}): {item_type}榜单 {date}')
259
259
  # print(res.json())
260
- if not res.json()['success']:
260
+ if not res.json().get('success', None):
261
261
  print('没有获取到数据, 请求不成功, 如果连续请求失败 > 5, 则需重新获取cookie后继续')
262
262
  num += 1
263
263
  self.error_count += 1
264
264
  time.sleep(1)
265
265
  continue
266
- if not res.json()['data']['rows']:
266
+ if not res.json().get('data', {}).get('rows', None):
267
267
  print("返回的数据字典异常, ['data']['rows'] 不能为空")
268
268
  num += 1
269
269
  self.error_count += 1
@@ -479,7 +479,10 @@ def main(start_date, end_date=None, item_type=['spu']):
479
479
 
480
480
  if __name__ == '__main__':
481
481
  main(
482
- start_date='2025-03-25',
483
- # end_date='2025-03-26', # 不传则默认到今天
484
- item_type=['spu', 'sku']
482
+ start_date='2025-05-13',
483
+ # end_date='2025-04-28', # 不传则默认到今天
484
+ item_type=[
485
+ # 'spu',
486
+ 'sku'
487
+ ]
485
488
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mdbq
3
- Version: 3.8.19
3
+ Version: 3.9.0
4
4
  Home-page: https://pypi.org/project/mdbq
5
5
  Author: xigua,
6
6
  Author-email: 2587125111@qq.com
@@ -1,5 +1,5 @@
1
1
  mdbq/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
2
- mdbq/__version__.py,sha256=adbn7k6HeaPn3waOOAb2wMca7SSJxTRZ8MEbtLkPAeA,18
2
+ mdbq/__version__.py,sha256=7hLUrBXQAGj08UbPoot9b_BwLXRkc-RH_nJSvG9AqTc,17
3
3
  mdbq/aggregation/__init__.py,sha256=EeDqX2Aml6SPx8363J-v1lz0EcZtgwIBYyCJV6CcEDU,40
4
4
  mdbq/aggregation/optimize.py,sha256=2oalzD9weZhDclUC22OLxYa8Zj7KnmsGUoUau_Jlyc4,19796
5
5
  mdbq/aggregation/query_data.py,sha256=5_OzjGR5Sq00q-EgAYmSE5V9i4Solw9y4hkldl4mvt8,179808
@@ -8,7 +8,7 @@ mdbq/config/config.py,sha256=eaTfrfXQ65xLqjr5I8-HkZd_jEY1JkGinEgv3TSLeoQ,3170
8
8
  mdbq/log/__init__.py,sha256=Mpbrav0s0ifLL7lVDAuePEi1hJKiSHhxcv1byBKDl5E,15
9
9
  mdbq/log/spider_logging.py,sha256=-ozWWEGm3HVv604ozs_OOvVwumjokmUPwbaodesUrPY,1664
10
10
  mdbq/mysql/__init__.py,sha256=A_DPJyAoEvTSFojiI2e94zP0FKtCkkwKP1kYUCSyQzo,11
11
- mdbq/mysql/mysql.py,sha256=umcLpw5cYGNNJnEjBLh_bgBXeh5LntPKFm8VslQ01ow,55030
11
+ mdbq/mysql/mysql.py,sha256=L_UR7TqcZoHZj6dWVZe-ai6X2yc_oULPyUzKy7DHbOw,74493
12
12
  mdbq/mysql/s_query.py,sha256=X055aLRAgxVvueXx4NbfNjp6MyBI02_XBb1pTKw09L0,8660
13
13
  mdbq/other/__init__.py,sha256=jso1oHcy6cJEfa7udS_9uO5X6kZLoPBF8l3wCYmr5dM,18
14
14
  mdbq/other/download_sku_picture.py,sha256=YU8DxKMXbdeE1OOKEA848WVp62jYHw5O4tXTjUdq9H0,44832
@@ -21,8 +21,8 @@ mdbq/pbix/refresh_all.py,sha256=OBT9EewSZ0aRS9vL_FflVn74d4l2G00wzHiikCC4TC0,5926
21
21
  mdbq/redis/__init__.py,sha256=YtgBlVSMDphtpwYX248wGge1x-Ex_mMufz4-8W0XRmA,12
22
22
  mdbq/redis/getredis.py,sha256=Uk8-cOWT0JU1qRyIVqdbYokSLvkDIAfcokmYj1ebw8k,24104
23
23
  mdbq/spider/__init__.py,sha256=RBMFXGy_jd1HXZhngB2T2XTvJqki8P_Fr-pBcwijnew,18
24
- mdbq/spider/aikucun.py,sha256=QfyUtXMuPZ5mJVNDUlFa_ltFXiCCTccBz6MT3YT-7HI,19742
25
- mdbq-3.8.19.dist-info/METADATA,sha256=yheVi8Il8o8Py_HUlKc8s-gCako_d8RktLqdNa-TPSA,364
26
- mdbq-3.8.19.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
27
- mdbq-3.8.19.dist-info/top_level.txt,sha256=2FQ-uLnCSB-OwFiWntzmwosW3X2Xqsg0ewh1axsaylA,5
28
- mdbq-3.8.19.dist-info/RECORD,,
24
+ mdbq/spider/aikucun.py,sha256=OhyEv1VyAKTOHjLDM37iNDQeRg5OnrNoKODoG2VxHes,19806
25
+ mdbq-3.9.0.dist-info/METADATA,sha256=pd--meyNjH8KaX-ZgnSHqWN9GbEyx59Atb1Wgs6BqVc,363
26
+ mdbq-3.9.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
27
+ mdbq-3.9.0.dist-info/top_level.txt,sha256=2FQ-uLnCSB-OwFiWntzmwosW3X2Xqsg0ewh1axsaylA,5
28
+ mdbq-3.9.0.dist-info/RECORD,,
File without changes