Source code for aac_datasets.info
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import platform
import sys
from pathlib import Path
from typing import Dict
import torch
import torchaudio
from pythonwrench.json import dump_json
import aac_datasets
from aac_datasets.utils.globals import (
get_default_ffmpeg_path,
get_default_root,
get_default_ytdlp_path,
)
[docs]
def get_package_repository_path() -> str:
"""Return the absolute path where the source code of this package is installed."""
return str(Path(__file__).parent.parent.parent)
[docs]
def get_install_info() -> Dict[str, str]:
"""Return a dictionary containing the version python, the os name, the architecture name and the versions of the following packages: aac_datasets, torch, torchaudio."""
return {
"aac_datasets": aac_datasets.__version__,
"python": f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}",
"os": platform.system(),
"architecture": platform.architecture()[0],
"torch": str(torch.__version__),
"torchaudio": torchaudio.__version__,
"package_path": get_package_repository_path(),
"root": get_default_root(),
"ffmpeg_path": get_default_ffmpeg_path(),
"ytdlp_path": get_default_ytdlp_path(),
}
[docs]
def print_install_info() -> None:
"""Show main packages versions."""
install_info = get_install_info()
print(dump_json(install_info))
if __name__ == "__main__":
print_install_info()