Serialize activitypub authors from data in connector

This commit is contained in:
Mouse Reeve
2020-11-27 14:54:08 -08:00
parent f593970332
commit 7b6035898b
5 changed files with 61 additions and 51 deletions

View File

@ -56,10 +56,10 @@ class Work(Book):
class Author(ActivityObject):
''' author of a book '''
name: str
born: str
died: str
aliases: str
bio: str
openlibrary_key: str
wikipedia_link: str
born: str = ''
died: str = ''
aliases: str = ''
bio: str = ''
openlibraryKey: str = ''
wikipediaLink: str = ''
type: str = 'Person'