The Mixnode Python SDK allows you to easily integrate the Mixnode REST APIs into your Python application.
- Python2 and above.
- A Mixnode API key from a registered user on the Mixnode portal.
pip install mixnode-py-sdk
Follow this tutorial to see a step-by-step guide and examples of how to use the Mixnode Python SDK.
- Create an account on Mixnode.
- If already registered, then login and navigate to api key page.
- Dashboard -> Choose API from left menu -> Note the API key.
- Or, directly navigate to https://www.mixnode.com/account/api to find your API key.
This SDK comes with Basic Authentication over HTTPS which requires you to pass your Mixnode API key using a config file or as a string during client instantiation.
This type of token is given directly to the application.
from mixnode import Mixnode
# Create an instance of the Mixnode Client
client = Mixnode("Your API Key") #add your API KEY here; available at https://www.mixnode.com/account/api
Note that api_key
can also be passed as a JSON object in a config file to avoid specifying the key in the code.
Please see Examples
from mixnode import Mixnode, MixnodeError
try:
query = "SELECT url, title from homepages LIMIT 10"
response = Mixnode("Your api key").execute(query)
print(response)
except MixnodeError as error:
print(error)
execute
is a synchronous operation which builds response based on paging Mixnode SQL API.
Please see various Examples for usage details.
from mixnode import Mixnode, MixnodeError
try:
response = Mixnode("Your API Key").execute(query)
# Do something with response
except MixnodeError as error:
# Do something with error
from mixnode import Mixnode, MixnodeError
try:
# Fires a query and also sets the input limit on the data to be scanned
response = Mixnode("Your API Key").execute(query, inputLimit)
# Do something with response
except MixnodeError as error:
# Do something with error
Turning on the debug mode logs the HTTP requests being sent to the Mixnode API. This is useful to verify if the queries being sent are correct or to verify if query execution is in progress.
# Setting debug to true logs the state of the application.
# Do not use this in production.
Mixnode("Your API Key").setDebug(True);