tautulli 2.0.0+1 copy "tautulli: ^2.0.0+1" to clipboard
tautulli: ^2.0.0+1 copied to clipboard

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 = '<apikey>';
    Tautulli api = Tautulli(host: host, apiKey: key);
    // Some example commands to call
    await printArnoldQuote(api);
    await backupSystem(api);
    await printActivity(api);
    await printHistory(api);
}

/// Print an Arnold Schwarzenegger quote
Future<void> printArnoldQuote(Tautulli api) async {
    api.miscellaneous.arnold().then((quote) => print(quote));
}

/// Backup both the configuration and database
Future<void> backupSystem(Tautulli api) async {
    api.system.backupConfig();
    api.system.backupDB();
}

/// Print basic information on all active sessions
Future<void> printActivity(Tautulli api) async {
    // Fetch the current activity
    api.activity.getActivity().then((activity) {
        // Loop over all sessions and print "user / content / ip address"
        activity?.sessions?.forEach((session) => print('${session.user} / ${session.fullTitle} / ${session.ipAddressPublic}'));
    });
}

/// Print the last five sessions from history
Future<void> printHistory(Tautulli api) async {
    api.history.getHistory(length: 5).then((history) {
        /// Loop over all history records and print "user / content / date"
        history.records?.forEach((record) => print('${record.user} / ${record.fullTitle} / ${record.date}'));
    });
}
1
likes
110
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

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

dio, json_annotation

More

Packages that depend on tautulli