kumaone


Namekumaone JSON
Version 0.0.1a6 PyPI version JSON
download
home_pageNone
SummaryAutomation friendly bulk action CLI helper for Uptime Kuma.
upload_time2024-04-24 22:42:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords cli kuma kumaone monitoring python3 uptime-kuma
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # kumaone

[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
[![PyPI - Version](https://img.shields.io/pypi/v/kumaone.svg)](https://pypi.org/project/kumaone)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kumaone.svg)](https://pypi.org/project/kumaone)
[![Documentation Status](https://readthedocs.org/projects/kumaone/badge/?version=latest)](https://kumaone.readthedocs.io/en/latest/?badge=latest)

-----

**Table of Contents**

- [Note](#note)
- [Virtualenv](#virtualenv)
- [Installation](#installation)

## Note

`kumaone`'s primary objective is to enable users to perform bulk action in `uptime kuma` server. A very special thanks
to the author and contributors of the project [uptime-kuma-api](https://github.com/lucasheld/uptime-kuma-api). `kumaone`
is built by studying and understanding the code of `uptime-kuma-api` and in places I used some parts of the code as it
is from `uptime-kuma-api`. Appreciate the outstanding work done by the author and contributors of both
[uptime kuma](https://github.com/louislam/uptime-kuma) and `uptime-kuma-api` project.

`kumaone` is a CLI application. Designed for bulk operations mainly from reading configuration files. `kumaone` is very
early in development. Contribution and constructive feedbacks are always welcome.

## Virtualenv

- Install `pipenv` from [here](https://pipenv.pypa.io/en/latest/installation/)

- Activate virtual environment

  ```shell
  pipenv shell
  ```

  > if there are no virtual environment available (e.g. first use), a virtual environment will be created and activated
    automatically.

- Install dependencies

  To install dependencies with `pipenv` use the following command

  ```shell
  pipenv install
  ```

  To install `dev` dependencies use `--dev` flag

  ```shell
  pipenv install --dev
  ```

## Installation

```shell
pip install kumaone
```

## Installation (Dev)

```shell
pip install -e .
```

## To Do List

### Info

- [x] Show information about `kumaone`

### Configuration

- [x] Show `uptime kuma` configuration (default/custom paths).
- [x] Create `uptime kuma` configuration (default/custom path).
- [x] Delete `uptime kuma` configuration.
- [ ] Edit `uptime kuma` configuration.

### Monitors

- Supported Monitor types (tested)
  - [x] HTTP
  - [x] JSON_QUERY
  - [x] PING
- [x] List all monitors.
- [x] List monitor by `groups` and `processes` also.
- [x] Show details of a monitor by ID.
- [x] Bulk `add` monitors from file(s).
- [x] Bulk `delete` monitors from file(s).
- [ ] Add single monitor from `inline` dictionary data.
- [x] Delete single Monitor by name.
- [x] Delete single monitor by id.

### Status Page

- [x] List all `staus page`(s).
- [x] See details of a `single status page`.
- [x] Add a new `status page`.
- [x] Add status pages from file(s).
- [x] Delete single status page by slug.
- [x] Delete status page from file(s).

### Notification

- Supported notification providers (tested)
  - [x] Opsgenie
  - [x] Rocket.Chat
  - [x] Slack
  - [x] Teams
  - [x] Webhook
- [x] List all `notification`(s).
- [x] See details of a `single notification` by name/id.
- [ ] Add new notification (interactive).
- [x] Add notifications from single file.
- [x] Delete notification by name.
- [x] Delete notification by id.
- [x] Delete notifications from single file.

### Maintenance

TBA

### Incident

TBA

### Change Password

- [ ] Change password from CLI.
- [ ] Update password in `kumaone` config.

### Cleanup

- [ ] Clear heartbeats.
- [ ] Clear statistics.
- [ ] Clear events.

### Backlog

- [ ] Don't stop the program if one monitor process runs into error.
- [ ] Add debug logs for methods.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "kumaone",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "cli, kuma, kumaone, monitoring, python3, uptime-kuma",
    "author": null,
    "author_email": "Dalwar Hossain <dalwar23@pm.me>",
    "download_url": "https://files.pythonhosted.org/packages/5b/40/eabf93c2dd569703f3e18f4cdeec55e4c2c2ac463e404a8fff22552cad3f/kumaone-0.0.1a6.tar.gz",
    "platform": null,
    "description": "# kumaone\n\n[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)\n[![PyPI - Version](https://img.shields.io/pypi/v/kumaone.svg)](https://pypi.org/project/kumaone)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kumaone.svg)](https://pypi.org/project/kumaone)\n[![Documentation Status](https://readthedocs.org/projects/kumaone/badge/?version=latest)](https://kumaone.readthedocs.io/en/latest/?badge=latest)\n\n-----\n\n**Table of Contents**\n\n- [Note](#note)\n- [Virtualenv](#virtualenv)\n- [Installation](#installation)\n\n## Note\n\n`kumaone`'s primary objective is to enable users to perform bulk action in `uptime kuma` server. A very special thanks\nto the author and contributors of the project [uptime-kuma-api](https://github.com/lucasheld/uptime-kuma-api). `kumaone`\nis built by studying and understanding the code of `uptime-kuma-api` and in places I used some parts of the code as it\nis from `uptime-kuma-api`. Appreciate the outstanding work done by the author and contributors of both\n[uptime kuma](https://github.com/louislam/uptime-kuma) and `uptime-kuma-api` project.\n\n`kumaone` is a CLI application. Designed for bulk operations mainly from reading configuration files. `kumaone` is very\nearly in development. Contribution and constructive feedbacks are always welcome.\n\n## Virtualenv\n\n- Install `pipenv` from [here](https://pipenv.pypa.io/en/latest/installation/)\n\n- Activate virtual environment\n\n  ```shell\n  pipenv shell\n  ```\n\n  > if there are no virtual environment available (e.g. first use), a virtual environment will be created and activated\n    automatically.\n\n- Install dependencies\n\n  To install dependencies with `pipenv` use the following command\n\n  ```shell\n  pipenv install\n  ```\n\n  To install `dev` dependencies use `--dev` flag\n\n  ```shell\n  pipenv install --dev\n  ```\n\n## Installation\n\n```shell\npip install kumaone\n```\n\n## Installation (Dev)\n\n```shell\npip install -e .\n```\n\n## To Do List\n\n### Info\n\n- [x] Show information about `kumaone`\n\n### Configuration\n\n- [x] Show `uptime kuma` configuration (default/custom paths).\n- [x] Create `uptime kuma` configuration (default/custom path).\n- [x] Delete `uptime kuma` configuration.\n- [ ] Edit `uptime kuma` configuration.\n\n### Monitors\n\n- Supported Monitor types (tested)\n  - [x] HTTP\n  - [x] JSON_QUERY\n  - [x] PING\n- [x] List all monitors.\n- [x] List monitor by `groups` and `processes` also.\n- [x] Show details of a monitor by ID.\n- [x] Bulk `add` monitors from file(s).\n- [x] Bulk `delete` monitors from file(s).\n- [ ] Add single monitor from `inline` dictionary data.\n- [x] Delete single Monitor by name.\n- [x] Delete single monitor by id.\n\n### Status Page\n\n- [x] List all `staus page`(s).\n- [x] See details of a `single status page`.\n- [x] Add a new `status page`.\n- [x] Add status pages from file(s).\n- [x] Delete single status page by slug.\n- [x] Delete status page from file(s).\n\n### Notification\n\n- Supported notification providers (tested)\n  - [x] Opsgenie\n  - [x] Rocket.Chat\n  - [x] Slack\n  - [x] Teams\n  - [x] Webhook\n- [x] List all `notification`(s).\n- [x] See details of a `single notification` by name/id.\n- [ ] Add new notification (interactive).\n- [x] Add notifications from single file.\n- [x] Delete notification by name.\n- [x] Delete notification by id.\n- [x] Delete notifications from single file.\n\n### Maintenance\n\nTBA\n\n### Incident\n\nTBA\n\n### Change Password\n\n- [ ] Change password from CLI.\n- [ ] Update password in `kumaone` config.\n\n### Cleanup\n\n- [ ] Clear heartbeats.\n- [ ] Clear statistics.\n- [ ] Clear events.\n\n### Backlog\n\n- [ ] Don't stop the program if one monitor process runs into error.\n- [ ] Add debug logs for methods.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Automation friendly bulk action CLI helper for Uptime Kuma.",
    "version": "0.0.1a6",
    "project_urls": {
        "Documentation": "https://kumaone.rtfd.io/",
        "Issues": "https://github.com/dalwar23/kumaone/issues",
        "Source": "https://github.com/dalwar23/kumaone"
    },
    "split_keywords": [
        "cli",
        " kuma",
        " kumaone",
        " monitoring",
        " python3",
        " uptime-kuma"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdbd175bd6c63a8507be8bed2942faeac2e609ec83c05693d9744fb3e75a92e1",
                "md5": "562d5082375bcff294d193f1da2df359",
                "sha256": "167cc91a33e8ac17d4b746e110f954acfe757bdbc39d1b6de9cb84be4612f71f"
            },
            "downloads": -1,
            "filename": "kumaone-0.0.1a6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "562d5082375bcff294d193f1da2df359",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 31483,
            "upload_time": "2024-04-24T22:42:35",
            "upload_time_iso_8601": "2024-04-24T22:42:35.210179Z",
            "url": "https://files.pythonhosted.org/packages/fd/bd/175bd6c63a8507be8bed2942faeac2e609ec83c05693d9744fb3e75a92e1/kumaone-0.0.1a6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b40eabf93c2dd569703f3e18f4cdeec55e4c2c2ac463e404a8fff22552cad3f",
                "md5": "bfd152dbe5a3b45c8dc68e1429d1167f",
                "sha256": "6549d0ec616179b95833372d25aa2f4c31a8e0894ec75de7be1c56c6f043967b"
            },
            "downloads": -1,
            "filename": "kumaone-0.0.1a6.tar.gz",
            "has_sig": false,
            "md5_digest": "bfd152dbe5a3b45c8dc68e1429d1167f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 22602,
            "upload_time": "2024-04-24T22:42:34",
            "upload_time_iso_8601": "2024-04-24T22:42:34.001494Z",
            "url": "https://files.pythonhosted.org/packages/5b/40/eabf93c2dd569703f3e18f4cdeec55e4c2c2ac463e404a8fff22552cad3f/kumaone-0.0.1a6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-24 22:42:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dalwar23",
    "github_project": "kumaone",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "kumaone"
}
        
Elapsed time: 0.42361s