Zenserp Python Client
Project description
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'),
('language', 'English'),
)
result = client.search(params)
print(result)
Contact us
Any feedback? Please feel free to contact our team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
zenserp-0.1.1.tar.gz
(2.8 kB
view hashes)