powerschool is a Python client for the PowerSchool API
Project description
PowerSchool
powerschool is a Python client for the PowerSchool SIS API
Table of Contents
Installation
Use the package manager pip to install powerschool.
pip install powerschool
Generate Client ID and Client Secret
You can collect the Client ID and Client Secret directly by signing into the PowerSchool Admin portal and navigating to System > System Settings > Plugin Management Dashboard > {Your Plugin}.
Getting Started
-
Ensure you have a valid plugin installed with the proper data access provisioned for your purposes.
-
Instantiate a client by passing the host name of your server and one form of authentication:
- client credentials (tuple)
import powerschool client_id = 'CLi3N7-Id' client_secret = 'cL13N7-53cR37' my_credentials = (client_id, client_secret) ps = powerschool.PowerSchool('my.host.name', auth=my_credentials)
- access token (dict)
import powerschool with open('/path/to/token_file.json', 'r') as f: my_token = json.load(f) ps = powerschool.PowerSchool('my.host.name', auth=my_token)
Usage
Refer to the docs for full functionality, including resources, searching, and pagination.
Instantiate a table or PowerQuery object:
schools_table = ps.get_schema_table('schools')
powerquery = ps.get_named_query('com.pearson.core.student.search.get_student_basic_info')
Get the record count for a table:
schools_table.count()
Query all records, all columns on a table:
Pagination is handled automatically by the client. However, you can manually pass
pagesize
andpage
parameters, should you choose.
schools_table.query()
Query all records on a table, with filter and columns list:
params = {
'q': 'id=ge=10000',
'projection': 'school_number,abbreviation',
}
schools_table.query(**params)
Query a specific record on a table:
schools_table.query(dcid=123)
Execute a PowerQuery, passing arguments in the body:
payload = {
'studentdcid': '5432',
}
powerquery.query(body=payload)
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Notice
PowerSchool® is a registered trademark in the U.S. and/or other countries owned by PowerSchool Education, Inc. or its affiliates. PowerSchool® is used under license.
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 powerschool-3.0.1.tar.gz
.
File metadata
- Download URL: powerschool-3.0.1.tar.gz
- Upload date:
- Size: 18.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.7 Linux/5.10.60.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6e69547254c8fcfacf5cf0a6c53efe93ab541fec7d7d5e61d05cd9584ed6c48 |
|
MD5 | cf488a548738a7a449bc4bbac5e4e6ea |
|
BLAKE2b-256 | 51991129db841d9f7dea19d777761ac62d94895756dc64232e3052b8de20fd0c |
File details
Details for the file powerschool-3.0.1-py3-none-any.whl
.
File metadata
- Download URL: powerschool-3.0.1-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.7 Linux/5.10.60.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3edb3f45ad499c2c76c17cf476a18d136fa155f0e158a29e84d3f817119cd9fe |
|
MD5 | 6aa41de4cd7cdf433ece254c33ff8399 |
|
BLAKE2b-256 | a42cae1b5ce6f155590214f5c2642d15dc432263c3928b916d27ba1bff98b5ee |