API Reference
These pages feature low-level documentation of the functionality of the SDK.
When using the SDK you always start by getting a Client instance using an API Key. With this object you can connect to various services.
1import nextcode
2client = nextcode.Client(api_key="xxx")
3svc = client.service("query")
4svc.status()
There is a helper method available to get a service directly without first invoking a client.
1import nextcode
2svc = nextcode.get_service("query")
In this example we assume the api_key has already been set but it can also be passed in.