USDB Syncer is an app to download and synchronize UltraStar songs hosted on USDB.
The project extensively uses the #VIDEO tag to automatically retrieve the resources (audio, video, images, etc...) to make the UltraStar song complete.
Once a song is downloaded it can be synchronized (new notes, audio, video, images...) by redownloading the song. If a resource didn't change it's skipped.
There are three ways to run USDB Syncer:
- To run from source, see Development.
- Use your favourite package manager to install the Python package, e.g. pipx:
pipx install usdb_syncer - We provide ready-to-run executables for all major operating systems.
Important
Linux users should check Linux Compatibility as additional configuration is usually required.
USDB Syncer is written in Python, and uses uv to manage its dependencies. The following explains how to set up a development environment.
- git
- Python 3.12 (3.11 should work as well)
- uv
Clone the project:
git clone https://github.com/bohning/usdb_syncer.git
cd usdb_syncerInstall dependencies:
uv syncThe package has a defined entry point for the GUI. Simply run:
uv run usdb_syncertox makes it easy to run the full CI pipeline on your local machine, i.e., if the pipeline passes on your machine there is a good chance it will also pass on the build server.
Run uv run tox to execute the test pipeline. The tox pipelines are configured in the tox.ini file.
Configurations for specific tools in the pipeline are maintained in the pyproject.toml file.
Tox is configured to create its own virtual environments, install test dependencies and the package you are developing, and run all tests.
If you changed the test requirements or want to perform a clean run for some reason, you can run uv run tox -r to recreate tox's virtual environment.
The following tools are part of the test pipeline:
-
mypy: Statically checks your type hints.
-
ruff: A linter and code formatter.
-
pytest: Provides a framework for functional unit tests.
-
unittest: A built-in objective unittest framework with extensive support for mocking.
If you don't want to run the whole test pipeline, you can also use single commands from the pipeline, e.g., uv run pytest. The tools will automatically pick up the correct configuration from the pyproject.toml file.
USDB Syncer uses semantic versioning (semver) as versioning scheme.
However, since USDB Syncer is not a library/API but a user-facing application, we use MAJOR, MINOR and PATCH
versions according to the following scheme:
MAJORversion increments mean a breaking change for the end user, be it the need to install additional (3rd party) tools or changes that make it necessary to make changes to the already downloaded songs.MINORversion increments only involve adding backward compatible features.PATCHversion increments bring bugfixes.
We will try to avoid MAJOR version increments whenever possible, but since the project is still in the
startup phase, they cannot be completely ruled out.
USDB Syncer supports simple addons. Consult addons/README.md for detailed information.
-
With Qt issues, set the
QT_DEBUG_PLUGINSenvironment variable to 1, then re-run. It will output diagnostics while running. -
The
keyringpackage auto-detects an appropriate installed keyring backend (see PyPI - keyring). This may require following additional package if no backend can be detected, see #136With KDE, a Wallet may have to be activated in the system settings.
With gnome, install gnome-keyring
apt install gnome-keyring
You can also disable the keyring entirely by setting
PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring. The Syncer will not be able to store your USDB password in that case. -
One user using KDE Plasma experiencing an issue with the menu bar solved it by forcing XWayland instead of Wayland being used:
env WAYLAND_DISPLAY=.
The bundle contains most of the required packages. You will need to supply video libraries (which should be included for your desktop already) as well as pipewire and portaudio.
If you do encounter a warning or an error, set export QT_DEBUG_PLUGINS=1 to see the exact library you are missing.
More packages are required when running from source or the official Python package:
Ubuntu/Debian
apt install libgssapi-krb5-2 libgl1 libegl1 libva2 libva-drm2 libva-x11-2 libpipewire-0.3-0 libportaudio2 libxkbcommon0 libxkbcommon-x11-0 libxcb-cursor0 libxcb-icccm4 libxcb-keysyms1 libxcb-shape0 libxrandr2 libfontconfig1Fedora
dnf install libglvnd-glx libglvnd-egl fontconfig libxkbcommon libXrandr libxkbcommon-x11 xcb-util-cursor xcb-util-wm xcb-util-keysyms libva pipewire portaudioArch
pacman -Sy fontconfig libxkbcommon libxkbcommon-x11 xcb-util-cursor xcb-util-wm xcb-util-keysyms pipewire portaudioYou can also use the corresponding wayland libraries. We will fix issues related to wayland, but we don't test on wayland, which is why problems may be more frequent.
The wheels are pure Python with no extension modules, and are thus only restricted by the Python version.
Linux bundles are generated on an AlmaLinux 9 host. They should be compatible with any modern distribution. If not, please open an issue.
They are linked against glibc 2.34. The current glibc version can be checked with:
ldd --versionWe confirm support automatically for these distros:
- Ubuntu 22.04 (Deadsnakes PPA), 24.04, 25.10
- Debian 12, 13
- Fedora 42, 43
- Arch
The following distros are officially unsupported:
- Ubuntu 20.04
- Debian 11