config
pymusas.config
This module has various attributes, of which the most important of these are listed below:
Attributes¶
- PYMUSAS_CACHE_HOME :
str
The directory that by default we store any downloaded data too. This attribute by default is set to~/.cache/pymusas. This attribute can be set through thePYMUSAS_HOMEenvironment variable.
The creation of the PYMUSAS_CACHE_HOME attribute and how to set a default value
for it came from the HuggingFace Datasets codebase
(reference to their code).
DEFAULT_XDG_CACHE_HOME
DEFAULT_XDG_CACHE_HOME: str = os.path.join(os.path.expanduser('~'), '.cache')
XDG_CACHE_HOME
XDG_CACHE_HOME: str = os.getenv("XDG_CACHE_HOME", DEFAULT_XDG_CACHE_HOME)
DEFAULT_PYMUSAS_CACHE_HOME
DEFAULT_PYMUSAS_CACHE_HOME: str = os.path.join(XDG_CACHE_HOME, "pymusas")
PYMUSAS_CACHE_HOME
PYMUSAS_CACHE_HOME: str = os.path.expanduser(os.getenv("PYMUSAS_HOME", DEFAULT_PYMUSAS_CACHE_HOME))
LANG_LEXICON_RESOUCRE_MAPPER
LANG_LEXICON_RESOUCRE_MAPPER = {
'fr': {'lexicon': 'https://raw.githubusercontent.com/UCREL/Multilingual-USAS/master/French/sem ...