An open API service indexing awesome lists of open source software.

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

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