Skip to main content

A package containing some simple tools to manage dates and times.

Project description

DateTimeTools

A package containing some simple tools to manage dates and times.

Installation

Installation requires cmake to build libdatetime from source. It may be installed via apt:

sudo apt install cmake

or using pip:

pip3 install cmake

Install using pip3:

# Linux/macOS/Windows
pip3 install DateTimeTools

NOTE: This module uses a C++ backend, which is compiled with CMake - please install CMake for your OS before installing this package.

Usage

Converting between different date/time formats

Usually this package deals with integer dates in the format yyyymmdd and floating point times in hours since the start of the day.

We can convert to a few different time formats:

import DateTimeTools as TT

Date = 20140102
ut = 15.0

#to unix time (seconds since 00:00 1970-01-01)
unixt = TT.UnixTime(Date,ut)
#and back
Date,ut = TT.UnixTimetoDate(unixt)

#to continuous time (hours since 00:00 1950-01-01)
utc = TT.ContUT(Date,ut)
#and back again
Date,ut = TT.contUTtoDate(utc)

#Julian day
jd = TT.JulDay(Date,ut)
#and back
Date,ut = TT.JulDaytoDate(jd)

#CDF Epoch (milliseconds since 00:00 0000-01-01)
cdfe = TT.CDFEpoch(Date,ut)
#and back
Date,ut = TT.CDFEpochtoDate(cdfe)

#get the python datetime
dt = TT.Datetime(Date,ut)
#or the reverse conversion
Date,ut = TT.DatetimetoDate(dt)

#convert hours since the start of the day to hours,minutes,seconds,milliseconds
hh,mm,ss,ms = TT.DectoHHMM(ut)
#and back
ut = TT.HHMMtoDec(hh,mm,ss,ms)

#Split dates into separate integers
yr,mn,dy = TT.DateSplit(Date)
#or the reverse
Date = TT.DateJoin(yr,mn,dy)

Formatted plot tick marks

The DTPlotLabel function can be used to change the plot labels on the x-axis of a matplotlib.pyplot plot such that they resemble human-readable times and dates.

For example:

import matplotlib.pyplot as plt

#some plot of a time series
#t is time either in unix time, ContUT, seconds from the start of the day
#or hours from the start of the day
plt.plot(t,x) 
ax = plt.gca()

#if we are plotting with t = TT.ContUT(Date,ut) 
#the function will be able to work out the date
#The TimeFMT keyword isn't needed here, by default = 'utc'
TT.DTPlotLabel(ax)

#similar to above - we can us unix time
#so t = TT.UnixTime(Date,ut)
#We must let the function know though
TT.DTPlotLabel(ax,TimeFMT='unix')

#With seconds from beginning of the day, we need to
#tell the function what Date starts at t == 0.0
#NOTE t can go beyond the range 0 < t < 24,
#the labels should include relevant dates
#Also, without the date keyword, just HH:MM(:SS) is shown
TT.DTPlotLabel(ax,TimeFMT='seconds',Date=20150101)

#Plotting with hours since the start of the day is similar
TT.DTPlotLabel(ax,TimeFMT='hours',Date=20190908)

Calculating time differences

#calculate the difference between two dates in days
ndays = TT.DateDifference(Date0,Date1)

#Similar to above, but include start and end times (still returns days)
ndays = TT.TimeDifference(Date0,ut0,Date1,ut1)

#We can find the middle time between two date/times
mDate,mut = TT.MidTime(Date0,ut0,Date1,ut1)

Filtering time series data

Given an evenly sampled time series, the lsfilter function can perform low-pass and high-pass filtering.

#t is the evenly smapled time axis
#x is the time series data

#we need to know the sampling interval in seconds
inter = t[1] - t[0]

#we can do a low-pass filter, we need to set 'high = inter'
#and 'low = lsec' which is the cutoff period in seconds
xlow = TT.lsfilter(x,inter,lowsec,inter)

#alternatively a high-pass filter can be used by setting
#'high = hsec' (the cutoff period in seconds) and 'low = inter'
xhigh = TT.lsfilter(x,hsec,inter,inter)

Miscellaneous functions

#calculate day number and year
year,dayno = TT.DayNo(Date)
#or return to original date format
Date = TT.DayNotoDate(year,dayno)

#Check if year(s) are leap year(s)
ly = TT.LeapYear(year)

#Add one day to a date
NextDate = TT.PlusDay(Date)
#or go back a day
PrevDate = TT.MinusDay(Date)

#Calculate the nearest index in a time/date array
#to a test time/date
ind = TT.NearestTimeIndex(DateArray,utArray,testDate,testut)

#check which indices of a time array are within two time limits
inds = TT.WithinTimeRange(t,t0,t1)
#or including dates
inds = TT.WithinTimeRange((d,t),(d0,t0),(d1,t1))
#alternatively, return a boolean array where each True element is within the range
b = TT.WithinTimeRange((d,t),(d0,t0),(d1,t1),BoolOut=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datetimetools-1.3.3.tar.gz (43.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

datetimetools-1.3.3-cp314-cp314-win_arm64.whl (90.8 kB view details)

Uploaded CPython 3.14Windows ARM64

datetimetools-1.3.3-cp314-cp314-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.14Windows x86-64

datetimetools-1.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.34+ x86-64

datetimetools-1.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.34+ ARM64

datetimetools-1.3.3-cp314-cp314-macosx_11_0_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

datetimetools-1.3.3-cp314-cp314-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

datetimetools-1.3.3-cp313-cp313-win_arm64.whl (89.9 kB view details)

Uploaded CPython 3.13Windows ARM64

datetimetools-1.3.3-cp313-cp313-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.13Windows x86-64

datetimetools-1.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.34+ x86-64

datetimetools-1.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.34+ ARM64

datetimetools-1.3.3-cp313-cp313-macosx_11_0_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

datetimetools-1.3.3-cp313-cp313-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

datetimetools-1.3.3-cp312-cp312-win_arm64.whl (89.9 kB view details)

Uploaded CPython 3.12Windows ARM64

datetimetools-1.3.3-cp312-cp312-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.12Windows x86-64

datetimetools-1.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.34+ x86-64

datetimetools-1.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.34+ ARM64

datetimetools-1.3.3-cp312-cp312-macosx_11_0_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

datetimetools-1.3.3-cp312-cp312-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

datetimetools-1.3.3-cp311-cp311-win_arm64.whl (89.9 kB view details)

Uploaded CPython 3.11Windows ARM64

datetimetools-1.3.3-cp311-cp311-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.11Windows x86-64

datetimetools-1.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.34+ x86-64

datetimetools-1.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.34+ ARM64

datetimetools-1.3.3-cp311-cp311-macosx_11_0_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

datetimetools-1.3.3-cp311-cp311-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

datetimetools-1.3.3-cp310-cp310-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.10Windows x86-64

datetimetools-1.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.34+ x86-64

datetimetools-1.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl (109.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.34+ ARM64

datetimetools-1.3.3-cp310-cp310-macosx_11_0_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

datetimetools-1.3.3-cp310-cp310-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file datetimetools-1.3.3.tar.gz.

File metadata

  • Download URL: datetimetools-1.3.3.tar.gz
  • Upload date:
  • Size: 43.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for datetimetools-1.3.3.tar.gz
Algorithm Hash digest
SHA256 d1f6d8ec8420a16c378b5378133ef9bf9cdac31d14d78237f9c5d68b8988d784
MD5 0c5bf6626f2b532793a9c47388e43fb7
BLAKE2b-256 59bbddb8584be4f1022db32b0aa3e47ad88b1918d4b12a17378d353cdc4da24e

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a103a56d2a3c2ce04dfe9116d9620c1c864fdbfcee014847ade9ce68791be32c
MD5 c50da20bcf281de1c753533ca8b436d8
BLAKE2b-256 56630a178cb6bbefebebb190d1364efebd9b912b69b21708ebd7c7cbb605a14a

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 58afc169eec87b99b7426c888d4e551b2ce8bcd36ea331c745d8129986cb5b6a
MD5 f2286f45bf21ba80b82ba97fd0af1fd2
BLAKE2b-256 75b16dacc437c1e582a364b6337ccb94eacd0ca27861455a5b2de3349cd8ed6c

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 3cea71bec96811c45720836e0f9bfe55bb49c59e1f36860570a542e84984ab39
MD5 77bab9b100df9447186cc5c9bde23459
BLAKE2b-256 d2b21966e2d3b5a37269d74920ca341844db72a3a344fe7ae698d84f529d534a

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9e5104c32cccfba4447fcbbdd3a1821ca39087715523e62086a9eb6950f302a6
MD5 a3715638e4fa4298475dff20d3b73f21
BLAKE2b-256 fb72fa4cb8127b7334edc53fa364a191c0e609aeaa54404f2ad3994daba4c116

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f58f48c34ae01fea3a4e10c94fbbe3133edae8e89d6322154e849e338ca9e682
MD5 922bfd9e09a5704577f0dc9d49f62936
BLAKE2b-256 e630b327157aa743bbafdcbdcaf4cc2fc749b4497ef3fac6c63f8ead3c290f8b

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b0d8325db935dc620913d1d0846fa512277b0dabfb913a5ba84a009767e6d58
MD5 6d8e14750ce3f04ab84cc744828eedc1
BLAKE2b-256 e034bac38a38db37f88375d666b359ba72b3aa3e258030c02ccad49bac496c39

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c10ef7a0ad9c125bd75c22bf71e6f80c4971c717391946fd8a80e2f183d482d7
MD5 c9522162b525bb8a06b9487babbe2d4b
BLAKE2b-256 71abaf523ec694e9d7d502742e8ec3f1c70d08d12a384facc513b07e8aba0cfc

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a79448500ce7808a4fb4087459a294cee1f31eaa54a11da5a058b48c3a3f750
MD5 bd08270415a6402ab3a9465af515caa4
BLAKE2b-256 abae0a534a417b12c81a3feb1bffcee3c0aff3b118d0a9787186e7364e48da79

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 3d05b96487f2a552fde18222ce654f1613f9041e09274eb69098a4e3b9a67163
MD5 f2871a903a5abc5b8547733a16f2c9fb
BLAKE2b-256 a97fe8e56147137fa2c27e82c302b8ac231a7769df65472a8681f6ef8f24fcec

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0378c1ad5e0183f07f5edf0140355c93ce3a71f72d2e2958c37fef926fd2a4e5
MD5 411f37eb740610afd6f9016b2efde63f
BLAKE2b-256 ef4ace4a26d4427543a4dc12314a142850cf7c9287eb91228676d515a92edb01

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1dd84d98a3a8aaac98dac79495d47da6c41e4c7198d8945d59fbf8b2e124b0ff
MD5 db164924036fd793a16a9147eb7db7df
BLAKE2b-256 62a05155610777ba2c6249086ef7a1a8b1ad7dbc86b3f113d98c8d0778d94a34

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2849f0af216a13ed8181200034581c94e2aac9ab82ae56447de9b6aaa750721
MD5 8072aba511185d382bf7af2cfdc77bab
BLAKE2b-256 9b0862ede345461883402ae5da8d16ff45bdfa0070cfbc4a90d6b9fcd787f107

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c42b0b74af54b8cc115cd2e8196759eb0ddd8aa8a6bab9cfe8ea33c5598c562e
MD5 e98ff52afe749a9296a827b9acdbfdd2
BLAKE2b-256 8575a3abb34a124bf920bf03be48f0cf9cd82f155bfc6b87f257771b4a11f2e9

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d8331dc4c7c802c0a192d056a080c71a6b5ed3db317041801fc6321187fb817
MD5 f53e6ca4e5780e4d82c27532dd8d6239
BLAKE2b-256 a6fca2656261fa56d76799e2e174ba44d0e62ee7044ac76490dea101fd27addb

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4fe458dec35ee04ab7f69d80b54522e8725f56b6d1667e537d8f010b2bd7356f
MD5 441c0d6ab1ee79a7c0aa6091323d5f5d
BLAKE2b-256 ab8a5dc5e18f020116fd15e002f580a3b5823b5519096bc5691bee921aebf238

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9160f179cb3fed0eb3cfeceae93b335823522a39093937bb039791b25cdf294f
MD5 03b6b9aaf4daab8475c59b28b9b6315b
BLAKE2b-256 2dc7366d63d800eabe63da2e61e0519ace130afa26b20a027a299bfd9fd48458

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 383fbeafc57523e4acb7ea283c57de19591e83aaa87462de9eb4e753a55d5a52
MD5 b3b4bf6b0b6a8b4678695cbb67ad7c48
BLAKE2b-256 289aac7756b8ad83ae1e5e512eb1cb2618123bad8bc8e8db7fd5b0d3bced5ce0

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 626b21ccc0dcbda3b71993dcecb7d2f28ea1787cd71a16f752a40c74251833fe
MD5 fd3dd27395283a8cb98a48a96de6a9ef
BLAKE2b-256 777fcbd2806020898ece32a235ca40f403f28ddbe405e65ddf629d39805b943a

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 27d480990dc8dac391d16249601d5a055c04bb61943062d3cb23423450d70fe4
MD5 78e5910e498a3a4ad6993d8d4eb90f26
BLAKE2b-256 b172c1f2209be57bcbc9e5d0ee4b8c142a39d79b96eab5d83d158b75877e08f3

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35c1bc5e7056ba66310a776ea54bbe499e3aae75fbd3e0d8ffc31af549e30171
MD5 fa2b63f62d8d1ffa47b463b9f40f5466
BLAKE2b-256 4732ff36fd658051c032ddde8e0371f3623c59a9e37877c63c7a0c4c30e48045

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 09e8dbf3114efcf8915596ca332c4ec1048c91c920e09f7d9faaec00deb4606e
MD5 28bfbbf9f84d8b1bbfefa9c42711e297
BLAKE2b-256 c34e0f1ae436789572e21af9c22b4d07c8541a8a1e21b31551c16ec7a6f3a97d

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 bf032242364b7641d9753832a6db09157fdd6e338a6bfb0863a5e5096a259c07
MD5 6b29217248871ab6ccdca4e0e631576b
BLAKE2b-256 33f23f67f67c8bbf565ffbd1456a144d5d9296bda064bc58e617647689d75424

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7401800aff834725a5a1d0fe6943050ea0bec75bdb17efff9a32b69c1a29dd18
MD5 4e452d8dfa6e5a675cb26baafdcc886d
BLAKE2b-256 fa42ede952cb3aa1c34e9d80e14d668f7606d4069bda3ad31d106ecb4f101f67

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39679b9cb4bd3068c2ddd747f0325787394c81f7135c7bf5532693997a72dbe2
MD5 da55ea8346cfd81a67923d83033d97df
BLAKE2b-256 823df5a7effa2bd1b2e0ef66eda9d432652dc90f89b96fc5918fc41612e874d2

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b603120a1e9f901ef0b78e3cac78335d222e1b1d812cdbd7d502062328b2cba9
MD5 13ecda27d146f2ac737213a55e19d469
BLAKE2b-256 89ec3b8a01c3402a7d23bbf1c47fa55043b4d131c5144f6110df0b5fb4374a5c

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4d7e14bb1300659b20b5fd2bf2d24487bf858535fcf73d1a42a1cd87a7a6bea5
MD5 b52386a1a01452759b6538e1d9102a16
BLAKE2b-256 87ff6ce2a34061d61ce15b9fbabdf1f3320bcc9cb02b9e5f58359e7fe90361bf

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 268c9270d38ff4129a66faccbe2c7f668742167a66081f33c903eef9fb78108a
MD5 d3570fa97c2c3addc740a1c386a053f8
BLAKE2b-256 ba0863cfc5d2497aa6fda2b40034bb536ef9e3685b84d665cf3222a92c5a3c03

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ad0fba131b6ebf8d157c958df28a842fd9aaeec30832da5da9a17d5fb919fc87
MD5 bbb4f55766b0d2c39d9163413c3f2848
BLAKE2b-256 46774a8d8980f72ada097b478d863e9be4c594402e509a97a04dd2b59d44c3fa

See more details on using hashes here.

File details

Details for the file datetimetools-1.3.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for datetimetools-1.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 974d878693ee747886e9e6f5b4c7b8f3410317b052278bea6c6c350a0e9ee3e9
MD5 84bdce62969edb2723f20650ca155182
BLAKE2b-256 39d53cb1bd8dc352a613155d04d57f41a1ae6f6b63de255e383565aa1d7bd41d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page