cognite-neat


Namecognite-neat JSON
Version 0.119.0 PyPI version JSON
download
home_pageNone
SummaryKnowledge graph transformation
upload_time2025-03-31 11:13:16
maintainerNone
docs_urlNone
authorNikola Vasiljevic
requires_python>=3.10
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # kNowlEdge grAph Transformer (NEAT)

[![release](https://img.shields.io/github/actions/workflow/status/cognitedata/neat/release.yaml?style=for-the-badge)](https://github.com/cognitedata/neat/actions/workflows/release.yaml)
[![Documentation Status](https://readthedocs.com/projects/cognite-neat/badge/?version=latest&style=for-the-badge)](https://cognite-neat.readthedocs-hosted.com/en/latest/?badge=latest)
[![Github](https://shields.io/badge/github-cognite/neat-green?logo=github&style=for-the-badge)](https://github.com/cognitedata/neat)
[![PyPI](https://img.shields.io/pypi/v/cognite-neat?style=for-the-badge)](https://pypi.org/project/cognite-neat/)
[![Downloads](https://img.shields.io/pypi/dm/cognite-neat?style=for-the-badge)](https://pypistats.org/packages/cognite-neat)
[![Docker Pulls](https://img.shields.io/docker/pulls/cognite/neat?style=for-the-badge)](https://hub.docker.com/r/cognite/neat)
[![GitHub](https://img.shields.io/github/license/cognitedata/neat?style=for-the-badge)](https://github.com/cognitedata/neat/blob/master/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/ambv/black)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=for-the-badge)](https://github.com/astral-sh/ruff)
[![mypy](https://img.shields.io/badge/mypy-checked-000000.svg?style=for-the-badge&color=blue)](http://mypy-lang.org)

NEAT is a domain expert centric and developer friendly solution for rapid:

- semantic data modeling
- creation, transformation and enrichment of knowledge graphs
- and ingestion of the models and graphs into [Cognite Data Fusion](https://www.cognite.com/en/product/cognite_data_fusion_industrial_dataops_platform)

NEAT is using open and globally recognized standards maintained by the [World Wide Web Consortium (W3C)](https://www.w3.org/RDF/).
NEAT represents an essential tool for creation of standardized, machine-actionable, linked and semantic (meta)data.

> NEAT is an acronym derived from k**N**owl**Ed**ge gr**A**ph **T**ransformer hallucinated by GenAI.

## Installation

```bash
pip install cognite-neat
```

## Usage

The user interface for `NEAT` is a notebook-based environment. Once you have set up your notebook
environment, you start by creating a `CogniteClient` and instantiate a `NeatSession` object.

```python
from cognite.neat import NeatSession, get_cognite_client

client = get_cognite_client(".env")

neat = NeatSession(client)

neat.read.cdf.data_model(("my_space", "MyDataModel", "v1"))
```

## Documentation

For more information, see the [documentation](https://cognite-neat.readthedocs-hosted.com/en/latest/)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cognite-neat",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Nikola Vasiljevic",
    "author_email": "nikola.vasiljevic@cognite.com",
    "download_url": "https://files.pythonhosted.org/packages/5b/ef/cdc96b8ae9014418dbed2779f33030e8fb1acaa8adb9f499f015ae6319ef/cognite_neat-0.119.0.tar.gz",
    "platform": null,
    "description": "# kNowlEdge grAph Transformer (NEAT)\n\n[![release](https://img.shields.io/github/actions/workflow/status/cognitedata/neat/release.yaml?style=for-the-badge)](https://github.com/cognitedata/neat/actions/workflows/release.yaml)\n[![Documentation Status](https://readthedocs.com/projects/cognite-neat/badge/?version=latest&style=for-the-badge)](https://cognite-neat.readthedocs-hosted.com/en/latest/?badge=latest)\n[![Github](https://shields.io/badge/github-cognite/neat-green?logo=github&style=for-the-badge)](https://github.com/cognitedata/neat)\n[![PyPI](https://img.shields.io/pypi/v/cognite-neat?style=for-the-badge)](https://pypi.org/project/cognite-neat/)\n[![Downloads](https://img.shields.io/pypi/dm/cognite-neat?style=for-the-badge)](https://pypistats.org/packages/cognite-neat)\n[![Docker Pulls](https://img.shields.io/docker/pulls/cognite/neat?style=for-the-badge)](https://hub.docker.com/r/cognite/neat)\n[![GitHub](https://img.shields.io/github/license/cognitedata/neat?style=for-the-badge)](https://github.com/cognitedata/neat/blob/master/LICENSE)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/ambv/black)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=for-the-badge)](https://github.com/astral-sh/ruff)\n[![mypy](https://img.shields.io/badge/mypy-checked-000000.svg?style=for-the-badge&color=blue)](http://mypy-lang.org)\n\nNEAT is a domain expert centric and developer friendly solution for rapid:\n\n- semantic data modeling\n- creation, transformation and enrichment of knowledge graphs\n- and ingestion of the models and graphs into [Cognite Data Fusion](https://www.cognite.com/en/product/cognite_data_fusion_industrial_dataops_platform)\n\nNEAT is using open and globally recognized standards maintained by the [World Wide Web Consortium (W3C)](https://www.w3.org/RDF/).\nNEAT represents an essential tool for creation of standardized, machine-actionable, linked and semantic (meta)data.\n\n> NEAT is an acronym derived from k**N**owl**Ed**ge gr**A**ph **T**ransformer hallucinated by GenAI.\n\n## Installation\n\n```bash\npip install cognite-neat\n```\n\n## Usage\n\nThe user interface for `NEAT` is a notebook-based environment. Once you have set up your notebook\nenvironment, you start by creating a `CogniteClient` and instantiate a `NeatSession` object.\n\n```python\nfrom cognite.neat import NeatSession, get_cognite_client\n\nclient = get_cognite_client(\".env\")\n\nneat = NeatSession(client)\n\nneat.read.cdf.data_model((\"my_space\", \"MyDataModel\", \"v1\"))\n```\n\n## Documentation\n\nFor more information, see the [documentation](https://cognite-neat.readthedocs-hosted.com/en/latest/)\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Knowledge graph transformation",
    "version": "0.119.0",
    "project_urls": {
        "Changelog": "https://github.com/cognitedata/neat/releases",
        "Documentation": "https://cognite-neat.readthedocs-hosted.com/",
        "GitHub": "https://github.com/cognitedata/neat",
        "Homepage": "https://cognite-neat.readthedocs-hosted.com/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7107e2e1372962ddf8a315de376c485e92afc348a97a63ca3db718068238695d",
                "md5": "6e89af3c4b30b0cd9e81fbd827db6b62",
                "sha256": "bb4d569261e5a3401bf9689faee94c3e3b80b4e8da123fae6aef0bff0475760f"
            },
            "downloads": -1,
            "filename": "cognite_neat-0.119.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6e89af3c4b30b0cd9e81fbd827db6b62",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 589856,
            "upload_time": "2025-03-31T11:13:14",
            "upload_time_iso_8601": "2025-03-31T11:13:14.960040Z",
            "url": "https://files.pythonhosted.org/packages/71/07/e2e1372962ddf8a315de376c485e92afc348a97a63ca3db718068238695d/cognite_neat-0.119.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5befcdc96b8ae9014418dbed2779f33030e8fb1acaa8adb9f499f015ae6319ef",
                "md5": "682417fb726d615da63070a616e86717",
                "sha256": "a58ab4e87fbd9b5d5caac149af6de8b87c7482d34140aa6269929354c92cc14a"
            },
            "downloads": -1,
            "filename": "cognite_neat-0.119.0.tar.gz",
            "has_sig": false,
            "md5_digest": "682417fb726d615da63070a616e86717",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 498619,
            "upload_time": "2025-03-31T11:13:16",
            "upload_time_iso_8601": "2025-03-31T11:13:16.802806Z",
            "url": "https://files.pythonhosted.org/packages/5b/ef/cdc96b8ae9014418dbed2779f33030e8fb1acaa8adb9f499f015ae6319ef/cognite_neat-0.119.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-31 11:13:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cognitedata",
    "github_project": "neat",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "cognite-neat"
}
        
Elapsed time: 0.43163s