An open API service indexing awesome lists of open source software.

https://github.com/rayraegah/doomsday

Algorithm to calculate day of the week
https://github.com/rayraegah/doomsday

doomsday-algorithm python

Last synced: about 1 year ago
JSON representation

Algorithm to calculate day of the week

Awesome Lists containing this project

README

          

# Doomsday

Python implementation of doomsday algorithm. It calculates the day of the week for a given date.

Made to debunk this assumption:

![tweet about day of the week][tweet]

[tweet]: ./assumption.jpg

## Usage

```
from doomsday import calc_dow
calc_dow(4, 24, 2019)
>> Wednesday
```