https://github.com/chaoticbyte/notime
A simple python library that represents the daytime on a scale of 0 - 99999999.
https://github.com/chaoticbyte/notime
python time-format
Last synced: about 1 year ago
JSON representation
A simple python library that represents the daytime on a scale of 0 - 99999999.
- Host: GitHub
- URL: https://github.com/chaoticbyte/notime
- Owner: ChaoticByte
- License: mit
- Archived: true
- Created: 2023-09-10T09:17:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-10T10:05:45.000Z (almost 3 years ago)
- Last Synced: 2025-03-04T04:11:52.389Z (over 1 year ago)
- Topics: python, time-format
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# notime
notime is a simple python library that represents the daytime on a scale of `0` - `99999999` in a most probably mathematically inaccurate way.
## Examples
```python
>>> from notime import notime
>>> a = notime(50000000)
>>> b = notime.from_time(12, 5, 0, 0)
>>> b
50347222
>>> a + b
347222
```