123456789101112131415161718192021222324252627282930313233343536373839 |
- # -*- coding: utf-8 -*-
- # @Time : 2022/11/30 10:17
- # @Author : XuJiakai
- # @File : Demo
- # @Software: PyCharm
- input_args = {
- "company_id": "",
- "company_name": "",
- "company_registered_date": "",
- "company_org_type": "",
- "province_code": "",
- "city_code": "",
- "county_code": "",
- "org_number": "",
- "reg_number": "",
- "credit_code": "",
- }
- output_args = {
- "_id": "", # concat_ws('_',spider_date,company_id,competitor_product_name)
- "base_info": input_args,
- "competitor_product_name": "qcc",
- "summary": {
- "股东信息": 1
- },
- "latest_date": {
- "基本信息": "2022-10-10 00:00:00", # 公司基本信息、股东、主要成员,取核准日期
- "历史变更": "2022-10-20 00:00:00"
- },
- "other_info": {
- },
- "spider_date": "2022-10-20 00:00:00"
- }
- if __name__ == '__main__':
- pass
|