Registry / devops / audoai-noise-removal

audoai-noise-removal

JSON →
library1.4.0pypypi✓ verified 80d ago

Python client for Audo AI's noise removal APIs. Currently version 1.4.0. Allows upload of audio files for noise reduction and removal. Release cadence is low; updates are infrequent.

pip install audoai-noise-removal
INSTALL
IMPORT
SIG · AUDOAI-NOISE-REMOV
A
audoai-noise-removal
devopspythonv1.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AudoAIDenoise
import audoai
from audoai import AudoAIDenoise

Initialize the client with your API key (set as env var AUDO_API_KEY) and call remove_noise to process an audio file.

import os from audoai import AudoAIDenoise api_key = os.environ.get('AUDO_API_KEY', '') client = AudoAIDenoise(api_key=api_key) # Remove noise from an audio file result = client.remove_noise( input_file_path='noisy_audio.wav', output_file_path='clean_audio.wav' ) print('Noise removal completed')
Debug
Known issues
gotchaThe package name on PyPI is audoai-noise-removal, but the Python import module is 'audoai'. Attempting 'import audoai_noise_removal' will fail with ModuleNotFoundError.
fix
Use 'from audoai import AudoAIDenoise'.
affects: all
deprecatedOlder versions (pre-1.0.0) used a different class name 'AudoAIDenoise' was not present; the API was named 'removeNoise' instead of 'remove_noise'. Check your code if upgrading from very old versions.
fix
Update imports and method calls to match version 1.4.0 patterns.
affects: <1.0.0
gotchaThe API key must be provided either as a parameter or via the AUDO_API_KEY environment variable. If neither is set, the client will raise an authentication error.
fix
Set the environment variable or pass api_key directly.
affects: all
Upgrade
Version history
1.4.0latest on PyPI · released Mar 31, 2022
Audit
Dependencies
requestsrequiredHTTP client for API calls
Agent activity
10 hits · last 30 days
node
8
OpenAI (training)
2
Resources
audoai-noise-removal — pip install audoai-noise-removal · libregistry