Metadata-Version: 2.1
Name: nextcloudmonitor
Version: 1.0.0
Summary: Python wrapper around nextcloud monitor api
Home-page: UNKNOWN
License: UNKNOWN
Description: # NextcloudMonitor
        
        Python wrapper around Nextcloud monitor api
        
        ## Installation
        
        ```bash
        pip install nextcloudmonitor
        ```
        
        ## QuickStart
        
        ```python
        >>> from nextcloudmonitor import NextcloudMonitor
        >>> ncm = NextcloudMonitor("https://your_nextcloud_url", "nextcloud_admin_username", "nextcloud_app_password")
        >>> ncm.data['nextcloud']['system']['version']
        '16.0.5.1'
        >>> ncm.data['activeUsers']['last24hours']
        1
        ```
        
        Notes:
        
        - The user must be a user that has access to the nextcloud monitor api (generally an admin user)
        - The nextcloud app password should be generated from the nextcoud security settings page.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
