A simple python library that represents the daytime on a scale of 0 - 99999999.
This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Find a file
2023-09-10 11:37:49 +02:00
notime Added more format conversions to fix some issues 2023-09-10 11:35:13 +02:00
.gitignore Initial commit 2023-09-10 11:19:34 +02:00
LICENSE Initial commit 2023-09-10 11:19:34 +02:00
README.md Added examples to the README 2023-09-10 11:37:49 +02:00

notime

notime is a simple python library that represents the daytime on a scale of 0 - 100000000 in a most probably mathematically inaccurate way.

Examples

>>> from notime import notime
>>> a = notime(10000)
>>> a
10000
>>> b = notime.from_time(15, 30, 0, 0)
>>> b
64583333
>>> a + b
64593333