Metadata-Version: 2.1
Name: doomsdaytutor
Version: 0.1.0
Summary: Doomsdaytutor - learn the doomsday algorithm fast
Home-page: https://github.com/liamvdv/doomsdaytutor
Author: Liam van der Viven
Author-email: liam.vanderviven@gmx.de
License: MIT
Project-URL: Source, https://github.com/liamvdv/doomsdaytutor/
Project-URL: Documentation, https://github.com/liamvdv/doomsdaytutor/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: colorama (>=0.4.4)
Requires-Dist: inquirer (>=2.9.1)
Requires-Dist: babel (>=2.9.1)

# doomsdaytutor

So you have the modest goal of comfortably saying:

> I know the weekday of birth of every person on earth, in our past and in the future, if just provided a date.

Learning the theory behind the [**doomsday algorithm**](https://www.youtube.com/watch?v=z2x3SSBVGJU) isn't hard, but practicing it becomes cumbersome. It requires mental energy thinking of dates and checking them afterwards. Wouldn't it be nice to have a program for that, one that **explains false answers**?

Doomsdaytutor will present you with questions and visually explain the algorithm if the submitted answer is wrong. If you are unfamiliar with the algorithm, doomsdaytutor will also happily explain it for you.

## Installation
All common operating systems (Windows, Mac and Linux) are supported. Open your terminal and follow along.

`doomsdaytutor` requires you need ot have Python>=3.6 installed. 
```bash
$ python -V   # Windows 
$ python3 -V  # Linux, Mac
```

Now install doomsdaytutor with pip.
```bash
$ pip install doomsdaytutor  # Windows
$ pip3 install doomsdaytutor # Linux, Mac
```

You will learn everything else in your terminal :D.
```bash
$ doomsdaytutor
```

