powerschool is a Python client for the PowerSchool API
Project description
PowerSchool
powerschool is a Python client for the PowerSchool SIS API
Installation
Use the package manager pip to install powerschool.
pip install powerschool
Getting Started
-
Ensure you have a valid plugin installed with the proper data access provisioned for your purposes.
-
Instantiate the client by passing the host name of your server.
import powerschool ps = powerschool.PowerSchool('my.host.name')
-
Authorize the client using:
- client credentials (tuple)
my_credentials = (client_id, client_secret) ps.authorize(client_credentials=my_credentials)
- a previously saved access token (dict)
with open(token_file, 'r') as f: my_token = json.load(f) ps.authorize(access_token=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-1.0.1.tar.gz
.
File metadata
- Download URL: powerschool-1.0.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38f6845b873dcd5720fc4d30a14b0684a52fc113ce9be43dd3fef4406f55c6f9 |
|
MD5 | c3be82060f509de5812a009243ede0df |
|
BLAKE2b-256 | 042f5e1f2c978bb8cbdc15809ccf14734b7f0e2435edfb1897869e689147738d |
File details
Details for the file powerschool-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: powerschool-1.0.1-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04a18aabed8fb6a36a6a5b2b8fdb0790ad98dc2abd8ab7ed8acf36b51ee9199c |
|
MD5 | 07317066be20a3cdea9af16dc75e0d32 |
|
BLAKE2b-256 | 0895489f1604d53cbbd18e785c4ad753a32961ba3d0099bcb158b83ecc8f5291 |