More Time! Time as a vector space, the way it was meant to be.
Project description
More Times!
Assume time forms an algebraic field over GMT. Finally!
Details
Date is a simplified class for time manipulation. This library is intended for personal and business applications where assuming every solar day has 24 * 60 * 60 seconds is considered accurate. See GMT vs UTC below.
Assumptions
- All time is in GMT - Timezone math is left to be resolved at the human endpoints: Machines should only be dealing with one type of time; without holes, without overlap, and with minimal context.
- Single time type - There is no distinction between dates, datetime and times; all measurements in the time dimension are handled by one type called
Date. This is important for treating time as a vector space. - Standard range comparision - All time range comparisons have been standardized to
min <= value < max. The minimum is inclusive (<=), and the maximum is exclusive (<).
Date class
The Date() method will convert unix timestamps, millisecond timestamps, various string formats and simple time formulas to create a GMT time
Date.now()
Return Date instance with millisecond resolution (in GMT).
Date.eod()
Return end-of-day: Smallest Date which is greater than all time points in today. Think of it as tomorrow. Same as now().ceiling(DAY)
Date.today()
The beginning of today. Same as now().floor(DAY)
Date.range(min, max, interval)
Return an explicit list of Dates starting with min, each interval more than the last, but now including max. Used in defining partitions in time domains.
floor(duration=None)
This method is usually used to perform date comparisons at the given resolution (aka duration). Round down to the nearest whole duration. duration as assumed to be DAY if not provided.
format(format="%Y-%m-%d %H:%M:%S")
Just like strftime
milli
Number of milliseconds since epoch
unix
Number of seconds since epoch
add(duration)
Add a duration to the time to get a new Date instance. The self is not modified.
addDay()
Convenience method for self.add(DAY)
Duration class
Represents the difference between two Dates. There are two scales:
DAYscale - includes seconds, minutes, hours, days and weeks.YEARscale - includes months, quarters, years, and centuries.
floor(interval=None)
Round down to nearest interval size.
seconds
return total number of seconds (including partial) in this duration (estimate given for YEAR scale)
total_seconds()
Same as the seconds property
round(interval, decimal=0)
Return number of given interval rounded to given decimal places
format(interval, decimal=0)
Return a string representing self using given interval and decimal rounding
Time as an algebraic field
The Date and Duration objects are the point and vectors in a one dimensional vector space. As such, the + and - operators are allowed. Comparisons with (>, >=, <=, <) are also supported.
GMT vs UTC
The solar day is he most popular timekeeping unit. This library chose GMT (UT1) for its base clock because of its consistent seconds in a solar day. UTC suffers from inconsistent leap seconds and makes time-math difficult, even while forcing us to make pedantic conclusions like some minutes do not have 60 seconds. Lucky for us Python's implementation of UTC (datetime.utcnow()) is wrong, and implements GMT: Which is what we use.
Error Analysis
Assuming we need a generous leap second each 6 months (the past decade saw only 4 leap seconds), then GMT deviates from UTC by up to 1 seconds over 181 days (December to June, 15,638,400 seconds) which is an error rate error = 1/15,638,400 = 0.000006395%. If we want to call the error "noise", we have a 70dB signal/noise ratio. All applications that can tolerate this level of error should use GMT as their time basis.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mo_times-5.703.26061.tar.gz.
File metadata
- Download URL: mo_times-5.703.26061.tar.gz
- Upload date:
- Size: 19.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
691c1b3cf57d890b1e98d7eb0d3610c62ce75b6d20aaaa0da7f3f40e52adfb65
|
|
| MD5 |
1cc81df4daa4ad441f75a5827eeb682d
|
|
| BLAKE2b-256 |
48ef24885e6f1853b7227eb700f53121258ff9e0f4e3c2fa4d35b10b66304963
|
File details
Details for the file mo_times-5.703.26061-py3-none-any.whl.
File metadata
- Download URL: mo_times-5.703.26061-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7222253f71a4876149bd783a694a8e3ee2140240a60252757262f0bc40efd38
|
|
| MD5 |
bfd048108ad5952766b6872257e946ef
|
|
| BLAKE2b-256 |
22a701227a7f4f817cf882cbb2b2bec71b571d4980664fb29b58e901326c1638
|