Metadata-Version: 2.1
Name: reverse_life
Version: 0.0.1
Summary: reverse tools
Home-page: https://github.com/yanjlee/reverse_life
Author: yanjlee
Author-email: yanjlee@163.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: faker
Requires-Dist: execjs
Requires-Dist: loguru
Requires-Dist: base64
Requires-Dist: hashlib
Requires-Dist: Crypto

# 使用说明

```python
import sys  
sys.path.append('D:/Roche/code/roche_db')

from roche_db.data_processing import map2db


output_path = 'test_data/temp.xlsx' # output可以是一个新文件，可以是原来的DB

input_path = '../data/MD/22年9月-23年8月产品注册数据-众成数科-20230920.xlsx' # input是MD的数据
map2db(input_path, output_path, '常规审批')

# input_path = '../data/MD/创新2022.xlsx'
# map2db(input_path, output_path, '创新审批')

# input_path = '../data/MD/优先审批_20230919173353_1595699578026229761.xls'
# map2db(input_path, output_path, '优先审批')

# input_path = '../data/MD/创新审批_20230907_MD.xls'
# map2db(input_path, output_path, '创新审批')
```
