Timesetter is a Python package to set system time regardless of operating system
- Windows
- Linux
- macOS
- This package aims to set system time in the precision of below milliseconds.
- You need to pass a datetime object to the
setfunction. If the timezone information was not included in the time object(naive), the package will assume that it's identical to the system. - You need to run your Python code with administration privileges for this package to work properly. Otherwise,
PermissionErrorwill be raised. This applies to all platforms.
Install the package from PyPI
pip install timesetterThen import it in your Python code
from datetime import datetime
import timesetter
target_time = datetime(year=2021, month=3, day=29, hour=15, minute=38, second=12)
timesetter.set(target_time)- The modern Python package manager
uvis used for dependency resolution. Please ensure it is installed on your system before proceeding. - Code checking should always be enabled to maintain code quality. Make sure Ruff and Pyright are activated in your IDE.
Generate the distribution archive to /dist
uv build
Upload the package to PYPI
uv publish