IP Street is a patent data and analytics API service. It enables users to integrate patent data and analytical algorithms into their applications without the need to build or manage the significant infrastrucutre required to do so well.
pip install IPStreet
client = client.Client(apikey=apikey, api_version=api_version)
query = query.PatentData()
query.add_keywords('battery')
query.add_owner('Tesla Motors')
results = client.send(query)
Break large queries into smaller queries and write the to disk as they complete. If you query response is too large, your local device will run out of memory causing a parsing error. The definition of "large queries" in this context is dependant on you local machines memory availability.