"""Package name and version."""importsysfromcontextlibimportsuppressfromimportlib.metadataimportPackageNotFoundError,versionPACKAGE_NAME="comicbox"defget_version()->str:
"""Get the current installed comicbox version."""v="dev"if"pytest"notinsys.modules:withsuppress(PackageNotFoundError):v=version(PACKAGE_NAME)returnvVERSION=get_version()# Metadata provenance stamp (tagger field + ComicTagger-style notes). Space# delimiter matches the ComicTagger convention the notes parser round-trips.DEFAULT_TAGGER=f"{PACKAGE_NAME}{VERSION}"# HTTP User-Agent for online API clients (simyan, mokkari). Slash delimiter is# the RFC 9110 product-token convention, distinct from DEFAULT_TAGGER on purpose.USER_AGENT=f"{PACKAGE_NAME}/{VERSION}"
Search
From here you can search these documents. Enter your search terms below.