kedro-telemetry


Namekedro-telemetry JSON
Version 0.3.2 PyPI version JSON
download
home_page
SummaryKedro-Telemetry
upload_time2024-02-29 11:32:19
maintainer
docs_urlNone
authorKedro
requires_python>=3.8
licenseApache Software License (Apache 2.0)
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Kedro-Telemetry

[![Python Version](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)](https://pypi.org/project/kedro-telemetry/)
[![PyPI version](https://badge.fury.io/py/kedro-telemetry.svg)](https://pypi.org/project/kedro-telemetry/)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)

## What is kedro-telemetry?

Kedro-Telemetry is a [plugin](https://docs.kedro.org/en/stable/extend_kedro/plugins.html)
that gathers anonymised and aggregated usage analytics
to help [the Kedro team](https://docs.kedro.org/en/stable/contribution/technical_steering_committee.html)
understand how Kedro is used and prioritise improvements to the product accordingly.

## What data is being collected?

Read [our Telemetry documentation](https://docs.kedro.org/en/stable/configuration/telemetry.html)
for further information on the intent of the data collection and what data is collected.

For technical information on how the telemetry collection works, you can browse
[the source code of `kedro-telemetry`](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry).

## How do I consent to the use of Kedro-Telemetry?

Kedro-Telemetry is a Python plugin. To install it:

```console
pip install kedro-telemetry
```

> _Note:_ If you are using an official [Kedro project template](https://kedro.readthedocs.io/en/stable/02_get_started/06_starters.html) then `kedro-telemetry` is included in the [project-level `requirements.txt`](https://kedro.readthedocs.io/en/stable/04_kedro_project_setup/01_dependencies.html#kedro-install) of the starter. `kedro-telemetry` is activated after you have a created a new project with a [Kedro project template](https://kedro.readthedocs.io/en/stable/02_get_started/06_starters.html) and have run `kedro install` from the terminal.

When you next run the Kedro CLI you will be asked for consent to share usage analytics data for the purposes explained in the privacy notice, and a `.telemetry` YAML file will be created in the project root directory. The variable `consent` will be set according to your choice in the file, e.g. if you consent:

```yaml
consent: true
```

>*Note:* The `.telemetry` file should not be committed to `git` or packaged in deployment. In `kedro>=0.17.4` the file is git-ignored.

## How do I withdraw consent?

To withdraw consent, you can change the `consent` variable to `false` in `.telemetry` YAML by editing the file in the following way:

```yaml
consent: false
```

Or you can uninstall the plugin:

```console
pip uninstall kedro-telemetry
```

## What happens when I withdraw consent?

Data will only be collected if consent is given. Otherwise, if consent was explicitly denied or withdrawn, the message below will be printed out on every Kedro CLI invocation. If you explicitly deny consent from the beginning, no data will be collected. If you withdraw consent later, the processing of data will be stopped from that moment on.

```
Kedro-Telemetry is installed, but you have opted out of sharing usage analytics so none will be collected.
```

## How is the data collected

Kedro-Telemetry uses [`pluggy`](https://pypi.org/project/pluggy/) hooks and [`requests`](https://pypi.org/project/requests/) to send data to [Heap Analytics](https://heap.io/). Project maintainers have access to the data and can create dashboards that show adoption and feature usage.

## What licence do you use?

Kedro-Telemetry is licensed under the [Apache 2.0](https://github.com/kedro-org/kedro-plugins/blob/main/LICENSE.md) License.

## Python version support policy

* The [Kedro-Telemetry](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry) supports all Python versions that are actively maintained by the CPython core team. When a [Python version reaches end of life](https://devguide.python.org/versions/#versions), support for that version is dropped from `kedro-telemetry`. This is not considered a breaking change.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "kedro-telemetry",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Kedro",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/30/f2/9af76f8369537b7d6ef4b6990d38b5eba32cea8af1658616ce6e7885cd4a/kedro-telemetry-0.3.2.tar.gz",
    "platform": null,
    "description": "# Kedro-Telemetry\n\n[![Python Version](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)](https://pypi.org/project/kedro-telemetry/)\n[![PyPI version](https://badge.fury.io/py/kedro-telemetry.svg)](https://pypi.org/project/kedro-telemetry/)\n[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)\n\n## What is kedro-telemetry?\n\nKedro-Telemetry is a [plugin](https://docs.kedro.org/en/stable/extend_kedro/plugins.html)\nthat gathers anonymised and aggregated usage analytics\nto help [the Kedro team](https://docs.kedro.org/en/stable/contribution/technical_steering_committee.html)\nunderstand how Kedro is used and prioritise improvements to the product accordingly.\n\n## What data is being collected?\n\nRead [our Telemetry documentation](https://docs.kedro.org/en/stable/configuration/telemetry.html)\nfor further information on the intent of the data collection and what data is collected.\n\nFor technical information on how the telemetry collection works, you can browse\n[the source code of `kedro-telemetry`](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry).\n\n## How do I consent to the use of Kedro-Telemetry?\n\nKedro-Telemetry is a Python plugin. To install it:\n\n```console\npip install kedro-telemetry\n```\n\n> _Note:_ If you are using an official [Kedro project template](https://kedro.readthedocs.io/en/stable/02_get_started/06_starters.html) then `kedro-telemetry` is included in the [project-level `requirements.txt`](https://kedro.readthedocs.io/en/stable/04_kedro_project_setup/01_dependencies.html#kedro-install) of the starter. `kedro-telemetry` is activated after you have a created a new project with a [Kedro project template](https://kedro.readthedocs.io/en/stable/02_get_started/06_starters.html) and have run `kedro install` from the terminal.\n\nWhen you next run the Kedro CLI you will be asked for consent to share usage analytics data for the purposes explained in the privacy notice, and a `.telemetry` YAML file will be created in the project root directory. The variable `consent` will be set according to your choice in the file, e.g. if you consent:\n\n```yaml\nconsent: true\n```\n\n>*Note:* The `.telemetry` file should not be committed to `git` or packaged in deployment. In `kedro>=0.17.4` the file is git-ignored.\n\n## How do I withdraw consent?\n\nTo withdraw consent, you can change the `consent` variable to `false` in `.telemetry` YAML by editing the file in the following way:\n\n```yaml\nconsent: false\n```\n\nOr you can uninstall the plugin:\n\n```console\npip uninstall kedro-telemetry\n```\n\n## What happens when I withdraw consent?\n\nData will only be collected if consent is given. Otherwise, if consent was explicitly denied or withdrawn, the message below will be printed out on every Kedro CLI invocation. If you explicitly deny consent from the beginning, no data will be collected. If you withdraw consent later, the processing of data will be stopped from that moment on.\n\n```\nKedro-Telemetry is installed, but you have opted out of sharing usage analytics so none will be collected.\n```\n\n## How is the data collected\n\nKedro-Telemetry uses [`pluggy`](https://pypi.org/project/pluggy/) hooks and [`requests`](https://pypi.org/project/requests/) to send data to [Heap Analytics](https://heap.io/). Project maintainers have access to the data and can create dashboards that show adoption and feature usage.\n\n## What licence do you use?\n\nKedro-Telemetry is licensed under the [Apache 2.0](https://github.com/kedro-org/kedro-plugins/blob/main/LICENSE.md) License.\n\n## Python version support policy\n\n* The [Kedro-Telemetry](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry) supports all Python versions that are actively maintained by the CPython core team. When a [Python version reaches end of life](https://devguide.python.org/versions/#versions), support for that version is dropped from `kedro-telemetry`. This is not considered a breaking change.\n",
    "bugtrack_url": null,
    "license": "Apache Software License (Apache 2.0)",
    "summary": "Kedro-Telemetry",
    "version": "0.3.2",
    "project_urls": {
        "Documentation": "https://github.com/kedro-org/kedro-plugins/blob/main/kedro-telemetry/README.md",
        "Source": "https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry",
        "Tracker": "https://github.com/kedro-org/kedro-plugins/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7981359c69932e85769aea71ed9fabf18c12d2384cfc5235579d97121f48e9d1",
                "md5": "a250f9a1b1ed8f71ed5072dda37e43b9",
                "sha256": "089376c8fcb1e7ac6b9fd4a62801e5409fe0b2eb8544ddc2470d77c47d666889"
            },
            "downloads": -1,
            "filename": "kedro_telemetry-0.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a250f9a1b1ed8f71ed5072dda37e43b9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 8815,
            "upload_time": "2024-02-29T11:32:16",
            "upload_time_iso_8601": "2024-02-29T11:32:16.987555Z",
            "url": "https://files.pythonhosted.org/packages/79/81/359c69932e85769aea71ed9fabf18c12d2384cfc5235579d97121f48e9d1/kedro_telemetry-0.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30f29af76f8369537b7d6ef4b6990d38b5eba32cea8af1658616ce6e7885cd4a",
                "md5": "74f8c211a233f32680569cac27145904",
                "sha256": "5488f65c201a98b707c55e51f152af1cc7ff453fffadb897ad210c093233d677"
            },
            "downloads": -1,
            "filename": "kedro-telemetry-0.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "74f8c211a233f32680569cac27145904",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13054,
            "upload_time": "2024-02-29T11:32:19",
            "upload_time_iso_8601": "2024-02-29T11:32:19.154159Z",
            "url": "https://files.pythonhosted.org/packages/30/f2/9af76f8369537b7d6ef4b6990d38b5eba32cea8af1658616ce6e7885cd4a/kedro-telemetry-0.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-29 11:32:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kedro-org",
    "github_project": "kedro-plugins",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "kedro-telemetry"
}
        
Elapsed time: 0.21910s