Metadata-Version: 2.4
Name: cochl-sense-api
Version: 1.7.11
Summary: Cochl Sense API
Project-URL: Homepage, https://github.com/cochlearai/sense-api-samples
Project-URL: Issues, https://github.com/cochlearai/sense-api-samples/issues
Author-email: Cochl <support@cochl.ai>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pydantic>=2.11.4
Requires-Dist: python-dateutil>=2.9.0.post0
Requires-Dist: urllib3>=2.4.0
Description-Content-Type: text/markdown

# cochl-sense-api
Cochl.Sense API allows to detect what is contained inside sound data. Send audio
data over the internet to discover what it contains.


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

- API version: v1.7.11
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python >= 3.9

## 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 cochl_sense_api
```

### 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 cochl_sense_api
```

## Getting Started

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

```python

import time
import cochl_sense_api
from pprint import pprint
from cochl_sense_api.api import audio_session_api
from cochl_sense_api.model.audio_chunk import AudioChunk
from cochl_sense_api.model.create_session import CreateSession
from cochl_sense_api.model.created_session import CreatedSession
from cochl_sense_api.model.generic_error import GenericError
from cochl_sense_api.model.predict_request import PredictRequest
from cochl_sense_api.model.predict_response import PredictResponse
from cochl_sense_api.model.session_refs import SessionRefs
from cochl_sense_api.model.session_result import SessionResult
from cochl_sense_api.model.session_status import SessionStatus
from cochl_sense_api.model.update_session import UpdateSession
# Defining the host is optional and defaults to https://api.cochl.ai/sense/api/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = cochl_sense_api.Configuration(
    host = "https://api.cochl.ai/sense/api/v1"
)

# 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.

# Configure API key authorization: API_Key
configuration.api_key['API_Key'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API_Key'] = 'Bearer'


# Enter a context with an instance of the API client
with cochl_sense_api.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = audio_session_api.AudioSessionApi(api_client)
    create_session = CreateSession(
        type=SessionType("stream"),
        content_type="audio/x-raw; rate=44100; format=s24le",
        tags_sensitivity=TagsSensitivity(
            key=-2,
        ),
        default_sensitivity=DefaultSensitivity(0),
        total_size=1,
        file_name="file_name_example",
        file_length=3.14,
        window_hop="window_hop_example",
    ) # CreateSession | 

    try:
        # Create Session
        api_response = api_instance.create_session(create_session)
        pprint(api_response)
    except cochl_sense_api.ApiException as e:
        print("Exception when calling AudioSessionApi->create_session: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to *https://api.cochl.ai/sense/api/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AudioSessionApi* | [**create_session**](docs/AudioSessionApi.md#create_session) | **POST** /audio_sessions/ | Create Session
*AudioSessionApi* | [**delete_session**](docs/AudioSessionApi.md#delete_session) | **DELETE** /audio_sessions/{session_id} | Delete Session
*AudioSessionApi* | [**get_results**](docs/AudioSessionApi.md#get_results) | **GET** /audio_sessions/{session_id}/results | Get File Result
*AudioSessionApi* | [**predict**](docs/AudioSessionApi.md#predict) | **POST** /audio_sessions/{session_id}/predict | Predict
*AudioSessionApi* | [**read_status**](docs/AudioSessionApi.md#read_status) | **GET** /audio_sessions/{session_id}/status | Read Status
*AudioSessionApi* | [**update_session**](docs/AudioSessionApi.md#update_session) | **PATCH** /audio_sessions/{session_id} | Update Session
*AudioSessionApi* | [**upload_chunk**](docs/AudioSessionApi.md#upload_chunk) | **PUT** /audio_sessions/{session_id}/chunks/{chunk_sequence} | Upload Chunk


## Documentation For Models

 - [AudioChunk](docs/AudioChunk.md)
 - [CreateSession](docs/CreateSession.md)
 - [CreatedSession](docs/CreatedSession.md)
 - [DefaultSensitivity](docs/DefaultSensitivity.md)
 - [GenericError](docs/GenericError.md)
 - [Page](docs/Page.md)
 - [PredictRequest](docs/PredictRequest.md)
 - [PredictResponse](docs/PredictResponse.md)
 - [Sense](docs/Sense.md)
 - [SenseEvent](docs/SenseEvent.md)
 - [SenseEventTag](docs/SenseEventTag.md)
 - [SessionRefs](docs/SessionRefs.md)
 - [SessionResult](docs/SessionResult.md)
 - [SessionStatus](docs/SessionStatus.md)
 - [SessionType](docs/SessionType.md)
 - [TagsSensitivity](docs/TagsSensitivity.md)
 - [UpdateSession](docs/UpdateSession.md)


## Documentation For Authorization


## API_Key

- **Type**: API key
- **API key parameter name**: x-api-key
- **Location**: HTTP header


## Author

support@cochl.ai


## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in cochl_sense_api.apis and cochl_sense_api.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1:
Use specific imports for apis and models like:
- `from cochl_sense_api.api.default_api import DefaultApi`
- `from cochl_sense_api.model.pet import Pet`

Solution 2:
Before importing the package, adjust the maximum recursion limit as shown below:
```
import sys
sys.setrecursionlimit(1500)
import cochl_sense_api
from cochl_sense_api.apis import *
from cochl_sense_api.models import *
```
