A small async API wrapper for Canvas Parents.
Project description
Canvas Parent API
This is an async wrapper for the Canvas API from Instructure. There are a few types of objects this will retrieve based on the assumption that you are a parent with students enrolled with Canvas.
The types of objects that can be returned include:
- Observees (Students)
- Courses
- Assignments
- Submissions
This module is provided for use with the Home Assistant custom integration Canvas however it could be useful as a standalone module for your own projects as well.
Installing
To install the module use:
python3 -m pip install canvas-parent-api
Get API Token
If you are a parent, you will have a Canvas Parent account. To get an API token, you must sign into the Canvas Parent application from a web browser. This is typically using: https://.instructure.com/login/canvas
Once you have signed into your account, navigate to Account > Settings.
Under "Approved Integrations" click "+ New Access Token" to create a new API Token.
Enter a Purpose and Expiration date (blank for no expiration).
Be sure to save your API token, as you will have to generate a new token if this is lost.
Usage
Example usage to get students, printing names:
import asyncio
from canvas_parent_api import Canvas
base_url = "https://school.instructure.com"
api_token = "randomstringthatisntreallyatoken"
async def get_students():
client = Canvas(f"{base_url}",f"{api_token}")
return await client.observees()
students = asyncio.run(get_students())
for student in students:
print(student.name)
Patch Notes
- 0.0.9:
- Added Submissions
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
Built Distribution
File details
Details for the file canvas_parent_api-0.0.10.tar.gz
.
File metadata
- Download URL: canvas_parent_api-0.0.10.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5f7e6c3f1e6b99acd584cc79ecb387f1129cd96c614e0e348821873e6862e12 |
|
MD5 | 7bda0cf12563e1ce60ab9e6165014556 |
|
BLAKE2b-256 | dbd443a57f4fb7dbda035df9464a560a1546b38c13bc774267537a57e248a9e3 |
File details
Details for the file canvas_parent_api-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: canvas_parent_api-0.0.10-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbdedb021c8df3dc0b7f6f924ce13d2b4d2c2089c69f36e3cd6066709f4e8a35 |
|
MD5 | 00dfcac63da235e15885187803fcc2a6 |
|
BLAKE2b-256 | 3895c995ccabba067d14838f78d67bcb1a210d7d4b4514c0ce77e7280367b9f8 |