linuxfabrik-lib


Namelinuxfabrik-lib JSON
Version 2023051201.post1 PyPI version JSON
download
home_page
SummaryPython libraries used in various Linuxfabrik projects, including the 'Linuxfabrik Monitoring Plugins' project.
upload_time2023-08-24 06:31:18
maintainer
docs_urlNone
author
requires_python>=3.6
licenseThis is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to <http://unlicense.org/>
keywords lib libs monitoring monitoring plugins icinga nagios
VCS
bugtrack_url
requirements beautifulsoup4
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Linuxfabrik's Python Libraries

These Python libraries are used in various projects of Linuxfabrik, including the [Linuxfabrik Monitoring Plugins project](https://github.com/Linuxfabrik/monitoring-plugins).

List of libraries:

* args.py: Extends argparse by new input argument data types on demand.
* base.py: Provides very common every-day functions.
* cache.py: Simple Cache in the form of a Key-Value Store (KVS) like Redis, based on SQLite, optionally supporting expiration of keys. No detailed error handling here. If the cache does not work, we (currently) don't report the reason and simply return `False`.
* db_mysql.py: Library for accessing MySQL/MariaDB servers.
* db_sqlite.py: Library for accessing SQLite databases.
* disk.py: Offers file and disk related functions, like getting a list of partitions, grepping a file, etc.
* distro.py: Provides information about the Linux distribution it runs on, such as a reliable machine-readable distro ID and "os_family" (known from Ansible).
* dmidecode.py: Library for parsing information from dmidecode. Have a look at `man dmidecode` for details about dmidecode.
* endoflifedate.py: This library stores information from https://endoflife.date/api/ for offline usage and therefore needs to be updated periodically when version checks don't have access to the Internet.
* feedparser.py: Parse Atom and RSS feeds in Python.
* globals.py: This library defines the global plugin states, based on the POSIX spec of returning a positive value and just like in `monitoring-plugins/plugins-scripts/utils.sh.in`, except that we do not make use of `STATE_DEPENDENT`.
* grassfish.py: Provides functions using the Grassfish REST-API.
* huawei.py: This library collects some Huawei related functions that are needed by Huawei check plugins.
* human.py: Functions to convert raw numbers, times etc. to a human readable representation (and sometimes back).
* icinga.py: This module tries to make accessing the Icinga2 API easier.
* infomaniak.py: Provides functions using the Infomanik REST-API.
* jitsi.py: This library collects some Jitsi related functions that are needed by more than one Jitsi plugin.
* librenms.py: This library collects some LibreNMS related functions that are needed by LibreNMS check plugins.
* net.py: Provides network related functions and variables.
* nodebb.py: This library collects some NodeBB related functions that are needed by more than one NodeBB plugin.
* powershell.py: This library collects some Microsoft PowerShell related functions.
* psutil.py: Wrapper library for functions from psutil.
* redfish.py: This library parses data returned from the Redfish API.
* rocket.py: This library collects some Rocket.Chat related functions that are needed by more than one Rocket.Chat plugin.
* shell.py: Communicates with the Shell.
* smb.py: Provides functions to establish native SMB connections.
* test.py: Provides test functions for unit tests.
* time.py: Provides datetime functions.
* txt.py: A collection of text functions.
* url.py: Get for example HTML or JSON from an URL.
* veeam.py: This library interacts with the Veeam Enterprise Manager API.
* version.py: Provides functions for handling software versions.
* wildfly.py: This library collects some WildFly/JBoss related functions that are needed by more than one WildFly/JBoss plugin.
* winrm.py: This library collects some Microsoft WinRM related functions.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "linuxfabrik-lib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "lib,libs,monitoring,monitoring plugins,icinga,nagios",
    "author": "",
    "author_email": "\"Linuxfabrik GmbH, Zurich, Switzerland\" <info@linuxfabrik.ch>",
    "download_url": "https://files.pythonhosted.org/packages/34/c4/ddb96b527ea50bf6ab66484253d1ff97bf0c849da510b9367fddaef821e3/linuxfabrik-lib-2023051201.post1.tar.gz",
    "platform": null,
    "description": "# Linuxfabrik's Python Libraries\n\nThese Python libraries are used in various projects of Linuxfabrik, including the [Linuxfabrik Monitoring Plugins project](https://github.com/Linuxfabrik/monitoring-plugins).\n\nList of libraries:\n\n* args.py: Extends argparse by new input argument data types on demand.\n* base.py: Provides very common every-day functions.\n* cache.py: Simple Cache in the form of a Key-Value Store (KVS) like Redis, based on SQLite, optionally supporting expiration of keys. No detailed error handling here. If the cache does not work, we (currently) don't report the reason and simply return `False`.\n* db_mysql.py: Library for accessing MySQL/MariaDB servers.\n* db_sqlite.py: Library for accessing SQLite databases.\n* disk.py: Offers file and disk related functions, like getting a list of partitions, grepping a file, etc.\n* distro.py: Provides information about the Linux distribution it runs on, such as a reliable machine-readable distro ID and \"os_family\" (known from Ansible).\n* dmidecode.py: Library for parsing information from dmidecode. Have a look at `man dmidecode` for details about dmidecode.\n* endoflifedate.py: This library stores information from https://endoflife.date/api/ for offline usage and therefore needs to be updated periodically when version checks don't have access to the Internet.\n* feedparser.py: Parse Atom and RSS feeds in Python.\n* globals.py: This library defines the global plugin states, based on the POSIX spec of returning a positive value and just like in `monitoring-plugins/plugins-scripts/utils.sh.in`, except that we do not make use of `STATE_DEPENDENT`.\n* grassfish.py: Provides functions using the Grassfish REST-API.\n* huawei.py: This library collects some Huawei related functions that are needed by Huawei check plugins.\n* human.py: Functions to convert raw numbers, times etc. to a human readable representation (and sometimes back).\n* icinga.py: This module tries to make accessing the Icinga2 API easier.\n* infomaniak.py: Provides functions using the Infomanik REST-API.\n* jitsi.py: This library collects some Jitsi related functions that are needed by more than one Jitsi plugin.\n* librenms.py: This library collects some LibreNMS related functions that are needed by LibreNMS check plugins.\n* net.py: Provides network related functions and variables.\n* nodebb.py: This library collects some NodeBB related functions that are needed by more than one NodeBB plugin.\n* powershell.py: This library collects some Microsoft PowerShell related functions.\n* psutil.py: Wrapper library for functions from psutil.\n* redfish.py: This library parses data returned from the Redfish API.\n* rocket.py: This library collects some Rocket.Chat related functions that are needed by more than one Rocket.Chat plugin.\n* shell.py: Communicates with the Shell.\n* smb.py: Provides functions to establish native SMB connections.\n* test.py: Provides test functions for unit tests.\n* time.py: Provides datetime functions.\n* txt.py: A collection of text functions.\n* url.py: Get for example HTML or JSON from an URL.\n* veeam.py: This library interacts with the Veeam Enterprise Manager API.\n* version.py: Provides functions for handling software versions.\n* wildfly.py: This library collects some WildFly/JBoss related functions that are needed by more than one WildFly/JBoss plugin.\n* winrm.py: This library collects some Microsoft WinRM related functions.\n",
    "bugtrack_url": null,
    "license": "This is free and unencumbered software released into the public domain.  Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.  In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  For more information, please refer to <http://unlicense.org/>",
    "summary": "Python libraries used in various Linuxfabrik projects, including the 'Linuxfabrik Monitoring Plugins' project.",
    "version": "2023051201.post1",
    "project_urls": {
        "Documentation": "https://github.com/Linuxfabrik/lib/blob/master/README.md",
        "Download": "https://github.com/Linuxfabrik/lib/releases",
        "Homepage": "https://github.com/Linuxfabrik/lib",
        "Source": "https://github.com/Linuxfabrik/lib",
        "Tracker": "https://github.com/Linuxfabrik/lib/issues"
    },
    "split_keywords": [
        "lib",
        "libs",
        "monitoring",
        "monitoring plugins",
        "icinga",
        "nagios"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1cce104afa4a6cf1288cf1c693ed5afa814a5da2453a92906a52a98964ac011",
                "md5": "f6cbc3a96f0d3037a958a985cf930a70",
                "sha256": "ed243c8c5425c4c9a5fa00c6b6c1a3471daa14e546835fa3f8897f4f4d66982a"
            },
            "downloads": -1,
            "filename": "linuxfabrik_lib-2023051201.post1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f6cbc3a96f0d3037a958a985cf930a70",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 75876,
            "upload_time": "2023-08-24T06:31:16",
            "upload_time_iso_8601": "2023-08-24T06:31:16.628941Z",
            "url": "https://files.pythonhosted.org/packages/c1/cc/e104afa4a6cf1288cf1c693ed5afa814a5da2453a92906a52a98964ac011/linuxfabrik_lib-2023051201.post1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34c4ddb96b527ea50bf6ab66484253d1ff97bf0c849da510b9367fddaef821e3",
                "md5": "9ac54d9d8e347106875b4755a58e9050",
                "sha256": "22933bc20135834c2fa3f264f25483f8009b3203f8f0449dbcf7d430175386ec"
            },
            "downloads": -1,
            "filename": "linuxfabrik-lib-2023051201.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "9ac54d9d8e347106875b4755a58e9050",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 60676,
            "upload_time": "2023-08-24T06:31:18",
            "upload_time_iso_8601": "2023-08-24T06:31:18.694754Z",
            "url": "https://files.pythonhosted.org/packages/34/c4/ddb96b527ea50bf6ab66484253d1ff97bf0c849da510b9367fddaef821e3/linuxfabrik-lib-2023051201.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-24 06:31:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Linuxfabrik",
    "github_project": "lib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "beautifulsoup4",
            "specs": []
        }
    ],
    "lcname": "linuxfabrik-lib"
}
        
Elapsed time: 0.10459s