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.
notime/README.md

16 lines
306 B
Markdown
Raw Normal View History

2023-09-10 11:19:34 +02:00
# notime
2023-09-10 12:02:11 +02:00
notime is a simple python library that represents the daytime on a scale of `0` - `99999999` in a most probably mathematically inaccurate way.
2023-09-10 11:37:49 +02:00
## Examples
```python
>>> from notime import notime
2023-09-10 12:05:36 +02:00
>>> a = notime(50000000)
>>> b = notime.from_time(12, 5, 0, 0)
2023-09-10 11:37:49 +02:00
>>> b
2023-09-10 12:05:36 +02:00
50347222
2023-09-10 11:37:49 +02:00
>>> a + b
2023-09-10 12:05:36 +02:00
347222
2023-09-10 11:37:49 +02:00
```