tessa.sources.sourcetype

SourceType is a literal type with all known sources; used for type hinting and to support autocomplete suggestions.

 1"""`SourceType` is a literal type with all known sources; used for type hinting and to
 2support autocomplete suggestions.
 3"""
 4
 5from typing import Literal
 6
 7SourceType = Literal[
 8    "yahoo",
 9    "coingecko",
10]