zoneinfo
- dateutil.zoneinfo.get_zonefile_instance(new_instance=False)[source]
This is a convenience function which provides a
ZoneInfoFileinstance using the data provided by thedateutilpackage. By default, it caches a single instance of the ZoneInfoFile object and returns that.- Parameters:
new_instance – If
True, a new instance ofZoneInfoFileis instantiated and used as the cached instance for the next call. Otherwise, new instances are created only as necessary.- Returns:
Returns a
ZoneInfoFileobject.
New in version 2.6.
- dateutil.zoneinfo.gettz(name)[source]
This retrieves a time zone from the local zoneinfo tarball that is packaged with dateutil.
- Parameters:
name – An IANA-style time zone name, as found in the zoneinfo file.
- Returns:
Returns a
dateutil.tz.tzfiletime zone object.
Warning
It is generally inadvisable to use this function, and it is only provided for API compatibility with earlier versions. This is not equivalent to
dateutil.tz.gettz(), which selects an appropriate time zone based on the inputs, favoring system zoneinfo. This is ONLY for accessing the dateutil-specific zoneinfo (which may be out of date compared to the system zoneinfo).Deprecated since version 2.6: If you need to use a specific zoneinfofile over the system zoneinfo, instantiate a
dateutil.zoneinfo.ZoneInfoFileobject and calldateutil.zoneinfo.ZoneInfoFile.get(name)()instead.Use
get_zonefile_instance()to retrieve an instance of the dateutil-provided zoneinfo.
- dateutil.zoneinfo.gettz_db_metadata()[source]
Get the zonefile metadata
- Returns:
A dictionary with the database metadata
Deprecated since version 2.6: See deprecation warning in
zoneinfo.gettz(). To get metadata, query the attributezoneinfo.ZoneInfoFile.metadata.
- dateutil.zoneinfo.rebuild.rebuild(filename, tag=None, format='gz', zonegroups=[], metadata=None)[source]
Rebuild the internal timezone info in dateutil/zoneinfo/zoneinfo*tar*
filename is the timezone tarball from
ftp.iana.org/tz.
zonefile_metadata
The zonefile metadata defines the version and exact location of
the timezone database to download. It is used in the updatezinfo.py
script. A json encoded file is included in the source-code, and
within each tar file we produce. The json file is attached here:
{
"metadata_version": 2.0,
"releases_url": [
"https://dateutil.github.io/tzdata/tzdata/",
"ftp://ftp.iana.org/tz/releases/"
],
"tzdata_file": "tzdata2021a.tar.gz",
"tzdata_file_sha512": "7cdd762ec90ce12a30fa36b1d66d1ea82d9fa21e514e2b9c7fcbe2541514ee0fadf30843ff352c65512fb270857b51d1517b45e1232b89c6f954ba9ff1833bb3",
"tzversion": "2021a",
"zonegroups": [
"africa",
"antarctica",
"asia",
"australasia",
"europe",
"northamerica",
"southamerica",
"etcetera",
"factory",
"backzone",
"backward"
]
}