loci_client


Nameloci_client JSON
Version 0.20250109.4844 PyPI version JSON
download
home_pagehttps://github.com/GIT_USER_ID/GIT_REPO_ID
SummaryLoci Notes Server
upload_time2025-01-09 00:50:06
maintainerNone
docs_urlNone
authorTheTwitchy
requires_python<4.0,>=3.8
licenseGNU General Public License v3.0
keywords openapi openapi-generator loci notes server
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # loci-client

The [Loci Notes](https://loci-notes.gitlab.io/) server API.

The Loci Notes server is a FastAPI server that provides a RESTful API for interacting with the Loci Notes system. The server is designed to be used by the Loci Notes web UI, VS Code extension, Loci Notes CLI, and any other clients that may be developed in the future.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.20250109.004744
- Package version: 0.20250109.004844
- Generator version: 7.10.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://loci-notes.gitlab.io/](https://loci-notes.gitlab.io/)

## Requirements.

Python 3.8+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import loci_client
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import loci_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import loci_client
from loci_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = loci_client.Configuration(
    host = "http://localhost"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

configuration.access_token = os.environ["ACCESS_TOKEN"]


# Enter a context with an instance of the API client
with loci_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = loci_client.DefaultApi(api_client)
    api_key_in = loci_client.ApiKeyIn() # ApiKeyIn | 

    try:
        # Create Api Key
        api_response = api_instance.create_api_key(api_key_in)
        print("The response of DefaultApi->create_api_key:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DefaultApi->create_api_key: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**create_api_key**](docs/DefaultApi.md#create_api_key) | **POST** /api/v1/api_keys/ | Create Api Key
*DefaultApi* | [**create_note**](docs/DefaultApi.md#create_note) | **POST** /api/v1/projects/{id}/note | Create Note
*DefaultApi* | [**create_project**](docs/DefaultApi.md#create_project) | **POST** /api/v1/projects/ | Create Project
*DefaultApi* | [**create_user**](docs/DefaultApi.md#create_user) | **POST** /api/v1/users/ | Create User
*DefaultApi* | [**create_user_open**](docs/DefaultApi.md#create_user_open) | **POST** /api/v1/users/open | Create User Open
*DefaultApi* | [**delete_api_key**](docs/DefaultApi.md#delete_api_key) | **DELETE** /api/v1/api_keys/{id} | Delete Api Key
*DefaultApi* | [**delete_artifact**](docs/DefaultApi.md#delete_artifact) | **DELETE** /api/v1/artifacts/{id} | Delete Artifact
*DefaultApi* | [**delete_note**](docs/DefaultApi.md#delete_note) | **DELETE** /api/v1/notes/{id} | Delete Note
*DefaultApi* | [**delete_project**](docs/DefaultApi.md#delete_project) | **DELETE** /api/v1/projects/{id} | Delete Project
*DefaultApi* | [**delete_project_access**](docs/DefaultApi.md#delete_project_access) | **POST** /api/v1/projects/{id}/remove_users | Delete Project Access
*DefaultApi* | [**delete_user**](docs/DefaultApi.md#delete_user) | **DELETE** /api/v1/users/{user_id} | Delete User
*DefaultApi* | [**export_project**](docs/DefaultApi.md#export_project) | **GET** /api/v1/projects/{id}/export | Export Project
*DefaultApi* | [**get_artifact_file**](docs/DefaultApi.md#get_artifact_file) | **GET** /api/v1/artifacts/{id}/file | Get Artifact File
*DefaultApi* | [**login_access_token**](docs/DefaultApi.md#login_access_token) | **POST** /api/v1/login/access-token | Login Access Token
*DefaultApi* | [**read_api_key**](docs/DefaultApi.md#read_api_key) | **GET** /api/v1/api_keys/{id} | Read Api Key
*DefaultApi* | [**read_api_keys**](docs/DefaultApi.md#read_api_keys) | **GET** /api/v1/api_keys/ | Read Api Keys
*DefaultApi* | [**read_artifact**](docs/DefaultApi.md#read_artifact) | **GET** /api/v1/artifacts/{id} | Read Artifact
*DefaultApi* | [**read_note**](docs/DefaultApi.md#read_note) | **GET** /api/v1/notes/{id} | Read Note
*DefaultApi* | [**read_project**](docs/DefaultApi.md#read_project) | **GET** /api/v1/projects/{id} | Read Project
*DefaultApi* | [**read_project_artifacts**](docs/DefaultApi.md#read_project_artifacts) | **GET** /api/v1/projects/{id}/artifacts | Read Project Artifacts
*DefaultApi* | [**read_projects**](docs/DefaultApi.md#read_projects) | **GET** /api/v1/projects/ | Read Projects
*DefaultApi* | [**read_user_by_id**](docs/DefaultApi.md#read_user_by_id) | **GET** /api/v1/users/{user_id} | Read User By Id
*DefaultApi* | [**read_user_me**](docs/DefaultApi.md#read_user_me) | **GET** /api/v1/users/me | Read User Me
*DefaultApi* | [**read_users**](docs/DefaultApi.md#read_users) | **GET** /api/v1/users/ | Read Users
*DefaultApi* | [**recover_password**](docs/DefaultApi.md#recover_password) | **POST** /api/v1/password-recovery/{email} | Recover Password
*DefaultApi* | [**recover_password_html_content**](docs/DefaultApi.md#recover_password_html_content) | **POST** /api/v1/password-recovery-html-content/{email} | Recover Password Html Content
*DefaultApi* | [**reset_password**](docs/DefaultApi.md#reset_password) | **POST** /api/v1/reset-password/ | Reset Password
*DefaultApi* | [**status**](docs/DefaultApi.md#status) | **GET** /api/v1/status | Status
*DefaultApi* | [**test_email**](docs/DefaultApi.md#test_email) | **POST** /api/v1/utils/test-email/ | Test Email
*DefaultApi* | [**test_token**](docs/DefaultApi.md#test_token) | **POST** /api/v1/login/test-token | Test Token
*DefaultApi* | [**update_artifact**](docs/DefaultApi.md#update_artifact) | **PUT** /api/v1/artifacts/{id} | Update Artifact
*DefaultApi* | [**update_note**](docs/DefaultApi.md#update_note) | **PUT** /api/v1/notes/{id} | Update Note
*DefaultApi* | [**update_password_me**](docs/DefaultApi.md#update_password_me) | **PATCH** /api/v1/users/me/password | Update Password Me
*DefaultApi* | [**update_project**](docs/DefaultApi.md#update_project) | **PUT** /api/v1/projects/{id} | Update Project
*DefaultApi* | [**update_project_access**](docs/DefaultApi.md#update_project_access) | **POST** /api/v1/projects/{id}/add_users | Update Project Access
*DefaultApi* | [**update_user**](docs/DefaultApi.md#update_user) | **PATCH** /api/v1/users/{user_id} | Update User
*DefaultApi* | [**update_user_me**](docs/DefaultApi.md#update_user_me) | **PATCH** /api/v1/users/me | Update User Me
*DefaultApi* | [**upload_project_zipfile**](docs/DefaultApi.md#upload_project_zipfile) | **POST** /api/v1/projects/{id}/zipfile | Upload Project Zipfile


## Documentation For Models

 - [ApiKeyIn](docs/ApiKeyIn.md)
 - [ApiKeyOut](docs/ApiKeyOut.md)
 - [ApiKeySortEnum](docs/ApiKeySortEnum.md)
 - [ApiKeysOut](docs/ApiKeysOut.md)
 - [ArtifactExport](docs/ArtifactExport.md)
 - [ArtifactFileLocationOut](docs/ArtifactFileLocationOut.md)
 - [ArtifactIn](docs/ArtifactIn.md)
 - [ArtifactNote](docs/ArtifactNote.md)
 - [ArtifactNoteExport](docs/ArtifactNoteExport.md)
 - [ArtifactNoteIn](docs/ArtifactNoteIn.md)
 - [ArtifactNoteTypeEnum](docs/ArtifactNoteTypeEnum.md)
 - [ArtifactNoteUpdateIn](docs/ArtifactNoteUpdateIn.md)
 - [ArtifactOut](docs/ArtifactOut.md)
 - [ArtifactPriorityEnum](docs/ArtifactPriorityEnum.md)
 - [ArtifactSortEnum](docs/ArtifactSortEnum.md)
 - [ArtifactTypeEnum](docs/ArtifactTypeEnum.md)
 - [ArtifactsOut](docs/ArtifactsOut.md)
 - [HTTPValidationError](docs/HTTPValidationError.md)
 - [Message](docs/Message.md)
 - [NewPassword](docs/NewPassword.md)
 - [OrderByEnum](docs/OrderByEnum.md)
 - [ProjectAccessUser](docs/ProjectAccessUser.md)
 - [ProjectExport](docs/ProjectExport.md)
 - [ProjectIn](docs/ProjectIn.md)
 - [ProjectOut](docs/ProjectOut.md)
 - [ProjectSortEnum](docs/ProjectSortEnum.md)
 - [ProjectsOut](docs/ProjectsOut.md)
 - [StatusOut](docs/StatusOut.md)
 - [Token](docs/Token.md)
 - [UpdatePassword](docs/UpdatePassword.md)
 - [UserCreate](docs/UserCreate.md)
 - [UserCreateOpen](docs/UserCreateOpen.md)
 - [UserFullOut](docs/UserFullOut.md)
 - [UserOut](docs/UserOut.md)
 - [UserUpdate](docs/UserUpdate.md)
 - [UserUpdateMe](docs/UserUpdateMe.md)
 - [UsersOut](docs/UsersOut.md)
 - [ValidationError](docs/ValidationError.md)
 - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="OAuth2PasswordBearer"></a>
### OAuth2PasswordBearer

- **Type**: OAuth
- **Flow**: password
- **Authorization URL**: 
- **Scopes**: N/A


## Author

thetwitchy@thetwitchy.com



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
    "name": "loci_client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "OpenAPI, OpenAPI-Generator, Loci Notes Server",
    "author": "TheTwitchy",
    "author_email": "thetwitchy@thetwitchy.com",
    "download_url": "https://files.pythonhosted.org/packages/57/e3/9f0762b6c30adf4201c814d55a61026f9e3a6a45c83f23d6027df6d66d38/loci_client-0.20250109.4844.tar.gz",
    "platform": null,
    "description": "# loci-client\n\nThe [Loci Notes](https://loci-notes.gitlab.io/) server API.\n\nThe Loci Notes server is a FastAPI server that provides a RESTful API for interacting with the Loci Notes system. The server is designed to be used by the Loci Notes web UI, VS Code extension, Loci Notes CLI, and any other clients that may be developed in the future.\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 0.20250109.004744\n- Package version: 0.20250109.004844\n- Generator version: 7.10.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://loci-notes.gitlab.io/](https://loci-notes.gitlab.io/)\n\n## Requirements.\n\nPython 3.8+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport loci_client\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport loci_client\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport loci_client\nfrom loci_client.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = loci_client.Configuration(\n    host = \"http://localhost\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\nconfiguration.access_token = os.environ[\"ACCESS_TOKEN\"]\n\n\n# Enter a context with an instance of the API client\nwith loci_client.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = loci_client.DefaultApi(api_client)\n    api_key_in = loci_client.ApiKeyIn() # ApiKeyIn | \n\n    try:\n        # Create Api Key\n        api_response = api_instance.create_api_key(api_key_in)\n        print(\"The response of DefaultApi->create_api_key:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling DefaultApi->create_api_key: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DefaultApi* | [**create_api_key**](docs/DefaultApi.md#create_api_key) | **POST** /api/v1/api_keys/ | Create Api Key\n*DefaultApi* | [**create_note**](docs/DefaultApi.md#create_note) | **POST** /api/v1/projects/{id}/note | Create Note\n*DefaultApi* | [**create_project**](docs/DefaultApi.md#create_project) | **POST** /api/v1/projects/ | Create Project\n*DefaultApi* | [**create_user**](docs/DefaultApi.md#create_user) | **POST** /api/v1/users/ | Create User\n*DefaultApi* | [**create_user_open**](docs/DefaultApi.md#create_user_open) | **POST** /api/v1/users/open | Create User Open\n*DefaultApi* | [**delete_api_key**](docs/DefaultApi.md#delete_api_key) | **DELETE** /api/v1/api_keys/{id} | Delete Api Key\n*DefaultApi* | [**delete_artifact**](docs/DefaultApi.md#delete_artifact) | **DELETE** /api/v1/artifacts/{id} | Delete Artifact\n*DefaultApi* | [**delete_note**](docs/DefaultApi.md#delete_note) | **DELETE** /api/v1/notes/{id} | Delete Note\n*DefaultApi* | [**delete_project**](docs/DefaultApi.md#delete_project) | **DELETE** /api/v1/projects/{id} | Delete Project\n*DefaultApi* | [**delete_project_access**](docs/DefaultApi.md#delete_project_access) | **POST** /api/v1/projects/{id}/remove_users | Delete Project Access\n*DefaultApi* | [**delete_user**](docs/DefaultApi.md#delete_user) | **DELETE** /api/v1/users/{user_id} | Delete User\n*DefaultApi* | [**export_project**](docs/DefaultApi.md#export_project) | **GET** /api/v1/projects/{id}/export | Export Project\n*DefaultApi* | [**get_artifact_file**](docs/DefaultApi.md#get_artifact_file) | **GET** /api/v1/artifacts/{id}/file | Get Artifact File\n*DefaultApi* | [**login_access_token**](docs/DefaultApi.md#login_access_token) | **POST** /api/v1/login/access-token | Login Access Token\n*DefaultApi* | [**read_api_key**](docs/DefaultApi.md#read_api_key) | **GET** /api/v1/api_keys/{id} | Read Api Key\n*DefaultApi* | [**read_api_keys**](docs/DefaultApi.md#read_api_keys) | **GET** /api/v1/api_keys/ | Read Api Keys\n*DefaultApi* | [**read_artifact**](docs/DefaultApi.md#read_artifact) | **GET** /api/v1/artifacts/{id} | Read Artifact\n*DefaultApi* | [**read_note**](docs/DefaultApi.md#read_note) | **GET** /api/v1/notes/{id} | Read Note\n*DefaultApi* | [**read_project**](docs/DefaultApi.md#read_project) | **GET** /api/v1/projects/{id} | Read Project\n*DefaultApi* | [**read_project_artifacts**](docs/DefaultApi.md#read_project_artifacts) | **GET** /api/v1/projects/{id}/artifacts | Read Project Artifacts\n*DefaultApi* | [**read_projects**](docs/DefaultApi.md#read_projects) | **GET** /api/v1/projects/ | Read Projects\n*DefaultApi* | [**read_user_by_id**](docs/DefaultApi.md#read_user_by_id) | **GET** /api/v1/users/{user_id} | Read User By Id\n*DefaultApi* | [**read_user_me**](docs/DefaultApi.md#read_user_me) | **GET** /api/v1/users/me | Read User Me\n*DefaultApi* | [**read_users**](docs/DefaultApi.md#read_users) | **GET** /api/v1/users/ | Read Users\n*DefaultApi* | [**recover_password**](docs/DefaultApi.md#recover_password) | **POST** /api/v1/password-recovery/{email} | Recover Password\n*DefaultApi* | [**recover_password_html_content**](docs/DefaultApi.md#recover_password_html_content) | **POST** /api/v1/password-recovery-html-content/{email} | Recover Password Html Content\n*DefaultApi* | [**reset_password**](docs/DefaultApi.md#reset_password) | **POST** /api/v1/reset-password/ | Reset Password\n*DefaultApi* | [**status**](docs/DefaultApi.md#status) | **GET** /api/v1/status | Status\n*DefaultApi* | [**test_email**](docs/DefaultApi.md#test_email) | **POST** /api/v1/utils/test-email/ | Test Email\n*DefaultApi* | [**test_token**](docs/DefaultApi.md#test_token) | **POST** /api/v1/login/test-token | Test Token\n*DefaultApi* | [**update_artifact**](docs/DefaultApi.md#update_artifact) | **PUT** /api/v1/artifacts/{id} | Update Artifact\n*DefaultApi* | [**update_note**](docs/DefaultApi.md#update_note) | **PUT** /api/v1/notes/{id} | Update Note\n*DefaultApi* | [**update_password_me**](docs/DefaultApi.md#update_password_me) | **PATCH** /api/v1/users/me/password | Update Password Me\n*DefaultApi* | [**update_project**](docs/DefaultApi.md#update_project) | **PUT** /api/v1/projects/{id} | Update Project\n*DefaultApi* | [**update_project_access**](docs/DefaultApi.md#update_project_access) | **POST** /api/v1/projects/{id}/add_users | Update Project Access\n*DefaultApi* | [**update_user**](docs/DefaultApi.md#update_user) | **PATCH** /api/v1/users/{user_id} | Update User\n*DefaultApi* | [**update_user_me**](docs/DefaultApi.md#update_user_me) | **PATCH** /api/v1/users/me | Update User Me\n*DefaultApi* | [**upload_project_zipfile**](docs/DefaultApi.md#upload_project_zipfile) | **POST** /api/v1/projects/{id}/zipfile | Upload Project Zipfile\n\n\n## Documentation For Models\n\n - [ApiKeyIn](docs/ApiKeyIn.md)\n - [ApiKeyOut](docs/ApiKeyOut.md)\n - [ApiKeySortEnum](docs/ApiKeySortEnum.md)\n - [ApiKeysOut](docs/ApiKeysOut.md)\n - [ArtifactExport](docs/ArtifactExport.md)\n - [ArtifactFileLocationOut](docs/ArtifactFileLocationOut.md)\n - [ArtifactIn](docs/ArtifactIn.md)\n - [ArtifactNote](docs/ArtifactNote.md)\n - [ArtifactNoteExport](docs/ArtifactNoteExport.md)\n - [ArtifactNoteIn](docs/ArtifactNoteIn.md)\n - [ArtifactNoteTypeEnum](docs/ArtifactNoteTypeEnum.md)\n - [ArtifactNoteUpdateIn](docs/ArtifactNoteUpdateIn.md)\n - [ArtifactOut](docs/ArtifactOut.md)\n - [ArtifactPriorityEnum](docs/ArtifactPriorityEnum.md)\n - [ArtifactSortEnum](docs/ArtifactSortEnum.md)\n - [ArtifactTypeEnum](docs/ArtifactTypeEnum.md)\n - [ArtifactsOut](docs/ArtifactsOut.md)\n - [HTTPValidationError](docs/HTTPValidationError.md)\n - [Message](docs/Message.md)\n - [NewPassword](docs/NewPassword.md)\n - [OrderByEnum](docs/OrderByEnum.md)\n - [ProjectAccessUser](docs/ProjectAccessUser.md)\n - [ProjectExport](docs/ProjectExport.md)\n - [ProjectIn](docs/ProjectIn.md)\n - [ProjectOut](docs/ProjectOut.md)\n - [ProjectSortEnum](docs/ProjectSortEnum.md)\n - [ProjectsOut](docs/ProjectsOut.md)\n - [StatusOut](docs/StatusOut.md)\n - [Token](docs/Token.md)\n - [UpdatePassword](docs/UpdatePassword.md)\n - [UserCreate](docs/UserCreate.md)\n - [UserCreateOpen](docs/UserCreateOpen.md)\n - [UserFullOut](docs/UserFullOut.md)\n - [UserOut](docs/UserOut.md)\n - [UserUpdate](docs/UserUpdate.md)\n - [UserUpdateMe](docs/UserUpdateMe.md)\n - [UsersOut](docs/UsersOut.md)\n - [ValidationError](docs/ValidationError.md)\n - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n<a id=\"OAuth2PasswordBearer\"></a>\n### OAuth2PasswordBearer\n\n- **Type**: OAuth\n- **Flow**: password\n- **Authorization URL**: \n- **Scopes**: N/A\n\n\n## Author\n\nthetwitchy@thetwitchy.com\n\n\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3.0",
    "summary": "Loci Notes Server",
    "version": "0.20250109.4844",
    "project_urls": {
        "Homepage": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
        "Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
    },
    "split_keywords": [
        "openapi",
        " openapi-generator",
        " loci notes server"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ab8160c2f2392c09eba16e62963b6416dfa9e11c3df799a353a763cb881a884",
                "md5": "96468f64945c3d15e5537a28e7adf311",
                "sha256": "10261cd35b8a479a46e0740061a2691a9489ebfe3d1872b503f532158d12923e"
            },
            "downloads": -1,
            "filename": "loci_client-0.20250109.4844-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "96468f64945c3d15e5537a28e7adf311",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 88096,
            "upload_time": "2025-01-09T00:50:02",
            "upload_time_iso_8601": "2025-01-09T00:50:02.758971Z",
            "url": "https://files.pythonhosted.org/packages/4a/b8/160c2f2392c09eba16e62963b6416dfa9e11c3df799a353a763cb881a884/loci_client-0.20250109.4844-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57e39f0762b6c30adf4201c814d55a61026f9e3a6a45c83f23d6027df6d66d38",
                "md5": "863ef686b774912ea95b574a9bf81d18",
                "sha256": "5fb9d35530ef9c33a9231cd7ef56c77e91286be4c7d279a566747ec167bf7714"
            },
            "downloads": -1,
            "filename": "loci_client-0.20250109.4844.tar.gz",
            "has_sig": false,
            "md5_digest": "863ef686b774912ea95b574a9bf81d18",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 38750,
            "upload_time": "2025-01-09T00:50:06",
            "upload_time_iso_8601": "2025-01-09T00:50:06.718184Z",
            "url": "https://files.pythonhosted.org/packages/57/e3/9f0762b6c30adf4201c814d55a61026f9e3a6a45c83f23d6027df6d66d38/loci_client-0.20250109.4844.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-09 00:50:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GIT_USER_ID",
    "github_project": "GIT_REPO_ID",
    "github_not_found": true,
    "lcname": "loci_client"
}
        
Elapsed time: 0.96965s