Questions tagged [powerschool]

Pearson PowerSchool SIS

PowerSchool is a student information system (for scheduling classes, storing grades and attendance records, etc.) Local customizations can be added using a proprietary tag language.

The backend is an Oracle database.

36 questions
4
votes
2 answers

PowerSchool API Specification

A github project, PowerAPI, offers a PHP library for fetching information from PowerSchool SISes, but this does not appear to have originated from PowerSchool. Is API documentation available from some official source?
waldo-w
  • 51
  • 1
  • 4
2
votes
3 answers

PowerSchool: How to query past enrollment

I know this is somewhat of a specialized question since only a small percentage of members will even have heard of PowerSchool, but it's hard to find help for this. Given a start date and end date, I need to run a query that will return the student…
Daniel
  • 145
  • 1
  • 13
2
votes
1 answer

Trying to log into PowerSchool website using Mechanize (Python) - failing

I'm trying to log into our PowerSchool server through Python and Mechanize, but I can't seem to successfully do it. A tricky part of this is that the login form only has a single field for inputting both my username and password, separated by a…
dnaeye
  • 315
  • 1
  • 5
  • 12
1
vote
1 answer

Open ID Implementation PowerSchool PHP

I have looked into the PowerSchool's documentation on OpenID implementation. However, I believe it misses out on vital information i.e., how do we pass the required attributes. I have looked into sample implementations in other platforms. But, they…
ZerosAndOnes
  • 1,083
  • 1
  • 13
  • 25
1
vote
1 answer

Authenticating PowerSchool with Python

this is something that has been bothering me for a while. I want to write a program so that I may automatically log into my PowerSchool portal, which will in the future potentially let me do things such as parse my schedule and grades. The first…
user9232663
1
vote
1 answer

Powerschool Login Form Data

I'm trying to login to PowerSchool to scrape my grades. Whenever I run the code it gives me the login pages HTML code instead of the secured pages HTML code. Question 1: How do I get the value of the 3 fields that change labeled 'this changes' in…
1
vote
2 answers

SQL Where In not finding values I know exist

I work in a school district that uses Powerschool, and Powerschool has a custom report system that allows users to enter in SQL queries directly. When I use the custom report : SELECT T.DCID, T.LastFirst, T.teachernumber, T.Users_DCID FROM TEACHERS…
Devin
  • 11
  • 1
1
vote
1 answer

Log Into Powerschool Using Python Requests

def get_Auth(): USERNAME = User.get("1.0", END) PASSWORD = Pass.get("1.0", END) print(USERNAME) print(PASSWORD) url = 'https://ps.lphs.net/public/home.html' headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64)…
Sam
  • 47
  • 1
  • 1
  • 3
1
vote
0 answers

How to automatically email a webpage using a set schedule in javascript

I am using a Powerschool database for my school. It is a non profit educational institution and it uses a SIS to holds students information, Grades, etc. I need this webpage to be automatically emailed to all of the parents email accounts every…
1
vote
1 answer

Powerschool Python API

I cannot find a good way in Python that connects to powerschool and gives me my current gpa. Can someone please help me. As much as possible, I'm trying not to use external api's. This is my Powerschool website: https://ps.d102.org/public/
Sunny
  • 51
  • 1
  • 8
0
votes
0 answers

Calling Powerschool API from inside powerschool Authentication

I'm trying to call a API that I created (plugin) in Powerschool from a new Powerschool page but I don't want to authenticate by oauth because I should be able to send the request without any authentication because I'm already authenticated in the PS…
Osvaldo D.
  • 43
  • 2
0
votes
0 answers

PowerSchool SIS Parent Portal to retrieve files from OneDrive

I'm trying to figure out how to retrieve files from OneDrive to the Parent's page using their access in PowerSchool. Is this feasible? I have created an app in Microsoft Azure having the client's ID and Secret Key for the Microsoft Graph -- and set…
Ragome
  • 55
  • 2
  • 12
0
votes
0 answers

WebException: The request was aborted: Could not create SSL/TLS secure channel but working with POSTMAN

I am calling Power school API to fetch student data. Using the below code. public Token GetAuthToken(string baseUrl, string authKey) { try { ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 |…
Dharmendra Kumar
  • 380
  • 6
  • 21
0
votes
1 answer

PowerSchool Python Queries

I have successfully set up the plugin I need in PowerSchool to query tables via Python as follows. I looked at the examples in the PowerSchool library documentation, but cannot successfully query a specific table (while applying any filters) with…
Dance Party
  • 3,459
  • 10
  • 42
  • 67
0
votes
1 answer

PowerSchool Python API Plugin

I am attempting to connect to the PowerSchool SIS API via the Python PowerSchool library. From the installation instructions here, I am stuck on the part where I need to create an XML file (including Oauth) for uploading as a plugin (via System >…
Dance Party
  • 3,459
  • 10
  • 42
  • 67
1
2 3