A few conveniences to do with dates and times.
Project description
A few conveniences to do with dates and times.
Latest release 20210306: Initial release, used by cs.sqltags.
There are some other PyPI modules providing richer date handling
than the stdlib datetime
module.
This module mostly contains conveniences used in my other code;
you're welcome to it, but it does not pretend to be large or complete.
Function datetime2unixtime(dt)
Convert a datetime
to a UNIX timestamp.
Note: unlike datetime.timestamp
,
if the datetime
is naive
it is presumed to be in UTC rather than the local timezone.
Function isodate(when=None, dashed=True)
Return a date in ISO8601 YYYY-MM-DD format, or YYYYMMDD if not dashed
.
Modern Pythons have a datetime.isoformat
method, use that.
Function localdate2unixtime(d)
Convert a localtime date
into a UNIX timestamp.
Class tzinfoHHMM(datetime.tzinfo)
tzinfo class based on +HHMM / -HHMM strings.
Function unixtime2datetime(unixtime, tz=None)
Convert a a UNIX timestamp to a datetime
.
Note: unlike datetime.fromtimestamp
,
if tz
is None
the UTC timezone is used.
Class UNIXTimeMixin
A mixin for classes with a .unixtime
attribute,
a float
storing a UNIX timestamp.
Method UNIXTimeMixin.as_datetime(self, tz=None)
Return self.unixtime
as a datetime
with the timezone tz
.
Note: unlike datetime.fromtimestamp
,
if tz
is None
the UTC timezone is used.
Property UNIXTimeMixin.datetime
The unixtime
as a UTC datetime
.
Release Log
Release 20210306: Initial release, used by cs.sqltags.
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
File details
Details for the file cs.dateutils-20210306.tar.gz
.
File metadata
- Download URL: cs.dateutils-20210306.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 535705c2b4ae2fec629e767fb6f14fc40f728a6a88f9f4e1bb61135cad2a4869 |
|
MD5 | 72b7f178f7c81b5b7c99951e41b2e7d0 |
|
BLAKE2b-256 | 976cf4cc1b91747252c131797b33833ac104d63f9cd674c0f0ad993bc1c5c2ac |