Metadata Module

class sudio.metadata.metadata.AudioMetadata(name, **kwargs)

Bases: object

Flexible metadata container for audio records.

Allows dynamic attribute creation and provides dictionary-like access to metadata with additional utility methods.

Initialize an audio metadata object.

Parameters:
  • (str) (- name)

  • **kwargs (-) –

keys()

Get a list of all non-private attribute names.

Returns:

:

list: Names of public attributes in the metadata.

copy()

Create a deep copy of the metadata object.

Returns:

:

AudioMetadata: A new instance with the same attributes.

get_data()

Return the metadata object itself.

Useful for maintaining a consistent interface with other data retrieval methods.

Returns:

:

AudioMetadata: The current metadata instance.

class sudio.metadata.audio_record_database.AudioRecordDatabase

Bases: object

A lightweight in-memory database for managing audio records.

Provides dictionary-like access and manipulation of audio records with simple key (name) based storage and retrieval.

Initialize an empty audio record database.

Creates an empty dictionary to store audio records with names as keys.

add_record(record)

Add an audio record to the database.

Args:

record: An audio record with a ‘name’ attribute to be used as the key.

get_record(name)

Retrieve a specific audio record by its name.

Args:

name (str): Name of the audio record to retrieve.

Returns:

:

The audio record if found, None otherwise.

remove_record(name)

Remove a record from the database by its name.

Args:

name (str): Name of the audio record to remove.

index()

Get a list of all record names in the database.

Returns:

:

list: Names of all records currently in the database.