Skip to content

zenserp/zenserp-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zenserp Python Client

Zenserp Python Client is the official Python Wrapper around the zenserp API.

Installation

Install from pip:

pip install zenserp

Install from code:

pip install git+https://github.com/zenserp/zenserp-python.git

Usage

All zenserp API requests are made using the Client class. This class must be initialized with your API access key string. Where is my API access key?

In your Python application, import zenserp and pass authentication information to initialize it:

import zenserp
client = zenserp.Client('API_KEY')

Retrieve Status

status = client.status()
print(status['remaining_requests'])

Retrieve SERPs

params = (
    ('q', 'Pied Piper'),
    ('location', 'United States'),
    ('search_engine', 'google.com'),
)

result = client.search(params)
print(result)

Contact us

Any feedback? Please feel free to contact our team.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages