The Narrator model stores information about a narrator found in the “Additional Authors” column
Attributes
name: str
-
The full name of the narrator.
Examples
from goodreads_normalizer import Narrator
narrator = Narrator(name="Travis Baldree")
print(f"Narrator Name: {narrator.full_name}")
print(f"Narrator Name (N): {narrator.name_with_short_tag}")
print(f"Narrator Name (Narrator): {narrator.name_with_long_tag}")
Narrator Name: Travis Baldree
Narrator Name (N): Travis Baldree (N)
Narrator Name (Narrator): Travis Baldree (Narrator)