# neptune-api
A client library for accessing Neptune API
## Usage
First, create a client:
```python
from neptune_api import Client
client = Client(base_url="https://api.example.com")
```
If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
```python
from neptune_api import AuthenticatedClient
client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
```
Now call your endpoint and use your models:
```python
from neptune_api.models import MyDataModel
from neptune_api.api.my_tag import get_my_data_model
from neptune_api.types import Response
my_data: MyDataModel = get_my_data_model.sync(client=client)
# or if you need more info (e.g. status_code)
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
```
Or do the same thing with an async version:
```python
from neptune_api.models import MyDataModel
from neptune_api.api.my_tag import get_my_data_model
from neptune_api.types import Response
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
```
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
```
You can also disable certificate validation altogether, but beware that **this is a security risk**.
```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
```
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info.
Things to know:
1. Every path/method combo becomes a Python module with four functions:
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
1. `asyncio`: Like `sync` but async instead of blocking
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
1. All path/query params, and bodies become method arguments.
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
1. Any endpoint which did not have a tag will be in `neptune_api.api.default`
## Update OpenAPI spec
Run the following command to regenerate the OpenAPI client:
```bash
scripts/update.sh https://<deployment>.neptune.ai/api/client/v1/api-docs
```
Raw data
{
"_id": null,
"home_page": "https://github.com/neptune-ai/neptune-api",
"name": "neptune-api",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.8",
"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/98/d1/d15bd6754c7c794b9e5dfec30e200b6b9298ccfd2eaaf9f3513241bff22d/neptune_api-0.6.1.tar.gz",
"platform": null,
"description": "# neptune-api\nA client library for accessing Neptune API\n\n## Usage\nFirst, create a client:\n\n```python\nfrom neptune_api import Client\n\nclient = Client(base_url=\"https://api.example.com\")\n```\n\nIf the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:\n\n```python\nfrom neptune_api import AuthenticatedClient\n\nclient = AuthenticatedClient(base_url=\"https://api.example.com\", token=\"SuperSecretToken\")\n```\n\nNow call your endpoint and use your models:\n\n```python\nfrom neptune_api.models import MyDataModel\nfrom neptune_api.api.my_tag import get_my_data_model\nfrom neptune_api.types import Response\n\nmy_data: MyDataModel = get_my_data_model.sync(client=client)\n# or if you need more info (e.g. status_code)\nresponse: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)\n```\n\nOr do the same thing with an async version:\n\n```python\nfrom neptune_api.models import MyDataModel\nfrom neptune_api.api.my_tag import get_my_data_model\nfrom neptune_api.types import Response\n\nmy_data: MyDataModel = await get_my_data_model.asyncio(client=client)\nresponse: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)\n```\n\nBy default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.\n\n```python\nclient = AuthenticatedClient(\n base_url=\"https://internal_api.example.com\",\n token=\"SuperSecretToken\",\n verify_ssl=\"/path/to/certificate_bundle.pem\",\n)\n```\n\nYou can also disable certificate validation altogether, but beware that **this is a security risk**.\n\n```python\nclient = AuthenticatedClient(\n base_url=\"https://internal_api.example.com\",\n token=\"SuperSecretToken\",\n verify_ssl=False\n)\n```\n\nThere are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info.\n\nThings to know:\n1. Every path/method combo becomes a Python module with four functions:\n 1. `sync`: Blocking request that returns parsed data (if successful) or `None`\n 1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.\n 1. `asyncio`: Like `sync` but async instead of blocking\n 1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking\n\n1. All path/query params, and bodies become method arguments.\n1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)\n1. Any endpoint which did not have a tag will be in `neptune_api.api.default`\n\n## Update OpenAPI spec\n\nRun the following command to regenerate the OpenAPI client:\n```bash\nscripts/update.sh https://<deployment>.neptune.ai/api/client/v1/api-docs\n```\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "A client library for accessing Neptune API",
"version": "0.6.1",
"project_urls": {
"Documentation": "https://docs.neptune.ai/",
"Homepage": "https://github.com/neptune-ai/neptune-api",
"Repository": "https://github.com/neptune-ai/neptune-api",
"Tracker": "https://github.com/neptune-ai/neptune-api/issues"
},
"split_keywords": [
"mlops",
" ml experiment tracking",
" ml model registry",
" ml model store",
" ml metadata store"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "533bdcc0614c77f2c8f81f8e881ffb68469a9f648721d977b8eb53a5e47c2460",
"md5": "b5fa95a538628ee5d76342b929bf4a25",
"sha256": "b9e31eac9522c48a2b16f21656a3e0662c0193bf91d71935c2314e5f87f6a762"
},
"downloads": -1,
"filename": "neptune_api-0.6.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b5fa95a538628ee5d76342b929bf4a25",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.8",
"size": 56022,
"upload_time": "2024-10-15T14:38:37",
"upload_time_iso_8601": "2024-10-15T14:38:37.628549Z",
"url": "https://files.pythonhosted.org/packages/53/3b/dcc0614c77f2c8f81f8e881ffb68469a9f648721d977b8eb53a5e47c2460/neptune_api-0.6.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98d1d15bd6754c7c794b9e5dfec30e200b6b9298ccfd2eaaf9f3513241bff22d",
"md5": "f9360ed0f0442e9c43ffcaa82b5281b1",
"sha256": "132a9105fb78347752897c65332889cd5ca96d4536d4b67dab6d0a0eb00b2673"
},
"downloads": -1,
"filename": "neptune_api-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "f9360ed0f0442e9c43ffcaa82b5281b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.8",
"size": 35249,
"upload_time": "2024-10-15T14:38:39",
"upload_time_iso_8601": "2024-10-15T14:38:39.071244Z",
"url": "https://files.pythonhosted.org/packages/98/d1/d15bd6754c7c794b9e5dfec30e200b6b9298ccfd2eaaf9f3513241bff22d/neptune_api-0.6.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-15 14:38:39",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "neptune-ai",
"github_project": "neptune-api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "neptune-api"
}