Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.84 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.84 KB

ClassDarts is a simple and easy package for interfacing with the classcharts school learning platform by Tes

Features

TODO: List what your package can do. Maybe include images, gifs, or videos.

Getting started

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage

This example uses classdarts to authenticate and get basic infomation about the user

void main() async {
  var user = UserAuthentication();
  var session = await user.login(AN3KHGI7JG, "5/09/2005");
  print(session);
  var student = StudentClient(session);
  print(student.basicInfo());
}

Additional information

TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.

To contribute to this repository we recomend installing the eduAmphe essentials pack before doing so

Many thanks to the unoffical classcharts api authors for creating documentations to classcharts.

Huge thanks to classcharts.py authors for using a diffrent implementation of logins that acc worked on dio.