Helpful Python functions


Keywords
Python, tools, utils
License
Other
Install
pip install audeer==2.0.0

Documentation

audeer

Test status code coverage audeer's documentation audeer's supported Python versions audeer's MIT license

The Python package audeer collects small tools and functions that deal with common tasks. For example, it incorporates functions for handling file paths, using multi-threading, or showing progress bars.

The package is lightweight, and has the small tqdm package as it's only external dependency.

Have a look at the installation and usage instructions as a starting point.

Code example, that lists all WAV files in the data folder:

import audeer

files = audeer.list_file_names("data", filetype="wav")