https://github.com/56kyle/patent
allows for retrieving google patent info and eventually will have the ability to summarize patents
https://github.com/56kyle/patent
Last synced: 9 months ago
JSON representation
allows for retrieving google patent info and eventually will have the ability to summarize patents
- Host: GitHub
- URL: https://github.com/56kyle/patent
- Owner: 56kyle
- License: mit
- Created: 2021-03-05T19:02:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-05T19:29:50.000Z (about 5 years ago)
- Last Synced: 2025-01-23T05:17:14.853Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# patent
A set of tools for extracting info from a google patent
### Installation
pip install patent
### Recommended Usage
import patent
a_patent = patent.get('US20170081441A1')
print(a_patent.title)
for inventor in a_patent.inventors:
print(inventor)
for claim in a_patent.claims:
if claim.parent_id:
print(claim.text)
### Examples