This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Python Principles Student Progress Automation Script | |
This script is designed for teachers to automate the process of logging into each student's account on the Python Principles website, retrieving their progress scores, and updating records. Since there is no dedicated teacher platform for monitoring students, this script provides a solution for teachers to efficiently manage and track student progress. | |
Dependencies: | |
- Selenium: A Python library for automating web browser interactions. | |
Usage: | |
1. Ensure you have the necessary dependencies installed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
HTTP Playground API Explorer | |
Functions for interacting with the HTTP Playground (https://github.com/HopC-HopC/HTTP_playground) API. | |
Created for educational purposes, specifically for A Level Computer Science teaching. | |
API Endpoints: | |
- GET /get_all: Retrieve all data | |
- GET /get/<id>: Retrieve data by ID | |
- PATCH /update_age/<id>/<age>: Update entry age by ID |