A set of ORM-style clients for publicly available intellectual property data
Project description
Overview
A set of Django-ORM-Style accessors to publicly available intellectual property data.
Currently supports:
European Patent Office - Open Patent Services
Inpadoc - Full Support
EPO Register - Full Support
Classification - No Support
United States Patent & Trademark Office
Patent Examination Data - Full Support
Patent Assignment Data - Lookup Support
Patent Trial & Appeal Board API - Full Support
United States International Trade Commission
Electronic Document Information System (EDIS) API - Full Support
Free software: Apache Software License 2.0
Installation
pip install patent_client
If you only want access to USPTO resources, you’re done! However, additional setup is necessary to access EPO Inpadoc and EPO Register resources. See the Docs.
Documentation
Docs, including a fulsome Getting Started are available on Read the Docs.
SUPER QUICK START
To use the project:
>>> from patent_client import Inpadoc, Epo, Assignment, USApplication
# Fetch US Applications
>>> app = USApplication.objects.get('15710770')
>>> app.patent_title
'Camera Assembly with Concave-Shaped Front Face'
# Fetch from USPTO Assignments
>>> assignments = Assignment.objects.filter(assignee='Google')
>>> len(assignments)
23860
>>> assignments[0].id
'47086-788'
>>> assignments[0].conveyance_text
'ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).'
# Fetch from INPADOC
>>> pub = Inpadoc.objects.get('EP3082535A1')
>>> pub.title
'AUTOMATIC FLUID DISPENSER'
>>> pub.priority_claims
['201314137130', '2014071849']
# Fetch from EPO Register
>>> epo = Epo.objects.get('EP3082535A1')
>>> epo.title
'AUTOMATIC FLUID DISPENSER'
>>> epo.status
[{'description': 'Examination is in progress', 'code': '14', 'date': '20180615'}]
Development
To run the all tests run:
pytest
A developer guide is provided in the Documentation. This project is narrowly scoped to only public documented API’s available without charge (at least for moderate usage). Scrapers of HTML websites are not permitted. But PR’s to add support for new API’s are more than welcome.
Pull requests welcome!
Changelog
0.2.3 (2018-11-02)
Added parser for Inpadoc claims so they have an object repesentation
0.1.5 (2018-10-25)
Massive refactor of OPS client
0.1.4 (2018-10-24)
Support for USPTO Applications, Assignments, and PTAB documents
Support for EPO Inpadoc and EPO Register
Initial Installation and Getting Started Documentation
0.0.1 (2018-10-15)
First release on PyPI.
Support for EPO OPS (except Classification data)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file patent_client-0.3.2.tar.gz
.
File metadata
- Download URL: patent_client-0.3.2.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8e88ed67c9700489312830cc1a0dceb018019f9db9747397b04e137c2af1197 |
|
MD5 | 94c14290ea8cd6961b0402b7211210ee |
|
BLAKE2b-256 | 215d02dd6b0bd8126e79bea8a1a879f9ef4775d6399ae657ee9239c0b72c6ecb |
File details
Details for the file patent_client-0.3.2-py2.py3-none-any.whl
.
File metadata
- Download URL: patent_client-0.3.2-py2.py3-none-any.whl
- Upload date:
- Size: 34.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2872ade64bd696b6837f846541651bad632e1a829e94913efbd3bc35c40dd417 |
|
MD5 | 8f9759772d43a88c5c0b158e71d4e5e9 |
|
BLAKE2b-256 | 2995c93789c7662792d4821364cec8005933323f3fff1ae882b2d510a1cdf9e0 |