tautulli 0.0.4 copy "tautulli: ^0.0.4" to clipboard
tautulli: ^0.0.4 copied to clipboard

discontinued
outdated

Facilitate the communication to and from Tautulli's API, a Python based monitoring and tracking tool for Plex Media Server.

example/main.dart

import 'package:tautulli/tautulli.dart';

void main() async {
    // The host must include the protocol
    // If required, the host should include the port and the base URL as well
    String host = 'http://192.168.1.111:8181/tautulli';
    // Your key can be fetched from the Tautulli web GUI
    String key = '668133da953e4e9e911de5d7b20a152b';
    Tautulli tautulli = Tautulli(host: host, apiKey: key);
    // Run the `arnold` command for example, which fetches an Arnold Schwarzenegger quote
    await tautulli.miscellaneous.arnold().then((quote) => print(quote));
}
1
likes
0
pub points
0%
popularity

Publisher

verified publishercomet.tools

Facilitate the communication to and from Tautulli's API, a Python based monitoring and tracking tool for Plex Media Server.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio, json_annotation, meta

More

Packages that depend on tautulli