This repository was archived by the owner on Dec 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
QueryInfo
树华 edited this page Nov 16, 2017
·
4 revisions
在query_config下的QUERY_LIST配置查询对象, e.g.
QUERY_LIST = [
SipoItem(inventor='陈思平', proposer='深圳大学', publish_date=DateSelect('>=', '2001-01-01'),
invention_type='实用新型', publish_country='HK'),
SipoItem(inventor='陈思平', proposer='深圳大学', publish_date=DateSelect('>=', '2001-01-01'),
invention_type='发明申请', publish_country='HK'),
SipoItem(inventor='陈思平', proposer='深圳大学', publish_date=DateSelect('>=', '2001-01-01'),
invention_type='外观设计', publish_country='HK'),
]
群组类型,可以支持
- And(*parm) 与
- Or(*parm) 或
- Not(*parm) 非
e.g.
SipoItem(inventor='陈思平', proposer=ItemGroup(And=And('深圳大学', '北京科技大学')), publish_date=DateSelect('>=', '2001-01-01'),
invention_type='实用新型', publish_country='HK'),
表达式结果:
公开(公告)日>=2001-01-01 AND 申请(专利权)人=(深圳大学 AND 北京科技大学) AND 发明人=(陈思平) AND 发明类型=("U") AND 公开国=(HK OR CN)
日期类型
- select 比较运算符字符串, e.g. '=', '>=', '>', '<=', '<', ':'
- date 日期字符串,必须按照 'yyyy-mm-dd'格式,表示为 比较日期
- enddate 截止日期字符串,必须按照 'yyyy-mm-dd'格式,当select=':'生效,表示查询时间段在date:enddate
关键对象SipoItem,支持的查询字段,见下表
key | chinese | support | type |
---|---|---|---|
request_number | 申请号 | True | None, string, ItemGroup |
request_date | 申请日 | True | None, DateSelect, ItemGroup |
publish_number | 公开(公告)号 | True | None, string, ItemGroup |
publish_date | 公开(公告)日 | True | None, DateSelect, ItemGroup |
invention_name | 发明名称 | True | None, string, ItemGroup |
ipc_class_number | IPC分类号 | True | None, string, ItemGroup |
proposer | 申请(专利权)人 | True | None, string, ItemGroup |
inventor | 发明人 | True | None, string, ItemGroup |
invention_type | 发明类型 | True | None, string, Or |
publish_country | 公开国 | True | None, string, ItemGroup |
priority_number | 优先权号 | True | None, string, ItemGroup |
priority_date | 优先权日 | True | None, DateSelect, ItemGroup |
abstract | 摘要 | True | None, string, ItemGroup |
claim | 权利要求 | True | None, string, ItemGroup |
instructions | 说明书 | True | None, string, ItemGroup |
key_word | 关键词 | True | None, string, ItemGroup |
locarno_class_number | 外观设计洛迦诺分类号 | True | None, string, ItemGroup |
description_of_the_design | 外观设计简要说明 | True | None, string, ItemGroup |
agent | 代理人 | True | None, string, ItemGroup |
agency | 代理机构 | True | None, string, ItemGroup |
proposer_post_code | 申请人邮编 | True | None, string, ItemGroup |
proposer_address | 申请人地址 | True | None, string, ItemGroup |
proposer_location | 申请人所在国(省) | True | None, string, ItemGroup |
FT_class_number | FT分类号 | unknown | None, string, ItemGroup |
UC_class_number | UC分类号 | unknown | None, string, ItemGroup |
ECLA_class_number | ECLA分类号 | unknown | None, string, ItemGroup |
FI_class_number | FI分类号 | unknown | None, string, ItemGroup |
English_invention_name | 发明名称(英) | unknown | None, string, ItemGroup |
French_invention_name | 发明名称(法) | unknown | None, string, ItemGroup |
German_invention_name | 发明名称(德) | unknown | None, string, ItemGroup |
other_invention_name | 发明名称(其他) | unknown | None, string, ItemGroup |
English_abstract | 摘要(英) | unknown | None, string, ItemGroup |
PCT_enters_national_phase_date | PCT进入国家阶段日期 | unknown | None, DateSelect, ItemGroup |
PCT_international_application_number | PCT国际申请号 | unknown | None, string, ItemGroup |
French_abstract | 摘要(法) | unknown | None, string, ItemGroup |
German_abstract | 摘要(德) | unknown | None, string, ItemGroup |
other_abstract | 摘要(其他) | unknown | None, string, ItemGroup |
PCT_international_application_date | PCT国际申请日期 | unknown | None, DateSelect, ItemGroup |
PCT_international_publish_number | PCT国际申请公开号 | unknown | None, string, ItemGroup |
PCT_international_publish_date | PCT国际申请公开日期 | unknown | None, DateSelect, ItemGroup |
CPC_class_number | CPC分类号 | unknown | None, string, ItemGroup |
C-SETS | C-SETS | unknown | None, string, ItemGroup |
您的赞助和点赞是我的无限动力!