learnsprout-python is a simple Python library for access to student information via the LearnSprout REST API. You can view documentation for the REST API at LearnSprout's interactive console.
Installation
pip install learnsprout
Using the client
The `LearnSproutClient` only requires an `apikey` to use. Requesting one for your own use is simple. There is also a public sample API which only has access to sample data.
from learnsprout.client import LearnSproutClient
client = LearnSproutClient("fcb8534c-e4ee-4e02-8b22-9328db1dac18")
Alternatively, you can provide OS environment variables
export LEARNSPROUT_APIKEY="fcb8534c-e4ee-4e02-8b22-9328db1dac18"
then in Python, the `apikey` will be inferred automagically from the var above
client = LearnSproutClient()
Product's homepage
Requirements:
· Python
· requests