lance-namespace-urllib3-client


Namelance-namespace-urllib3-client JSON
Version 0.0.5 PyPI version JSON
download
home_pageNone
SummaryLance Namespace Specification
upload_time2025-08-01 05:23:36
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-2.0
keywords lance namespace specification openapi openapi-generator
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # lance-namespace-urllib3-client
This OpenAPI specification is a part of the Lance namespace specification. It contains 2 parts:

The `components/schemas`, `components/responses`, `components/examples`, `tags` sections define
the request and response shape for each operation in a Lance Namespace across all implementations.
See https://lancedb.github.io/lance-namespace/spec/operations for more details.

The `servers`, `security`, `paths`, `components/parameters` sections are for the 
Lance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets.
See https://lancedb.github.io/lance-namespace/spec/impls/rest for more details.


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

- API version: 1.0.0
- Package version: 0.0.5
- Generator version: 7.12.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## 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 lance_namespace_urllib3_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 lance_namespace_urllib3_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import lance_namespace_urllib3_client
from lance_namespace_urllib3_client.rest import ApiException
from pprint import pprint

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



# Enter a context with an instance of the API client
with lance_namespace_urllib3_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = lance_namespace_urllib3_client.DataApi(api_client)
    id = 'id_example' # str | `string identifier` of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, `v1/namespace/./list` performs a `ListNamespace` on the root namespace. 
    count_table_rows_request = lance_namespace_urllib3_client.CountTableRowsRequest() # CountTableRowsRequest | 
    delimiter = 'delimiter_example' # str | An optional delimiter of the `string identifier`, following the Lance Namespace spec. When not specified, the `.` delimiter must be used.  (optional)

    try:
        # Count rows in a table
        api_response = api_instance.count_table_rows(id, count_table_rows_request, delimiter=delimiter)
        print("The response of DataApi->count_table_rows:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DataApi->count_table_rows: %s\n" % e)

```

## Documentation for API Endpoints

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

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DataApi* | [**count_table_rows**](docs/DataApi.md#count_table_rows) | **POST** /v1/table/{id}/count_rows | Count rows in a table
*DataApi* | [**create_table**](docs/DataApi.md#create_table) | **POST** /v1/table/{id}/create | Create a table with the given name
*DataApi* | [**delete_from_table**](docs/DataApi.md#delete_from_table) | **POST** /v1/table/{id}/delete | Delete rows from a table
*DataApi* | [**insert_into_table**](docs/DataApi.md#insert_into_table) | **POST** /v1/table/{id}/insert | Insert records into a table
*DataApi* | [**merge_insert_into_table**](docs/DataApi.md#merge_insert_into_table) | **POST** /v1/table/{id}/merge_insert | Merge insert (upsert) records into a table
*DataApi* | [**query_table**](docs/DataApi.md#query_table) | **POST** /v1/table/{id}/query | Query a table
*DataApi* | [**update_table**](docs/DataApi.md#update_table) | **POST** /v1/table/{id}/update | Update rows in a table
*IndexApi* | [**create_table_index**](docs/IndexApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table
*IndexApi* | [**describe_table_index_stats**](docs/IndexApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics
*IndexApi* | [**list_table_indices**](docs/IndexApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table
*MetadataApi* | [**alter_transaction**](docs/MetadataApi.md#alter_transaction) | **POST** /v1/transaction/{id}/alter | Alter information of a transaction.
*MetadataApi* | [**create_namespace**](docs/MetadataApi.md#create_namespace) | **POST** /v1/namespace/{id}/create | Create a new namespace
*MetadataApi* | [**create_table_index**](docs/MetadataApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table
*MetadataApi* | [**deregister_table**](docs/MetadataApi.md#deregister_table) | **POST** /v1/table/{id}/deregister | Deregister a table
*MetadataApi* | [**describe_namespace**](docs/MetadataApi.md#describe_namespace) | **POST** /v1/namespace/{id}/describe | Describe a namespace
*MetadataApi* | [**describe_table**](docs/MetadataApi.md#describe_table) | **POST** /v1/table/{id}/describe | Describe information of a table
*MetadataApi* | [**describe_table_index_stats**](docs/MetadataApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics
*MetadataApi* | [**describe_transaction**](docs/MetadataApi.md#describe_transaction) | **POST** /v1/transaction/{id}/describe | Describe information about a transaction
*MetadataApi* | [**drop_namespace**](docs/MetadataApi.md#drop_namespace) | **POST** /v1/namespace/{id}/drop | Drop a namespace
*MetadataApi* | [**drop_table**](docs/MetadataApi.md#drop_table) | **POST** /v1/table/{id}/drop | Drop a table
*MetadataApi* | [**list_namespaces**](docs/MetadataApi.md#list_namespaces) | **GET** /v1/namespace/{id}/list | List namespaces
*MetadataApi* | [**list_table_indices**](docs/MetadataApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table
*MetadataApi* | [**list_tables**](docs/MetadataApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace
*MetadataApi* | [**namespace_exists**](docs/MetadataApi.md#namespace_exists) | **POST** /v1/namespace/{id}/exists | Check if a namespace exists
*MetadataApi* | [**register_table**](docs/MetadataApi.md#register_table) | **POST** /v1/table/{id}/register | Register a table to a namespace
*MetadataApi* | [**table_exists**](docs/MetadataApi.md#table_exists) | **POST** /v1/table/{id}/exists | Check if a table exists
*NamespaceApi* | [**create_namespace**](docs/NamespaceApi.md#create_namespace) | **POST** /v1/namespace/{id}/create | Create a new namespace
*NamespaceApi* | [**describe_namespace**](docs/NamespaceApi.md#describe_namespace) | **POST** /v1/namespace/{id}/describe | Describe a namespace
*NamespaceApi* | [**drop_namespace**](docs/NamespaceApi.md#drop_namespace) | **POST** /v1/namespace/{id}/drop | Drop a namespace
*NamespaceApi* | [**list_namespaces**](docs/NamespaceApi.md#list_namespaces) | **GET** /v1/namespace/{id}/list | List namespaces
*NamespaceApi* | [**list_tables**](docs/NamespaceApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace
*NamespaceApi* | [**namespace_exists**](docs/NamespaceApi.md#namespace_exists) | **POST** /v1/namespace/{id}/exists | Check if a namespace exists
*TableApi* | [**count_table_rows**](docs/TableApi.md#count_table_rows) | **POST** /v1/table/{id}/count_rows | Count rows in a table
*TableApi* | [**create_table**](docs/TableApi.md#create_table) | **POST** /v1/table/{id}/create | Create a table with the given name
*TableApi* | [**create_table_index**](docs/TableApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table
*TableApi* | [**delete_from_table**](docs/TableApi.md#delete_from_table) | **POST** /v1/table/{id}/delete | Delete rows from a table
*TableApi* | [**deregister_table**](docs/TableApi.md#deregister_table) | **POST** /v1/table/{id}/deregister | Deregister a table
*TableApi* | [**describe_table**](docs/TableApi.md#describe_table) | **POST** /v1/table/{id}/describe | Describe information of a table
*TableApi* | [**describe_table_index_stats**](docs/TableApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics
*TableApi* | [**drop_table**](docs/TableApi.md#drop_table) | **POST** /v1/table/{id}/drop | Drop a table
*TableApi* | [**insert_into_table**](docs/TableApi.md#insert_into_table) | **POST** /v1/table/{id}/insert | Insert records into a table
*TableApi* | [**list_table_indices**](docs/TableApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table
*TableApi* | [**list_tables**](docs/TableApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace
*TableApi* | [**merge_insert_into_table**](docs/TableApi.md#merge_insert_into_table) | **POST** /v1/table/{id}/merge_insert | Merge insert (upsert) records into a table
*TableApi* | [**query_table**](docs/TableApi.md#query_table) | **POST** /v1/table/{id}/query | Query a table
*TableApi* | [**register_table**](docs/TableApi.md#register_table) | **POST** /v1/table/{id}/register | Register a table to a namespace
*TableApi* | [**table_exists**](docs/TableApi.md#table_exists) | **POST** /v1/table/{id}/exists | Check if a table exists
*TableApi* | [**update_table**](docs/TableApi.md#update_table) | **POST** /v1/table/{id}/update | Update rows in a table
*TransactionApi* | [**alter_transaction**](docs/TransactionApi.md#alter_transaction) | **POST** /v1/transaction/{id}/alter | Alter information of a transaction.
*TransactionApi* | [**describe_transaction**](docs/TransactionApi.md#describe_transaction) | **POST** /v1/transaction/{id}/describe | Describe information about a transaction


## Documentation For Models

 - [AlterTransactionAction](docs/AlterTransactionAction.md)
 - [AlterTransactionRequest](docs/AlterTransactionRequest.md)
 - [AlterTransactionResponse](docs/AlterTransactionResponse.md)
 - [AlterTransactionSetProperty](docs/AlterTransactionSetProperty.md)
 - [AlterTransactionSetStatus](docs/AlterTransactionSetStatus.md)
 - [AlterTransactionUnsetProperty](docs/AlterTransactionUnsetProperty.md)
 - [BooleanQuery](docs/BooleanQuery.md)
 - [BoostQuery](docs/BoostQuery.md)
 - [CountTableRowsRequest](docs/CountTableRowsRequest.md)
 - [CreateNamespaceRequest](docs/CreateNamespaceRequest.md)
 - [CreateNamespaceResponse](docs/CreateNamespaceResponse.md)
 - [CreateTableIndexRequest](docs/CreateTableIndexRequest.md)
 - [CreateTableIndexResponse](docs/CreateTableIndexResponse.md)
 - [CreateTableRequest](docs/CreateTableRequest.md)
 - [CreateTableResponse](docs/CreateTableResponse.md)
 - [DeleteFromTableRequest](docs/DeleteFromTableRequest.md)
 - [DeleteFromTableResponse](docs/DeleteFromTableResponse.md)
 - [DeregisterTableRequest](docs/DeregisterTableRequest.md)
 - [DeregisterTableResponse](docs/DeregisterTableResponse.md)
 - [DescribeNamespaceRequest](docs/DescribeNamespaceRequest.md)
 - [DescribeNamespaceResponse](docs/DescribeNamespaceResponse.md)
 - [DescribeTableIndexStatsRequest](docs/DescribeTableIndexStatsRequest.md)
 - [DescribeTableIndexStatsResponse](docs/DescribeTableIndexStatsResponse.md)
 - [DescribeTableRequest](docs/DescribeTableRequest.md)
 - [DescribeTableResponse](docs/DescribeTableResponse.md)
 - [DescribeTransactionRequest](docs/DescribeTransactionRequest.md)
 - [DescribeTransactionResponse](docs/DescribeTransactionResponse.md)
 - [DropNamespaceRequest](docs/DropNamespaceRequest.md)
 - [DropNamespaceResponse](docs/DropNamespaceResponse.md)
 - [DropTableRequest](docs/DropTableRequest.md)
 - [DropTableResponse](docs/DropTableResponse.md)
 - [ErrorResponse](docs/ErrorResponse.md)
 - [FtsQuery](docs/FtsQuery.md)
 - [IndexListItemResponse](docs/IndexListItemResponse.md)
 - [InsertIntoTableRequest](docs/InsertIntoTableRequest.md)
 - [InsertIntoTableResponse](docs/InsertIntoTableResponse.md)
 - [JsonArrowDataType](docs/JsonArrowDataType.md)
 - [JsonArrowField](docs/JsonArrowField.md)
 - [JsonArrowSchema](docs/JsonArrowSchema.md)
 - [ListNamespacesRequest](docs/ListNamespacesRequest.md)
 - [ListNamespacesResponse](docs/ListNamespacesResponse.md)
 - [ListTableIndicesRequest](docs/ListTableIndicesRequest.md)
 - [ListTableIndicesResponse](docs/ListTableIndicesResponse.md)
 - [ListTablesRequest](docs/ListTablesRequest.md)
 - [ListTablesResponse](docs/ListTablesResponse.md)
 - [MatchQuery](docs/MatchQuery.md)
 - [MergeInsertIntoTableRequest](docs/MergeInsertIntoTableRequest.md)
 - [MergeInsertIntoTableResponse](docs/MergeInsertIntoTableResponse.md)
 - [MultiMatchQuery](docs/MultiMatchQuery.md)
 - [NamespaceExistsRequest](docs/NamespaceExistsRequest.md)
 - [Operator](docs/Operator.md)
 - [PhraseQuery](docs/PhraseQuery.md)
 - [QueryTableRequest](docs/QueryTableRequest.md)
 - [QueryTableRequestFullTextQuery](docs/QueryTableRequestFullTextQuery.md)
 - [QueryTableRequestVector](docs/QueryTableRequestVector.md)
 - [RegisterTableRequest](docs/RegisterTableRequest.md)
 - [RegisterTableResponse](docs/RegisterTableResponse.md)
 - [SetPropertyMode](docs/SetPropertyMode.md)
 - [StringFtsQuery](docs/StringFtsQuery.md)
 - [StructuredFtsQuery](docs/StructuredFtsQuery.md)
 - [TableExistsRequest](docs/TableExistsRequest.md)
 - [TransactionStatus](docs/TransactionStatus.md)
 - [UnsetPropertyMode](docs/UnsetPropertyMode.md)
 - [UpdateTableRequest](docs/UpdateTableRequest.md)
 - [UpdateTableResponse](docs/UpdateTableResponse.md)


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

Endpoints do not require authorization.


## Author





            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "lance-namespace-urllib3-client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Lance Namespace Specification, OpenAPI, OpenAPI-Generator",
    "author": null,
    "author_email": "OpenAPI Generator Community <team@openapitools.org>",
    "download_url": "https://files.pythonhosted.org/packages/3f/1c/5c493157ae870c98812b0cf5579a0dbeefb49a20fe252fdc768316c4c635/lance_namespace_urllib3_client-0.0.5.tar.gz",
    "platform": null,
    "description": "# lance-namespace-urllib3-client\nThis OpenAPI specification is a part of the Lance namespace specification. It contains 2 parts:\n\nThe `components/schemas`, `components/responses`, `components/examples`, `tags` sections define\nthe request and response shape for each operation in a Lance Namespace across all implementations.\nSee https://lancedb.github.io/lance-namespace/spec/operations for more details.\n\nThe `servers`, `security`, `paths`, `components/parameters` sections are for the \nLance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets.\nSee https://lancedb.github.io/lance-namespace/spec/impls/rest for more details.\n\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 0.0.5\n- Generator version: 7.12.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\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 lance_namespace_urllib3_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 lance_namespace_urllib3_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 lance_namespace_urllib3_client\nfrom lance_namespace_urllib3_client.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost:2333\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = lance_namespace_urllib3_client.Configuration(\n    host = \"http://localhost:2333\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith lance_namespace_urllib3_client.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = lance_namespace_urllib3_client.DataApi(api_client)\n    id = 'id_example' # str | `string identifier` of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, `v1/namespace/./list` performs a `ListNamespace` on the root namespace. \n    count_table_rows_request = lance_namespace_urllib3_client.CountTableRowsRequest() # CountTableRowsRequest | \n    delimiter = 'delimiter_example' # str | An optional delimiter of the `string identifier`, following the Lance Namespace spec. When not specified, the `.` delimiter must be used.  (optional)\n\n    try:\n        # Count rows in a table\n        api_response = api_instance.count_table_rows(id, count_table_rows_request, delimiter=delimiter)\n        print(\"The response of DataApi->count_table_rows:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling DataApi->count_table_rows: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost:2333*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DataApi* | [**count_table_rows**](docs/DataApi.md#count_table_rows) | **POST** /v1/table/{id}/count_rows | Count rows in a table\n*DataApi* | [**create_table**](docs/DataApi.md#create_table) | **POST** /v1/table/{id}/create | Create a table with the given name\n*DataApi* | [**delete_from_table**](docs/DataApi.md#delete_from_table) | **POST** /v1/table/{id}/delete | Delete rows from a table\n*DataApi* | [**insert_into_table**](docs/DataApi.md#insert_into_table) | **POST** /v1/table/{id}/insert | Insert records into a table\n*DataApi* | [**merge_insert_into_table**](docs/DataApi.md#merge_insert_into_table) | **POST** /v1/table/{id}/merge_insert | Merge insert (upsert) records into a table\n*DataApi* | [**query_table**](docs/DataApi.md#query_table) | **POST** /v1/table/{id}/query | Query a table\n*DataApi* | [**update_table**](docs/DataApi.md#update_table) | **POST** /v1/table/{id}/update | Update rows in a table\n*IndexApi* | [**create_table_index**](docs/IndexApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table\n*IndexApi* | [**describe_table_index_stats**](docs/IndexApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics\n*IndexApi* | [**list_table_indices**](docs/IndexApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table\n*MetadataApi* | [**alter_transaction**](docs/MetadataApi.md#alter_transaction) | **POST** /v1/transaction/{id}/alter | Alter information of a transaction.\n*MetadataApi* | [**create_namespace**](docs/MetadataApi.md#create_namespace) | **POST** /v1/namespace/{id}/create | Create a new namespace\n*MetadataApi* | [**create_table_index**](docs/MetadataApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table\n*MetadataApi* | [**deregister_table**](docs/MetadataApi.md#deregister_table) | **POST** /v1/table/{id}/deregister | Deregister a table\n*MetadataApi* | [**describe_namespace**](docs/MetadataApi.md#describe_namespace) | **POST** /v1/namespace/{id}/describe | Describe a namespace\n*MetadataApi* | [**describe_table**](docs/MetadataApi.md#describe_table) | **POST** /v1/table/{id}/describe | Describe information of a table\n*MetadataApi* | [**describe_table_index_stats**](docs/MetadataApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics\n*MetadataApi* | [**describe_transaction**](docs/MetadataApi.md#describe_transaction) | **POST** /v1/transaction/{id}/describe | Describe information about a transaction\n*MetadataApi* | [**drop_namespace**](docs/MetadataApi.md#drop_namespace) | **POST** /v1/namespace/{id}/drop | Drop a namespace\n*MetadataApi* | [**drop_table**](docs/MetadataApi.md#drop_table) | **POST** /v1/table/{id}/drop | Drop a table\n*MetadataApi* | [**list_namespaces**](docs/MetadataApi.md#list_namespaces) | **GET** /v1/namespace/{id}/list | List namespaces\n*MetadataApi* | [**list_table_indices**](docs/MetadataApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table\n*MetadataApi* | [**list_tables**](docs/MetadataApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace\n*MetadataApi* | [**namespace_exists**](docs/MetadataApi.md#namespace_exists) | **POST** /v1/namespace/{id}/exists | Check if a namespace exists\n*MetadataApi* | [**register_table**](docs/MetadataApi.md#register_table) | **POST** /v1/table/{id}/register | Register a table to a namespace\n*MetadataApi* | [**table_exists**](docs/MetadataApi.md#table_exists) | **POST** /v1/table/{id}/exists | Check if a table exists\n*NamespaceApi* | [**create_namespace**](docs/NamespaceApi.md#create_namespace) | **POST** /v1/namespace/{id}/create | Create a new namespace\n*NamespaceApi* | [**describe_namespace**](docs/NamespaceApi.md#describe_namespace) | **POST** /v1/namespace/{id}/describe | Describe a namespace\n*NamespaceApi* | [**drop_namespace**](docs/NamespaceApi.md#drop_namespace) | **POST** /v1/namespace/{id}/drop | Drop a namespace\n*NamespaceApi* | [**list_namespaces**](docs/NamespaceApi.md#list_namespaces) | **GET** /v1/namespace/{id}/list | List namespaces\n*NamespaceApi* | [**list_tables**](docs/NamespaceApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace\n*NamespaceApi* | [**namespace_exists**](docs/NamespaceApi.md#namespace_exists) | **POST** /v1/namespace/{id}/exists | Check if a namespace exists\n*TableApi* | [**count_table_rows**](docs/TableApi.md#count_table_rows) | **POST** /v1/table/{id}/count_rows | Count rows in a table\n*TableApi* | [**create_table**](docs/TableApi.md#create_table) | **POST** /v1/table/{id}/create | Create a table with the given name\n*TableApi* | [**create_table_index**](docs/TableApi.md#create_table_index) | **POST** /v1/table/{id}/create_index | Create an index on a table\n*TableApi* | [**delete_from_table**](docs/TableApi.md#delete_from_table) | **POST** /v1/table/{id}/delete | Delete rows from a table\n*TableApi* | [**deregister_table**](docs/TableApi.md#deregister_table) | **POST** /v1/table/{id}/deregister | Deregister a table\n*TableApi* | [**describe_table**](docs/TableApi.md#describe_table) | **POST** /v1/table/{id}/describe | Describe information of a table\n*TableApi* | [**describe_table_index_stats**](docs/TableApi.md#describe_table_index_stats) | **POST** /v1/table/{id}/index/{index_name}/stats | Get table index statistics\n*TableApi* | [**drop_table**](docs/TableApi.md#drop_table) | **POST** /v1/table/{id}/drop | Drop a table\n*TableApi* | [**insert_into_table**](docs/TableApi.md#insert_into_table) | **POST** /v1/table/{id}/insert | Insert records into a table\n*TableApi* | [**list_table_indices**](docs/TableApi.md#list_table_indices) | **POST** /v1/table/{id}/index/list | List indexes on a table\n*TableApi* | [**list_tables**](docs/TableApi.md#list_tables) | **GET** /v1/namespace/{id}/table/list | List tables in a namespace\n*TableApi* | [**merge_insert_into_table**](docs/TableApi.md#merge_insert_into_table) | **POST** /v1/table/{id}/merge_insert | Merge insert (upsert) records into a table\n*TableApi* | [**query_table**](docs/TableApi.md#query_table) | **POST** /v1/table/{id}/query | Query a table\n*TableApi* | [**register_table**](docs/TableApi.md#register_table) | **POST** /v1/table/{id}/register | Register a table to a namespace\n*TableApi* | [**table_exists**](docs/TableApi.md#table_exists) | **POST** /v1/table/{id}/exists | Check if a table exists\n*TableApi* | [**update_table**](docs/TableApi.md#update_table) | **POST** /v1/table/{id}/update | Update rows in a table\n*TransactionApi* | [**alter_transaction**](docs/TransactionApi.md#alter_transaction) | **POST** /v1/transaction/{id}/alter | Alter information of a transaction.\n*TransactionApi* | [**describe_transaction**](docs/TransactionApi.md#describe_transaction) | **POST** /v1/transaction/{id}/describe | Describe information about a transaction\n\n\n## Documentation For Models\n\n - [AlterTransactionAction](docs/AlterTransactionAction.md)\n - [AlterTransactionRequest](docs/AlterTransactionRequest.md)\n - [AlterTransactionResponse](docs/AlterTransactionResponse.md)\n - [AlterTransactionSetProperty](docs/AlterTransactionSetProperty.md)\n - [AlterTransactionSetStatus](docs/AlterTransactionSetStatus.md)\n - [AlterTransactionUnsetProperty](docs/AlterTransactionUnsetProperty.md)\n - [BooleanQuery](docs/BooleanQuery.md)\n - [BoostQuery](docs/BoostQuery.md)\n - [CountTableRowsRequest](docs/CountTableRowsRequest.md)\n - [CreateNamespaceRequest](docs/CreateNamespaceRequest.md)\n - [CreateNamespaceResponse](docs/CreateNamespaceResponse.md)\n - [CreateTableIndexRequest](docs/CreateTableIndexRequest.md)\n - [CreateTableIndexResponse](docs/CreateTableIndexResponse.md)\n - [CreateTableRequest](docs/CreateTableRequest.md)\n - [CreateTableResponse](docs/CreateTableResponse.md)\n - [DeleteFromTableRequest](docs/DeleteFromTableRequest.md)\n - [DeleteFromTableResponse](docs/DeleteFromTableResponse.md)\n - [DeregisterTableRequest](docs/DeregisterTableRequest.md)\n - [DeregisterTableResponse](docs/DeregisterTableResponse.md)\n - [DescribeNamespaceRequest](docs/DescribeNamespaceRequest.md)\n - [DescribeNamespaceResponse](docs/DescribeNamespaceResponse.md)\n - [DescribeTableIndexStatsRequest](docs/DescribeTableIndexStatsRequest.md)\n - [DescribeTableIndexStatsResponse](docs/DescribeTableIndexStatsResponse.md)\n - [DescribeTableRequest](docs/DescribeTableRequest.md)\n - [DescribeTableResponse](docs/DescribeTableResponse.md)\n - [DescribeTransactionRequest](docs/DescribeTransactionRequest.md)\n - [DescribeTransactionResponse](docs/DescribeTransactionResponse.md)\n - [DropNamespaceRequest](docs/DropNamespaceRequest.md)\n - [DropNamespaceResponse](docs/DropNamespaceResponse.md)\n - [DropTableRequest](docs/DropTableRequest.md)\n - [DropTableResponse](docs/DropTableResponse.md)\n - [ErrorResponse](docs/ErrorResponse.md)\n - [FtsQuery](docs/FtsQuery.md)\n - [IndexListItemResponse](docs/IndexListItemResponse.md)\n - [InsertIntoTableRequest](docs/InsertIntoTableRequest.md)\n - [InsertIntoTableResponse](docs/InsertIntoTableResponse.md)\n - [JsonArrowDataType](docs/JsonArrowDataType.md)\n - [JsonArrowField](docs/JsonArrowField.md)\n - [JsonArrowSchema](docs/JsonArrowSchema.md)\n - [ListNamespacesRequest](docs/ListNamespacesRequest.md)\n - [ListNamespacesResponse](docs/ListNamespacesResponse.md)\n - [ListTableIndicesRequest](docs/ListTableIndicesRequest.md)\n - [ListTableIndicesResponse](docs/ListTableIndicesResponse.md)\n - [ListTablesRequest](docs/ListTablesRequest.md)\n - [ListTablesResponse](docs/ListTablesResponse.md)\n - [MatchQuery](docs/MatchQuery.md)\n - [MergeInsertIntoTableRequest](docs/MergeInsertIntoTableRequest.md)\n - [MergeInsertIntoTableResponse](docs/MergeInsertIntoTableResponse.md)\n - [MultiMatchQuery](docs/MultiMatchQuery.md)\n - [NamespaceExistsRequest](docs/NamespaceExistsRequest.md)\n - [Operator](docs/Operator.md)\n - [PhraseQuery](docs/PhraseQuery.md)\n - [QueryTableRequest](docs/QueryTableRequest.md)\n - [QueryTableRequestFullTextQuery](docs/QueryTableRequestFullTextQuery.md)\n - [QueryTableRequestVector](docs/QueryTableRequestVector.md)\n - [RegisterTableRequest](docs/RegisterTableRequest.md)\n - [RegisterTableResponse](docs/RegisterTableResponse.md)\n - [SetPropertyMode](docs/SetPropertyMode.md)\n - [StringFtsQuery](docs/StringFtsQuery.md)\n - [StructuredFtsQuery](docs/StructuredFtsQuery.md)\n - [TableExistsRequest](docs/TableExistsRequest.md)\n - [TransactionStatus](docs/TransactionStatus.md)\n - [UnsetPropertyMode](docs/UnsetPropertyMode.md)\n - [UpdateTableRequest](docs/UpdateTableRequest.md)\n - [UpdateTableResponse](docs/UpdateTableResponse.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Lance Namespace Specification",
    "version": "0.0.5",
    "project_urls": {
        "Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
    },
    "split_keywords": [
        "lance namespace specification",
        " openapi",
        " openapi-generator"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a80dac68209c0aec5fd6e81c71466428c0fb1027687de8ba1f7f58a5e035eb0a",
                "md5": "3719fd66ed0fadd716a4ebc849fa7017",
                "sha256": "c48adc6e63eb3ccb9836a153aef3adf25e1d523f746bdbd459487dc63394b30d"
            },
            "downloads": -1,
            "filename": "lance_namespace_urllib3_client-0.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3719fd66ed0fadd716a4ebc849fa7017",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 165112,
            "upload_time": "2025-08-01T05:23:35",
            "upload_time_iso_8601": "2025-08-01T05:23:35.176223Z",
            "url": "https://files.pythonhosted.org/packages/a8/0d/ac68209c0aec5fd6e81c71466428c0fb1027687de8ba1f7f58a5e035eb0a/lance_namespace_urllib3_client-0.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f1c5c493157ae870c98812b0cf5579a0dbeefb49a20fe252fdc768316c4c635",
                "md5": "e284bac6efbae9579b75d66e96e883a8",
                "sha256": "cb8eb24563f3fb9790f93627d373e2a781316914608b7a7a9c0c7416e1505248"
            },
            "downloads": -1,
            "filename": "lance_namespace_urllib3_client-0.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "e284bac6efbae9579b75d66e96e883a8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 100005,
            "upload_time": "2025-08-01T05:23:36",
            "upload_time_iso_8601": "2025-08-01T05:23:36.921556Z",
            "url": "https://files.pythonhosted.org/packages/3f/1c/5c493157ae870c98812b0cf5579a0dbeefb49a20fe252fdc768316c4c635/lance_namespace_urllib3_client-0.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-01 05:23:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GIT_USER_ID",
    "github_project": "GIT_REPO_ID",
    "github_not_found": true,
    "lcname": "lance-namespace-urllib3-client"
}
        
Elapsed time: 0.68323s