schedule_package 0.1.3 copy "schedule_package: ^0.1.3" to clipboard
schedule_package: ^0.1.3 copied to clipboard

A platform for parsing the schedule site.

schedule_package #

Use it to implement your own solutions with the schedule of some educational institutions on Flutter.

Before using it, you can contact the developer or read a little documentation. Remember that when you use this package, you must specify the author, or you can write your own site parser.

Getting Started #

Using this method, you can get a schedule for the week of a certain group.

Future<void> getAllGroupsWeek() async {
    await getScheduleWeekFuture("cg38.htm").then((value) {
      print(value);
    });
  }
getAllGroupsFuture()

Using this method, you can get a list of all groups.

Future<void> getAllGroupsMain() async {
    if (groupList.length == 0) {
      await getAllGroupsFuture().then((value) {
		print(value);
	  }));
    }
  }
2
likes
85
pub points
0%
popularity

Publisher

unverified uploader

A platform for parsing the schedule site.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, html, http, universal_html

More

Packages that depend on schedule_package