neptune-client


Nameneptune-client JSON
Version 1.10.2 PyPI version JSON
download
home_pagehttps://neptune.ai/
SummaryNeptune Client
upload_time2024-04-08 08:28:36
maintainerNone
docs_urlNone
authorneptune.ai
requires_python<4.0,>=3.7
licenseApache-2.0
keywords mlops ml experiment tracking ml model registry ml model store ml metadata store
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
    <img src="https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/Github-cover.png" width="1500" />
 <h1>neptune.ai</h1>
</div>

<div align="center">
  <a href="https://docs.neptune.ai/usage/quickstart/">Quickstart</a>
  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
  <a href="https://neptune.ai/">Website</a>
  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
  <a href="https://docs.neptune.ai/">Docs</a>
  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
  <a href="https://github.com/neptune-ai/examples">Examples</a>
  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
  <a href="https://neptune.ai/resources">Resource center</a>
  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
  <a href="https://neptune.ai/blog">Blog</a>
&nbsp;
  <hr />
</div>

## What is neptune.ai?

Neptune is a lightweight experiment tracker for ML teams that struggle with debugging and reproducing experiments, sharing results, and messy model handover. <b>It offers a single place to track, compare, store, and collaborate on experiments and models.</b>

With Neptune, Data Scientists can develop production-ready models faster, and ML Engineers can access model artifacts instantly in order to deploy them to production.
&nbsp;

<a href="https://www.youtube.com/watch?v=bQzgnqM5J6U"><b>Watch a 3min explainer video →</b></a>
&nbsp;

<a href="https://neptune.ai/demo"><b>Watch a 20min product demo →</b></a>
&nbsp;

<a href="https://app.neptune.ai/o/showcase/org/onboarding-project/runs/table?viewId=98f66b32-2279-4b73-8210-863021c440ac&product_tour_id=444083"><b>Play with a live example project in the Neptune app  →</b></a>
&nbsp;
## Getting started

**Step 1:** Create a **[free account](https://neptune.ai/register)**

**Step 2:** Install the Neptune client library

```bash
pip install neptune
```

**Step 3:** Add an experiment tracking snippet to your code

```python
import neptune

run = neptune.init_run(project="workspace-name/project-name")
run["parameters"] = {"lr": 0.1, "dropout": 0.4}
run["test_accuracy"] = 0.84
```

[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/neptune-ai/examples/blob/master/how-to-guides/hello-neptune/notebooks/hello_neptune.ipynb)
&nbsp;

&nbsp;
## Core features

**Log and display**

Add a snippet to any step of your ML pipeline once. Decide what and how you want to log. Run a million times.

* <a href="https://docs.neptune.ai/integrations/"><b>Any framework:</b></a> any code, fastai, PyTorch, Lightning, TensorFlow/Keras, scikit-learn, 🤗 Transformers, XGBoost, Optuna.

* <a href="https://docs.neptune.ai/logging/what_you_can_log/"><b>Any metadata type:</b></a> metrics, parameters, dataset and model versions, images, interactive plots, videos, hardware (GPU, CPU, memory), code state.

* <a href="https://docs.neptune.ai/usage/best_practices/"><b>From anywhere in your ML pipeline:</b></a> multinode pipelines, distributed computing, log during or after execution, log offline, and sync when you are back online.
&nbsp;

&nbsp;
<div align="center">
      <img border="0" alt="all metadata metrics" src="https://neptune.ai/wp-content/uploads/2023/06/log_metrics.gif" width="600">
    </a>
</div>
&nbsp;

&nbsp;

**Organize experiments**

Organize logs in a fully customizable nested structure. Display model metadata in user-defined dashboard templates.

* <a href="https://docs.neptune.ai/about/namespaces_and_fields/"><b>Nested metadata structure:</b></a> the flexible API lets you customize the metadata logging structure however you want. Organize nested parameter configs or the results on k-fold validation splits the way they should be.

* <a href="https://docs.neptune.ai/app/custom_dashboard/"><b>Custom dashboards:</b></a> combine different metadata types in one view. Define it for one run. Use anywhere. Look at GPU, memory consumption, and load times to debug training speed. See learning curves, image predictions, and confusion matrix to debug model quality.

* <a href="https://docs.neptune.ai/app/custom_views/"><b>Table views:</b></a> create different views of the runs table and save them for later. You can have separate table views for debugging, comparing parameter sets, or best experiments.
&nbsp;

&nbsp;
<div align="center">
      <img border="0" alt="organize dashboards" src="https://neptune.ai/wp-content/uploads/2023/06/organize_custom_dashboards.gif" width="600">
    </a>
</div>
&nbsp;

&nbsp;

**Compare results**

Visualize training live in the neptune.ai web app. See how different parameters and configs affect the results. Optimize models quicker.

* <a href="https://docs.neptune.ai/app/comparison/"><b>Compare:</b></a> learning curves, parameters, images, datasets.

* <a href="https://docs.neptune.ai/app/searching_table/"><b>Search, sort, and filter:</b></a> experiments by any field you logged. Use our query language to filter runs based on parameter values, metrics, execution times, or anything else.

* <a href="https://docs.neptune.ai/app/runs_table/"><b>Visualize and display:</b></a> runs table, interactive display, folder structure, dashboards.

* <a href="https://docs.neptune.ai/tutorials/monitoring_training_live/"><b>Monitor live:</b></a> hardware consumption metrics, GPU, CPU, memory.

* <a href="https://docs.neptune.ai/app/group_by/"><b>Group by:</b></a> dataset versions, parameters.
&nbsp;

&nbsp;
<div align="center">
      <img border="0" alt="compare, search, filter" src="https://neptune.ai/wp-content/uploads/2023/06/organize_search_sort_filter.gif" width="600">
    </a>
</div>
&nbsp;

&nbsp;

**Version models**

Version, review, and access production-ready models and metadata associated with them in a single place.

* <a href="https://docs.neptune.ai/model_registry/registering_model/"><b>Version models:</b></a> register models, create model versions, version external model artifacts.

* <a href="https://docs.neptune.ai/model_registry/managing_stage/"><b>Review and change stages:</b></a> look at the validation, test metrics and other model metadata. You can move models between None/Staging/Production/Archived.

* <a href="https://docs.neptune.ai/model_registry/overview/"><b>Access and share models:</b></a> every model and model version is accessible via the neptune.ai web app or through the API.
&nbsp;

&nbsp;
<div align="center">
      <img border="0" alt="register models" src="https://neptune.ai/wp-content/uploads/2023/06/register_models.gif" width="600">
    </a>
</div>
&nbsp;

&nbsp;

**Share results**

Have a single place where your team can see the results and access all models and experiments.

* <a href="https://docs.neptune.ai/about/collaboration/"><b>Send a link:</b></a> share every chart, dashboard, table view, or anything else you see in the neptune.ai app by copying and sending persistent URLs.

* <a href="https://docs.neptune.ai/usage/querying_metadata/"><b>Query API:</b></a> access all model metadata via neptune.ai API. Whatever you logged, you can query in a similar way.

* <a href="https://docs.neptune.ai/management/"><b>Manage users and projects:</b></a> create different projects, add users to them, and grant different permissions levels.

* <a href="https://neptune.ai/pricing"><b>Add your entire org:</b></a> you can collaborate with a team on every plan, even the Free one. So, invite your entire organization, including product managers and subject matter experts, to increase the visibility from the very beginning.
&nbsp;

&nbsp;
<div align="center">
      <img border="0" alt="share persistent link" src="https://neptune.ai/wp-content/uploads/2023/06/share_send_link.gif" width="600">
    </a>
</div>
&nbsp;

&nbsp;
## Integrate with any MLOps stack
neptune.ai integrates with <a href="https://docs.neptune.ai/integrations/"><b>25+ frameworks:</b></a> PyTorch, Lightning, TensorFlow/Keras, LightGBM, scikit-learn, XGBoost, Optuna, Kedro, 🤗 Transformers, fastai, Prophet, detectron2, Airflow, and more.

#### <img src="https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/Pytorch-lightning-logo.png" width="60" /> <br> <br> PyTorch Lightning

Example:

```python
from pytorch_lightning import Trainer
from lightning.pytorch.loggers import NeptuneLogger

# Create NeptuneLogger instance
from neptune import ANONYMOUS_API_TOKEN

neptune_logger = NeptuneLogger(
    api_key=ANONYMOUS_API_TOKEN,
    project="common/pytorch-lightning-integration",
    tags=["training", "resnet"],  # optional
)

# Pass the logger to the Trainer
trainer = Trainer(max_epochs=10, logger=neptune_logger)

# Run the Trainer
trainer.fit(my_model, my_dataloader)
```

[![neptune-pl](https://img.shields.io/badge/PytorchLightning-experiment-success?logo=data:image/png;base64,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)](https://app.neptune.ai/common/pytorch-lightning-integration/experiments?split=tbl&dash=charts&viewId=faa75e77-5bd6-42b9-9379-863fe7a33227)
&nbsp;

[![github-code](https://img.shields.io/badge/GitHub-code-informational?logo=github)](https://github.com/neptune-ai/examples/tree/main/integrations-and-supported-tools/pytorch-lightning/scripts)
[![jupyter-code](https://img.shields.io/badge/Jupyter-code-informational?logo=jupyter)](https://github.com/neptune-ai/examples/blob/main/integrations-and-supported-tools/pytorch-lightning/notebooks/Neptune_PyTorch_Lightning.ipynb)
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/neptune-ai/examples/blob/main/integrations-and-supported-tools/pytorch-lightning/notebooks/Neptune_PyTorch_Lightning.ipynb)
[<img src="https://img.shields.io/badge/docs-PyTorch%20Lightning-yellow">](https://docs.neptune.ai/integrations/lightning/)
&nbsp;

&nbsp;
## neptune.ai is trusted by great companies
<div align="center">
    <img src="https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/github-customers.png" width="1500" />
</div>
&nbsp;

Read how various customers use Neptune to <a href="https://neptune.ai/customers">improve their workflow</a>.
&nbsp;

&nbsp;
## Support

If you get stuck or simply want to talk to us about something, here are your options:
* Check our <a href="https://docs.neptune.ai/getting_help/#faq">FAQ page</a>.
* Take a look at our <a href="https://neptune.ai/resources">resource center</a>.
* Chat! In the app, click the <a href="https://docs.neptune.ai/getting_help/#chat">blue message icon</a> in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP).
* You can just shoot us an email at [support@neptune.ai](mailto:support@neptune.ai).
&nbsp;

&nbsp;
## People behind

Created with :heart: by the [neptune.ai team](https://neptune.ai/jobs#team)


            

Raw data

            {
    "_id": null,
    "home_page": "https://neptune.ai/",
    "name": "neptune-client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.7",
    "maintainer_email": null,
    "keywords": "MLOps, ML Experiment Tracking, ML Model Registry, ML Model Store, ML Metadata Store",
    "author": "neptune.ai",
    "author_email": "contact@neptune.ai",
    "download_url": "https://files.pythonhosted.org/packages/a3/6e/21d6022b72c1a5b5bb4961a713276f2152404f57ad749705702866a78fd0/neptune_client-1.10.2.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n    <img src=\"https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/Github-cover.png\" width=\"1500\" />\n <h1>neptune.ai</h1>\n</div>\n\n<div align=\"center\">\n  <a href=\"https://docs.neptune.ai/usage/quickstart/\">Quickstart</a>\n  <span>&nbsp;&nbsp;\u2022&nbsp;&nbsp;</span>\n  <a href=\"https://neptune.ai/\">Website</a>\n  <span>&nbsp;&nbsp;\u2022&nbsp;&nbsp;</span>\n  <a href=\"https://docs.neptune.ai/\">Docs</a>\n  <span>&nbsp;&nbsp;\u2022&nbsp;&nbsp;</span>\n  <a href=\"https://github.com/neptune-ai/examples\">Examples</a>\n  <span>&nbsp;&nbsp;\u2022&nbsp;&nbsp;</span>\n  <a href=\"https://neptune.ai/resources\">Resource center</a>\n  <span>&nbsp;&nbsp;\u2022&nbsp;&nbsp;</span>\n  <a href=\"https://neptune.ai/blog\">Blog</a>\n&nbsp;\n  <hr />\n</div>\n\n## What is neptune.ai?\n\nNeptune is a lightweight experiment tracker for ML teams that struggle with debugging and reproducing experiments, sharing results, and messy model handover. <b>It offers a single place to track, compare, store, and collaborate on experiments and models.</b>\n\nWith Neptune, Data Scientists can develop production-ready models faster, and ML Engineers can access model artifacts instantly in order to deploy them to production.\n&nbsp;\n\n<a href=\"https://www.youtube.com/watch?v=bQzgnqM5J6U\"><b>Watch a 3min explainer video \u2192</b></a>\n&nbsp;\n\n<a href=\"https://neptune.ai/demo\"><b>Watch a 20min product demo \u2192</b></a>\n&nbsp;\n\n<a href=\"https://app.neptune.ai/o/showcase/org/onboarding-project/runs/table?viewId=98f66b32-2279-4b73-8210-863021c440ac&product_tour_id=444083\"><b>Play with a live example project in the Neptune app  \u2192</b></a>\n&nbsp;\n## Getting started\n\n**Step 1:** Create a **[free account](https://neptune.ai/register)**\n\n**Step 2:** Install the Neptune client library\n\n```bash\npip install neptune\n```\n\n**Step 3:** Add an experiment tracking snippet to your code\n\n```python\nimport neptune\n\nrun = neptune.init_run(project=\"workspace-name/project-name\")\nrun[\"parameters\"] = {\"lr\": 0.1, \"dropout\": 0.4}\nrun[\"test_accuracy\"] = 0.84\n```\n\n[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/neptune-ai/examples/blob/master/how-to-guides/hello-neptune/notebooks/hello_neptune.ipynb)\n&nbsp;\n\n&nbsp;\n## Core features\n\n**Log and display**\n\nAdd a snippet to any step of your ML pipeline once. Decide what and how you want to log. Run a million times.\n\n* <a href=\"https://docs.neptune.ai/integrations/\"><b>Any framework:</b></a> any code, fastai, PyTorch, Lightning, TensorFlow/Keras, scikit-learn, \ud83e\udd17 Transformers, XGBoost, Optuna.\n\n* <a href=\"https://docs.neptune.ai/logging/what_you_can_log/\"><b>Any metadata type:</b></a> metrics, parameters, dataset and model versions, images, interactive plots, videos, hardware (GPU, CPU, memory), code state.\n\n* <a href=\"https://docs.neptune.ai/usage/best_practices/\"><b>From anywhere in your ML pipeline:</b></a> multinode pipelines, distributed computing, log during or after execution, log offline, and sync when you are back online.\n&nbsp;\n\n&nbsp;\n<div align=\"center\">\n      <img border=\"0\" alt=\"all metadata metrics\" src=\"https://neptune.ai/wp-content/uploads/2023/06/log_metrics.gif\" width=\"600\">\n    </a>\n</div>\n&nbsp;\n\n&nbsp;\n\n**Organize experiments**\n\nOrganize logs in a fully customizable nested structure. Display model metadata in user-defined dashboard templates.\n\n* <a href=\"https://docs.neptune.ai/about/namespaces_and_fields/\"><b>Nested metadata structure:</b></a> the flexible API lets you customize the metadata logging structure however you want. Organize nested parameter configs or the results on k-fold validation splits the way they should be.\n\n* <a href=\"https://docs.neptune.ai/app/custom_dashboard/\"><b>Custom dashboards:</b></a> combine different metadata types in one view. Define it for one run. Use anywhere. Look at GPU, memory consumption, and load times to debug training speed. See learning curves, image predictions, and confusion matrix to debug model quality.\n\n* <a href=\"https://docs.neptune.ai/app/custom_views/\"><b>Table views:</b></a> create different views of the runs table and save them for later. You can have separate table views for debugging, comparing parameter sets, or best experiments.\n&nbsp;\n\n&nbsp;\n<div align=\"center\">\n      <img border=\"0\" alt=\"organize dashboards\" src=\"https://neptune.ai/wp-content/uploads/2023/06/organize_custom_dashboards.gif\" width=\"600\">\n    </a>\n</div>\n&nbsp;\n\n&nbsp;\n\n**Compare results**\n\nVisualize training live in the neptune.ai web app. See how different parameters and configs affect the results. Optimize models quicker.\n\n* <a href=\"https://docs.neptune.ai/app/comparison/\"><b>Compare:</b></a> learning curves, parameters, images, datasets.\n\n* <a href=\"https://docs.neptune.ai/app/searching_table/\"><b>Search, sort, and filter:</b></a> experiments by any field you logged. Use our query language to filter runs based on parameter values, metrics, execution times, or anything else.\n\n* <a href=\"https://docs.neptune.ai/app/runs_table/\"><b>Visualize and display:</b></a> runs table, interactive display, folder structure, dashboards.\n\n* <a href=\"https://docs.neptune.ai/tutorials/monitoring_training_live/\"><b>Monitor live:</b></a> hardware consumption metrics, GPU, CPU, memory.\n\n* <a href=\"https://docs.neptune.ai/app/group_by/\"><b>Group by:</b></a> dataset versions, parameters.\n&nbsp;\n\n&nbsp;\n<div align=\"center\">\n      <img border=\"0\" alt=\"compare, search, filter\" src=\"https://neptune.ai/wp-content/uploads/2023/06/organize_search_sort_filter.gif\" width=\"600\">\n    </a>\n</div>\n&nbsp;\n\n&nbsp;\n\n**Version models**\n\nVersion, review, and access production-ready models and metadata associated with them in a single place.\n\n* <a href=\"https://docs.neptune.ai/model_registry/registering_model/\"><b>Version models:</b></a> register models, create model versions, version external model artifacts.\n\n* <a href=\"https://docs.neptune.ai/model_registry/managing_stage/\"><b>Review and change stages:</b></a> look at the validation, test metrics and other model metadata. You can move models between None/Staging/Production/Archived.\n\n* <a href=\"https://docs.neptune.ai/model_registry/overview/\"><b>Access and share models:</b></a> every model and model version is accessible via the neptune.ai web app or through the API.\n&nbsp;\n\n&nbsp;\n<div align=\"center\">\n      <img border=\"0\" alt=\"register models\" src=\"https://neptune.ai/wp-content/uploads/2023/06/register_models.gif\" width=\"600\">\n    </a>\n</div>\n&nbsp;\n\n&nbsp;\n\n**Share results**\n\nHave a single place where your team can see the results and access all models and experiments.\n\n* <a href=\"https://docs.neptune.ai/about/collaboration/\"><b>Send a link:</b></a> share every chart, dashboard, table view, or anything else you see in the neptune.ai app by copying and sending persistent URLs.\n\n* <a href=\"https://docs.neptune.ai/usage/querying_metadata/\"><b>Query API:</b></a> access all model metadata via neptune.ai API. Whatever you logged, you can query in a similar way.\n\n* <a href=\"https://docs.neptune.ai/management/\"><b>Manage users and projects:</b></a> create different projects, add users to them, and grant different permissions levels.\n\n* <a href=\"https://neptune.ai/pricing\"><b>Add your entire org:</b></a> you can collaborate with a team on every plan, even the Free one. So, invite your entire organization, including product managers and subject matter experts, to increase the visibility from the very beginning.\n&nbsp;\n\n&nbsp;\n<div align=\"center\">\n      <img border=\"0\" alt=\"share persistent link\" src=\"https://neptune.ai/wp-content/uploads/2023/06/share_send_link.gif\" width=\"600\">\n    </a>\n</div>\n&nbsp;\n\n&nbsp;\n## Integrate with any MLOps stack\nneptune.ai integrates with <a href=\"https://docs.neptune.ai/integrations/\"><b>25+ frameworks:</b></a> PyTorch, Lightning, TensorFlow/Keras, LightGBM, scikit-learn, XGBoost, Optuna, Kedro, \ud83e\udd17 Transformers, fastai, Prophet, detectron2, Airflow, and more.\n\n#### <img src=\"https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/Pytorch-lightning-logo.png\" width=\"60\" /> <br> <br> PyTorch Lightning\n\nExample:\n\n```python\nfrom pytorch_lightning import Trainer\nfrom lightning.pytorch.loggers import NeptuneLogger\n\n# Create NeptuneLogger instance\nfrom neptune import ANONYMOUS_API_TOKEN\n\nneptune_logger = NeptuneLogger(\n    api_key=ANONYMOUS_API_TOKEN,\n    project=\"common/pytorch-lightning-integration\",\n    tags=[\"training\", \"resnet\"],  # optional\n)\n\n# Pass the logger to the Trainer\ntrainer = Trainer(max_epochs=10, logger=neptune_logger)\n\n# Run the Trainer\ntrainer.fit(my_model, my_dataloader)\n```\n\n[![neptune-pl](https://img.shields.io/badge/PytorchLightning-experiment-success?logo=data:image/png;base64,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)](https://app.neptune.ai/common/pytorch-lightning-integration/experiments?split=tbl&dash=charts&viewId=faa75e77-5bd6-42b9-9379-863fe7a33227)\n&nbsp;\n\n[![github-code](https://img.shields.io/badge/GitHub-code-informational?logo=github)](https://github.com/neptune-ai/examples/tree/main/integrations-and-supported-tools/pytorch-lightning/scripts)\n[![jupyter-code](https://img.shields.io/badge/Jupyter-code-informational?logo=jupyter)](https://github.com/neptune-ai/examples/blob/main/integrations-and-supported-tools/pytorch-lightning/notebooks/Neptune_PyTorch_Lightning.ipynb)\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/neptune-ai/examples/blob/main/integrations-and-supported-tools/pytorch-lightning/notebooks/Neptune_PyTorch_Lightning.ipynb)\n[<img src=\"https://img.shields.io/badge/docs-PyTorch%20Lightning-yellow\">](https://docs.neptune.ai/integrations/lightning/)\n&nbsp;\n\n&nbsp;\n## neptune.ai is trusted by great companies\n<div align=\"center\">\n    <img src=\"https://raw.githubusercontent.com/neptune-ai/neptune-client/assets/readme/github-customers.png\" width=\"1500\" />\n</div>\n&nbsp;\n\nRead how various customers use Neptune to <a href=\"https://neptune.ai/customers\">improve their workflow</a>.\n&nbsp;\n\n&nbsp;\n## Support\n\nIf you get stuck or simply want to talk to us about something, here are your options:\n* Check our <a href=\"https://docs.neptune.ai/getting_help/#faq\">FAQ page</a>.\n* Take a look at our <a href=\"https://neptune.ai/resources\">resource center</a>.\n* Chat! In the app, click the <a href=\"https://docs.neptune.ai/getting_help/#chat\">blue message icon</a> in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP).\n* You can just shoot us an email at [support@neptune.ai](mailto:support@neptune.ai).\n&nbsp;\n\n&nbsp;\n## People behind\n\nCreated with :heart: by the [neptune.ai team](https://neptune.ai/jobs#team)\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Neptune Client",
    "version": "1.10.2",
    "project_urls": {
        "Documentation": "https://docs.neptune.ai/",
        "Homepage": "https://neptune.ai/",
        "Repository": "https://github.com/neptune-ai/neptune-client",
        "Tracker": "https://github.com/neptune-ai/neptune-client/issues"
    },
    "split_keywords": [
        "mlops",
        " ml experiment tracking",
        " ml model registry",
        " ml model store",
        " ml metadata store"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32c157684f4c8fe37fc7da2da80e2b2953832526b3985c955f0f61b4718e40f5",
                "md5": "86e2641b19c649bd2c7ecee01fb6af53",
                "sha256": "845ef5810830a04170a7ee987a73f9ce724c908ee7e798f4542ca167c0622019"
            },
            "downloads": -1,
            "filename": "neptune_client-1.10.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "86e2641b19c649bd2c7ecee01fb6af53",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.7",
            "size": 502092,
            "upload_time": "2024-04-08T08:28:32",
            "upload_time_iso_8601": "2024-04-08T08:28:32.178049Z",
            "url": "https://files.pythonhosted.org/packages/32/c1/57684f4c8fe37fc7da2da80e2b2953832526b3985c955f0f61b4718e40f5/neptune_client-1.10.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a36e21d6022b72c1a5b5bb4961a713276f2152404f57ad749705702866a78fd0",
                "md5": "8b9ec0101892804f03fd37a68db4d30a",
                "sha256": "c85623f7b05f6fd961f68385828744aabbaeaccc6d42fc8c92f0570b633bcd9c"
            },
            "downloads": -1,
            "filename": "neptune_client-1.10.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8b9ec0101892804f03fd37a68db4d30a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.7",
            "size": 275185,
            "upload_time": "2024-04-08T08:28:36",
            "upload_time_iso_8601": "2024-04-08T08:28:36.627660Z",
            "url": "https://files.pythonhosted.org/packages/a3/6e/21d6022b72c1a5b5bb4961a713276f2152404f57ad749705702866a78fd0/neptune_client-1.10.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-08 08:28:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "neptune-ai",
    "github_project": "neptune-client",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "neptune-client"
}
        
Elapsed time: 0.29729s