--- id: nextcloudmonitor version: "1.5.1" license: unclear license_treatment: permissive maintenance: dormant --- # nextcloudmonitor — Python wrapper around nextcloud monitor api License: permissive · Maintenance: dormant · Downloads: 73.8K/mo ## What it is and what it does NextcloudMonitor is a Python client library that queries the Nextcloud monitor API to fetch server status, system information, and user activity metrics. It abstracts the HTTP calls to Nextcloud's monitoring endpoints behind a simple object interface, letting you access nested data like system version, active user counts, and other instance metrics through a dictionary-like structure. The library depends only on requests and handles basic API authentication via admin credentials and app passwords. It includes error handling for API failures and supports SSL verification bypass for self-signed certificates. However, the package has been dormant for over two years, meaning it may not support recent Nextcloud API changes or receive security updates. Use it for: - Monitor Nextcloud server health and version in automated dashboards or alerting systems. - Track active user counts and system load metrics for capacity planning. - Build custom admin tools that pull Nextcloud instance statistics for reporting. - Integrate Nextcloud status checks into DevOps monitoring pipelines. - Audit Nextcloud deployments by querying system metrics programmatically. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Wraps the Nextcloud monitor API to retrieve system status, user activity, and server metrics from a Nextcloud instance via Python. Yes, if you need a lightweight Python interface to Nextcloud's monitor API and your Nextcloud version is compatible with the last release (June 2024). The permissive MIT license and low dependency footprint make it safe to adopt. However, verify that it works with your Nextcloud version first, since the package is dormant and may not support newer API changes. Not recommended if you need active maintenance or support. ## Install pip install nextcloudmonitor uv add nextcloudmonitor poetry add nextcloudmonitor ## Installing nextcloudmonitor Before you install: Low install friction with a single dependency (requests). Dormant maintenance status—last release was 781 days ago—suggests the package is stable but receives no active development or bug fixes. License in practice: MIT license (permissive) means you can use, modify, and distribute this package freely with minimal restrictions. Quickstart: pip install nextcloudmonitor from nextcloudmonitor import NextcloudMonitor ncm = NextcloudMonitor("https://your_nextcloud_url", "admin_user", "app_password") print(ncm.data['nextcloud']['system']['version']) Requires a Nextcloud admin user account and an app-specific password generated from Nextcloud security settings. Verify before relying: - Whether the package works with current Nextcloud versions (last release 781 days ago). - Python version compatibility (requires_python not specified in metadata). - Whether SSL verification bypass (added in v1.2.0) is still functional. ## Package facts - License: not declared (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 73.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags nextcloud monitoring api wrapper, nextcloud system status python, nextcloud server metrics, nextcloud admin api client, nextcloud health check, nextcloud instance monitoring, nextcloud api python library, nextcloud, monitoring, api-client [View on SkillFed](https://skillfed.io/packages/nextcloudmonitor) · [View on PyPI](https://pypi.org/project/nextcloudmonitor/)