Skip to content

Instantly share code, notes, and snippets.

@ReedJessen
Last active December 30, 2016 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ReedJessen/6f94e1242d8cbab73235dcabed67b46d to your computer and use it in GitHub Desktop.
Save ReedJessen/6f94e1242d8cbab73235dcabed67b46d to your computer and use it in GitHub Desktop.
IP Street Python SDK Sample Query
from IPStreet import client, query

# Instantiate IP Street Client
client = client.Client('IP_STREET_API_KEY',2)

# Instantiate a Query
query = query.PatentData()

# Add Filter Parameters to the Query
query.add_inventor('fadell, anthony')

# Send the Query with the Client, results is a list of dicts
results = client.send(query)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment