class CmsAccount: """ Cms Account =========== Representation of a CMS Account within our different systems. This object is used to create messages for AssetSearch call. """ def __init__( self, content_owner, content_owner_id ): """Create a CMS Account. Args: content_owner (str): name of the CMS Account content_owner_id (str): YouTube unique identifier for CMS Account """ self.content_owner = content_owner self.content_owner_id = content_owner_id CmsAccounts = { 'theorchardmusic': CmsAccount( content_owner='theorchardmusic', content_owner_id='J8vAyKuNSYBIN_9RIdxggQ'), 'ioda': CmsAccount( content_owner='IODA', content_owner_id='n293L2XLLmtg5wlKBao5Uw') }