isen_aurion_client 2.3.0 copy "isen_aurion_client: ^2.3.0" to clipboard
isen_aurion_client: ^2.3.0 copied to clipboard

A dart api that interfaces with the ERP Aurion used by the ISEN.

example/main.dart

import 'package:isen_aurion_client/client.dart';

void main(List<String> args) async {
  String serviceUrl = 'https://web.isen-ouest.fr/webAurion/';
  IsenAurionClient client = IsenAurionClient(serviceUrl: serviceUrl);

  // those are example credentials, if you hadn't noticed
  await client.login(
    'username',
    'password',
  );

  var schedule = await client.getUserSchedule();

  // then do whatever you want with that schedule.
  print(schedule);
}
0
likes
140
points
15
downloads

Publisher

verified publishermelois.dev

Weekly Downloads

A dart api that interfaces with the ERP Aurion used by the ISEN.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

html, http, json_annotation, meta, requests, xpath_selector_html_parser

More

Packages that depend on isen_aurion_client