whatday is a Python application for determining the weekday of a given date.
As a standalone script you do not need to install the application. Simply download the script and run it, after installing the dependencies and activating the environment.
conda env update -f environment.ymlTo update the dependencies, run the following command:
conda env update -f environment.yml --pruneTo activate the environment, run the following command:
conda activate whatdayEither specify the year, month and day as positional arguments or use the optional arguments. Per default the current date is used. If one argument stays unspecified, the current date's is used for that argument.
python3 whatday.py [-h] [-Y YEAR] [-m MONTH] [-d DAY] YEAR MONTH DAYPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.