"""Identifier consts."""importrefromcomicbox.enums.comicboximportAlternateIdSources,IdSourcesID_SOURCE_VALUES=(id_source.valueforid_sourceinIdSources)DEFAULT_ID_SOURCE=IdSources.COMICVINEDEFAULT_ID_TYPE="issue"# Field names inside the comicbox identifier dict shape.ID_KEY_KEY="key"ID_URL_KEY="url"_ALL_ID_SOURCES=(*ID_SOURCE_VALUES,*(id_source.valueforid_sourceinAlternateIdSources),)IDENTIFIER_RE_EXP=(r"(?P<id_source>"+r"|".join(_ALL_ID_SOURCES)+r"):?(?P<id_key>[\w-]+)")COMICVINE_LONG_ID_KEY_EXP=r"(?P<id_type>\d{4})-(?P<id_key>\d+)"PARSE_COMICVINE_RE=re.compile(COMICVINE_LONG_ID_KEY_EXP)
Search
From here you can search these documents. Enter your search terms below.