Cochl Sense API
Project description
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 project:
- API version: v1.7.6
- Package version: 1.0.6
- 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:
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:
import cochl_sense_api
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import cochl_sense_api
Getting Started
Please follow the installation procedure and then run the following:
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 | POST /audio_sessions/ | Create Session |
AudioSessionApi | delete_session | DELETE /audio_sessions/{session_id} | Delete Session |
AudioSessionApi | get_results | GET /audio_sessions/{session_id}/results | Get File Result |
AudioSessionApi | predict | POST /audio_sessions/{session_id}/predict | Predict |
AudioSessionApi | read_status | GET /audio_sessions/{session_id}/status | Read Status |
AudioSessionApi | update_session | PATCH /audio_sessions/{session_id} | Update Session |
AudioSessionApi | upload_chunk | PUT /audio_sessions/{session_id}/chunks/{chunk_sequence} | Upload Chunk |
Documentation For Models
- AudioChunk
- CreateSession
- CreatedSession
- DefaultSensitivity
- GenericError
- Page
- PredictRequest
- PredictResponse
- Sense
- SenseEvent
- SenseEventTag
- SessionRefs
- SessionResult
- SessionStatus
- SessionType
- TagsSensitivity
- UpdateSession
Documentation For Authorization
API_Key
- Type: API key
- API key parameter name: x-api-key
- Location: HTTP header
Author
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 *
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cochl_sense_api-1.7.6.tar.gz
.
File metadata
- Download URL: cochl_sense_api-1.7.6.tar.gz
- Upload date:
- Size: 47.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49d4b5309571793be21b0932c10bd6cad73fe33094b0dffed414dde7879ddb87 |
|
MD5 | ea5cbbb8535cfefb0d3c7bc3ca8a4100 |
|
BLAKE2b-256 | a1570b8c30cdc48305415a88f09551778b9bf3872173e2c8ddb58f67e5ed8508 |
Provenance
File details
Details for the file cochl_sense_api-1.7.6-py3-none-any.whl
.
File metadata
- Download URL: cochl_sense_api-1.7.6-py3-none-any.whl
- Upload date:
- Size: 88.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0df9ad9ca91c91d15cdacf8ad5fc8f104d4f9aebb0c9055d1d8b656d94fb727b |
|
MD5 | 5113f1390304ec02f12c7a8ef25182af |
|
BLAKE2b-256 | 8b1fc676e715ea62d1b7d2009e22b00f0a5171a99ec39095a5e77ddb99305be3 |