webmin-xmlrpc


Namewebmin-xmlrpc JSON
Version 0.0.2 PyPI version JSON
download
home_page
SummaryProvides a python interface to interact with the Webmin XML-RPC API.
upload_time2024-03-10 19:33:30
maintainer
docs_urlNone
author
requires_python
license
keywords webmin xmlrpc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Webmin XML-RPC python package

This package provides a python interface to interact with the Webmin XML-RPC API.

## Usage

```python
from aiohttp.client import ClientSession
from webmin_xmlrpc.client import WebminInstance
from yarl import URL

base_url = URL.build(host="example.com", scheme="https")
session = Clientsession(base_url)
instance = WebminInstance(session)

async def get_data():
    data = await instance.update()
```

## Exposed data

- Load (1m, 5m, 15m)
- Network interfaces
- Memory information
- Uptime
- Local disk space information

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "webmin-xmlrpc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "webmin,xmlrpc",
    "author": "",
    "author_email": "Sidney Kuyateh <autinerd@kuyateh.eu>",
    "download_url": "https://files.pythonhosted.org/packages/59/89/1c93c5dcc92fa562239001ac9484a11e51f220b40b59fb35fb6ec362b727/webmin-xmlrpc-0.0.2.tar.gz",
    "platform": null,
    "description": "# Webmin XML-RPC python package\n\nThis package provides a python interface to interact with the Webmin XML-RPC API.\n\n## Usage\n\n```python\nfrom aiohttp.client import ClientSession\nfrom webmin_xmlrpc.client import WebminInstance\nfrom yarl import URL\n\nbase_url = URL.build(host=\"example.com\", scheme=\"https\")\nsession = Clientsession(base_url)\ninstance = WebminInstance(session)\n\nasync def get_data():\n    data = await instance.update()\n```\n\n## Exposed data\n\n- Load (1m, 5m, 15m)\n- Network interfaces\n- Memory information\n- Uptime\n- Local disk space information\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Provides a python interface to interact with the Webmin XML-RPC API.",
    "version": "0.0.2",
    "project_urls": {
        "Homepage": "https://github.com/autinerd/webmin-xmlrpc"
    },
    "split_keywords": [
        "webmin",
        "xmlrpc"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5431192bdc01e7ebbd80e744c1859e8e1c1c655440ccbd1e88ee3ab0ff9aebdc",
                "md5": "1cf91cf2519c48e9ac1b5f1d3ef3bded",
                "sha256": "f00267fcfc06577ab6578adae0efc41c0c8044d704e84a7890dbb5e37cec4d8a"
            },
            "downloads": -1,
            "filename": "webmin_xmlrpc-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1cf91cf2519c48e9ac1b5f1d3ef3bded",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4754,
            "upload_time": "2024-03-10T19:33:29",
            "upload_time_iso_8601": "2024-03-10T19:33:29.194929Z",
            "url": "https://files.pythonhosted.org/packages/54/31/192bdc01e7ebbd80e744c1859e8e1c1c655440ccbd1e88ee3ab0ff9aebdc/webmin_xmlrpc-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59891c93c5dcc92fa562239001ac9484a11e51f220b40b59fb35fb6ec362b727",
                "md5": "d4c567ce0809f08344f04c5b98d9f8e0",
                "sha256": "6d7bfab1f25211263647bc214523d2834803368498e007ce3c358192f9dda950"
            },
            "downloads": -1,
            "filename": "webmin-xmlrpc-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d4c567ce0809f08344f04c5b98d9f8e0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6434,
            "upload_time": "2024-03-10T19:33:30",
            "upload_time_iso_8601": "2024-03-10T19:33:30.811490Z",
            "url": "https://files.pythonhosted.org/packages/59/89/1c93c5dcc92fa562239001ac9484a11e51f220b40b59fb35fb6ec362b727/webmin-xmlrpc-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 19:33:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "autinerd",
    "github_project": "webmin-xmlrpc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "webmin-xmlrpc"
}
        
Elapsed time: 0.22335s