audmodel 1.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- audmodel/__init__.py +35 -0
- audmodel/core/__init__.py +0 -0
- audmodel/core/api.py +1005 -0
- audmodel/core/backend.py +625 -0
- audmodel/core/config.py +22 -0
- audmodel/core/conftest.py +35 -0
- audmodel/core/define.py +14 -0
- audmodel/core/repository.py +148 -0
- audmodel/core/utils.py +87 -0
- audmodel-1.3.0.dist-info/LICENSE +25 -0
- audmodel-1.3.0.dist-info/METADATA +58 -0
- audmodel-1.3.0.dist-info/RECORD +14 -0
- audmodel-1.3.0.dist-info/WHEEL +5 -0
- audmodel-1.3.0.dist-info/top_level.txt +1 -0
audmodel/__init__.py
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from audmodel.core.api import author
|
|
2
|
+
from audmodel.core.api import date
|
|
3
|
+
from audmodel.core.api import default_cache_root
|
|
4
|
+
from audmodel.core.api import exists
|
|
5
|
+
from audmodel.core.api import header
|
|
6
|
+
from audmodel.core.api import latest_version
|
|
7
|
+
from audmodel.core.api import legacy_uid
|
|
8
|
+
from audmodel.core.api import load
|
|
9
|
+
from audmodel.core.api import meta
|
|
10
|
+
from audmodel.core.api import name
|
|
11
|
+
from audmodel.core.api import parameters
|
|
12
|
+
from audmodel.core.api import publish
|
|
13
|
+
from audmodel.core.api import subgroup
|
|
14
|
+
from audmodel.core.api import uid
|
|
15
|
+
from audmodel.core.api import update_meta
|
|
16
|
+
from audmodel.core.api import url
|
|
17
|
+
from audmodel.core.api import version
|
|
18
|
+
from audmodel.core.api import versions
|
|
19
|
+
from audmodel.core.config import config
|
|
20
|
+
from audmodel.core.repository import Repository
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# Discourage from audmodel import *
|
|
24
|
+
__all__ = []
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Dynamically get the version of the installed module
|
|
28
|
+
try:
|
|
29
|
+
import importlib.metadata
|
|
30
|
+
|
|
31
|
+
__version__ = importlib.metadata.version(__name__)
|
|
32
|
+
except Exception: # pragma: no cover
|
|
33
|
+
importlib = None # pragma: no cover
|
|
34
|
+
finally:
|
|
35
|
+
del importlib
|
|
File without changes
|