Skip to main content

DeTime is Python and CLI research software for reproducible time-series decomposition.

Project description

DeTime

One Python and CLI interface for trend, oscillation, residual, components, and metadata.

License: BSD-3-Clause Status: Beta Release target: 0.1.2 Docs: GitHub Pages HF Space: DeTime Python: 3.10+ PyPI Unit tests: 112 passed Core coverage: 92.58% Package coverage: 88.41% Native-backed methods: 7 CLI: detime Schemas: JSON Native kernels: C++

DeTime logo

DeTime provides one stable software surface for decomposition workflows that would otherwise be split across notebooks, method-specific wrappers, and one-off scripts. The product name is DeTime, the distribution is de-time, the canonical import is detime, and the legacy top-level tsdecomp import and CLI remain compatibility-only through 0.1.x, with earliest removal planned for 0.2.0.

The current reviewed release version is 0.1.2. Install the latest published package from PyPI with python -m pip install de-time, or use the editable contributor path below for local development against the repository head.

Fast entry points:

Scope

Use DeTime when you want:

  • one decompose() entrypoint,
  • one DecompositionConfig model for Python and CLI usage,
  • one DecompResult contract for trend, season, residual, components, and meta,
  • native acceleration where it materially improves throughput,
  • multivariate decomposition workflows where shared structure matters,
  • machine-facing workflows that need schemas, metadata-based shortlists, and compact result views.

Use a specialist package directly when you only need that package's deepest family-specific API.

Core and accelerated methods

The main package is centered on four core maintained methods:

  • SSA
  • STD
  • STDR
  • MSSA

The current native-backed accelerated set is broader:

  • core native paths: SSA, STD, STDR, MSSA
  • additional native-backed methods: VMD, GABOR_CLUSTER
  • lightweight native-backed baseline: MA_BASELINE

Other retained methods are wrappers, Python implementations, or optional-backend integrations such as STL, MSTL, ROBUST_STL, EMD, CEEMDAN, WAVELET, MVMD, and MEMD.

Experimental neural decomposition blocks extracted as standalone DeTime methods are also available. They are package-level experimental operators for decomposition-head ablations, reusable result-contract tests, and interface coverage.

Block Source architecture family Standalone operator exposed in DeTime Status
AMD_BLOCK adaptive multiscale decomposition multiscale smoothing trend with periodic-template seasonality non-learned extractor
AUTOFORMER_BLOCK Autoformer moving-average trend and residual-seasonal split non-learned extractor
DELELSTM_BLOCK DeLELSTM Holt-style trend with periodic-template seasonality non-learned extractor
DLINEAR_BLOCK DLinear moving-average decomposition head non-learned extractor
FREQMOE_BLOCK FreqMoE frequency-band trend plus multi-band seasonality non-learned extractor
INPARFORMER_BLOCK InParformer moving-average trend with periodic-template seasonal head non-learned extractor
LEDDAM_BLOCK LEDDAM Gaussian-kernel smoothing decomposition operator non-learned extractor
MOVING_AVERAGE_DECOMPOSITION_BLOCK Autoformer/DLinear family generic moving-average decomposition head non-learned extractor
NBEATS_INTERPRETABLE N-BEATS interpretable stacks trend and seasonality basis stacks torch-backed learned prior
PARSIMONY_BLOCK parsimony-oriented decomposition smooth trend with compact harmonic seasonal projection non-learned extractor
ST_MTM_BLOCK ST-MTM smoothed trend with smoothed periodic seasonal template non-learned extractor
TIMEKAN_BLOCK TimeKAN template and harmonic seasonal estimates with smoothed trend non-learned extractor
TIMES2D_BLOCK Times2D multi-period harmonic decomposition head non-learned extractor
WAVEFORM_BLOCK WaveForM wavelet multiresolution trend-detail decomposition non-learned extractor
WAVELETMIXER_BLOCK WaveletMixer mixed wavelet detail-level decomposition non-learned extractor
XPATCH_BLOCK xPatch exponential smoothing trend with local seasonal residual non-learned extractor

Their source-paper links are listed in docs/method-references.md.

Benchmark-derived methods DR_TS_REG, DR_TS_AE, and SL_LIB do not ship in the main package. They belong to the companion benchmark repository systems-mechanobiology/de-time-bench.

Cross-package comparison

DeTime is positioned as a software-contract and machine-contract layer beside specialist packages, not as a replacement for all of them.

Axis DeTime statsmodels PyEMD PyWavelets PySDKit SSALib sktime
Primary role unified decomposition workflow classical decomposition/statistics EMD family wavelet transforms broad decomposition toolkit SSA specialist broad time-series ecosystem
Common config/result contract yes partial no no partial SSA-specific no
CLI, batch, profiling yes no no no limited no partial
Machine-readable catalog/schemas yes no no no no no no
Multivariate under one surface yes limited family-specific transform-specific yes no partial
Where it is deeper workflow reproducibility statistical modeling EMD variants wavelet tooling decomposition breadth SSA workflows ecosystem breadth

Full comparison details are in docs/comparisons.md; generated evidence files are kept in docs/comparison-evidence.md.

Install

Install the latest released package from PyPI:

python -m pip install de-time

Install optional extras as needed:

python -m pip install "de-time[multivar]"
python -m pip install "de-time[emd,neural]"
python -m pip install "de-time[notebook]"

Install directly from GitHub when you need the unreleased main branch:

python -m pip install "git+https://github.com/systems-mechanobiology/DeTime.git"

Do not install the unrelated detime package from PyPI when you want this project; that package is not DeTime.

Quickstart

import numpy as np

from detime import DecompositionConfig, decompose

t = np.arange(120, dtype=float)
series = 0.03 * t + np.sin(2.0 * np.pi * t / 12.0)

result = decompose(
    series,
    DecompositionConfig(
        method="SSA",
        params={"window": 24, "rank": 6, "primary_period": 12},
    ),
)

print(result.trend.shape)
print(result.meta["backend_used"])
detime run \
  --method STD \
  --series examples/data/example_series.csv \
  --col value \
  --param period=12 \
  --out_dir out/std_run \
  --output-mode summary

CLI surface

The supported commands are:

  • detime run
  • detime batch
  • detime profile
  • detime version
  • detime schema
  • detime recommend
  • detime benchmark

The legacy tsdecomp executable calls the same code path but emits a deprecation notice.

TSDecompose benchmark bridge

The benchmark code remains in the external Hugging Face bundle Zipeng365/TSDecompose-Benchmark. DeTime provides a bridge API and CLI that downloads the bundle's code/TSDecompose source snapshot into a local cache and runs its published paper-core runner.

Fast smoke run:

detime benchmark --out-dir out/tsdecompose-smoke

Full paper-core run:

detime benchmark --full --out-dir out/tsdecompose-paper-core

Python API:

from detime import run_tsdecompose_benchmark

result = run_tsdecompose_benchmark(smoke=True, out_dir="out/tsdecompose-smoke")
print(result.leaderboard_path)

Machine-facing surface

DeTime now includes:

  • packaged JSON schemas for config, result, meta, and method-registry,
  • low-token result export modes: full, summary, and meta,
  • machine-readable method metadata for registry, docs, and metadata-based shortlists,
  • detime schema and detime recommend,
  • a local-first MCP server at python -m detime.mcp.server.

These interfaces support non-interactive automation. The maintained software claim remains the decomposition API, CLI, schemas, result object, metadata, and validated package boundary.

Package boundary

This repository ships the reusable decomposition software package, docs, tests, and examples needed for detime itself. Benchmark orchestration, leaderboard artifacts, benchmark scenario galleries, and benchmark-derived methods are split into the companion repository systems-mechanobiology/de-time-bench. The detime benchmark command is a bridge to the external TSDecompose benchmark bundle; it does not vendor benchmark-derived methods into the main package.

Only the top-level tsdecomp import and CLI alias remain packaged for compatibility.

Quality and evidence

  • Release smoke checks live in scripts/release_smoke_matrix.py.
  • Documentation consistency checks live in scripts/check_doc_consistency.py.
  • The current performance snapshot is generated by scripts/generate_performance_snapshot.py and stored under docs/assets/generated/evidence/.
  • Comparison matrices are generated by benchmarks/software_comparison/generate_comparison_evidence.py.
  • The coverage story is intentionally split into core-surface coverage and package-wide coverage so the denominator stays explicit.

Coverage from the 2026-06-22 checkout-source audit:

View Config Scope Result
Core contract .coveragerc core-plus-maintained library surface 92.58%
Package-wide .coveragerc.package installable package including CLI/I/O/wrappers/viz 88.41%

The JSON reports are stored in docs/assets/generated/evidence/coverage_core.json, docs/assets/generated/evidence/coverage_package.json, and docs/assets/generated/evidence/coverage_summary.json.

Release-validation runtime snapshot for selected native-backed paths in the reviewed environment. These values compare DeTime native-backed paths against internal Python fallback paths in one environment; they are not a portable cross-package benchmark.

Method Python mean (ms) Native mean (ms) Speedup
SSA 13.925 1.906 7.31x
STD 0.154 0.024 6.44x
STDR 0.175 0.018 9.81x
MA_BASELINE 0.070 0.016 4.42x
MSSA 60.856 22.900 2.66x
VMD 47.856 13.812 3.46x
GABOR_CLUSTER (experimental) 3.304 0.181 18.22x

Documentation and tutorial evidence:

Surface Evidence
Quant Trading tutorial column 11 applied notebooks plus one roadmap notebook, with captured tables, figures, strategy stats, and audit outputs
Hot Trend Lab 7 case notebooks plus one overview notebook, with source-audit and component-output tables
Core workflow tutorials univariate, multivariate, CLI/profiling, visual comparison, and method-gallery workflows
Review artifacts comparison matrices, reproducibility notes, schemas, generated method cards, and release evidence files

Documentation

Core docs:

Reference and review:

Project files

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

detime_toolkit-0.1.2.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

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

detime_toolkit-0.1.2-cp314-cp314t-win_amd64.whl (430.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

detime_toolkit-0.1.2-cp314-cp314t-win32.whl (406.5 kB view details)

Uploaded CPython 3.14tWindows x86

detime_toolkit-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

detime_toolkit-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (228.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

detime_toolkit-0.1.2-cp314-cp314-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.14Windows x86-64

detime_toolkit-0.1.2-cp314-cp314-win32.whl (403.0 kB view details)

Uploaded CPython 3.14Windows x86

detime_toolkit-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (247.4 kB view details)

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

detime_toolkit-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (221.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

detime_toolkit-0.1.2-cp313-cp313-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.13Windows x86-64

detime_toolkit-0.1.2-cp313-cp313-win32.whl (403.0 kB view details)

Uploaded CPython 3.13Windows x86

detime_toolkit-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (247.3 kB view details)

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

detime_toolkit-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (221.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

detime_toolkit-0.1.2-cp312-cp312-win_amd64.whl (424.7 kB view details)

Uploaded CPython 3.12Windows x86-64

detime_toolkit-0.1.2-cp312-cp312-win32.whl (403.0 kB view details)

Uploaded CPython 3.12Windows x86

detime_toolkit-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (247.2 kB view details)

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

detime_toolkit-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (221.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

detime_toolkit-0.1.2-cp311-cp311-win_amd64.whl (420.9 kB view details)

Uploaded CPython 3.11Windows x86-64

detime_toolkit-0.1.2-cp311-cp311-win32.whl (402.0 kB view details)

Uploaded CPython 3.11Windows x86

detime_toolkit-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (246.1 kB view details)

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

detime_toolkit-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (220.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

detime_toolkit-0.1.2-cp310-cp310-win_amd64.whl (420.6 kB view details)

Uploaded CPython 3.10Windows x86-64

detime_toolkit-0.1.2-cp310-cp310-win32.whl (400.8 kB view details)

Uploaded CPython 3.10Windows x86

detime_toolkit-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

detime_toolkit-0.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (245.5 kB view details)

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

detime_toolkit-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (218.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file detime_toolkit-0.1.2.tar.gz.

File metadata

  • Download URL: detime_toolkit-0.1.2.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for detime_toolkit-0.1.2.tar.gz
Algorithm Hash digest
SHA256 bd891709c99d94c4277009b7b4e0fe1bb0f9e67fbde33e08b7082bbdde31a894
MD5 008537c728c9172d10300477471ef24c
BLAKE2b-256 ad593486d08aa0999685efe60155bdf418555c6e5c50e81a8747e61fa574381f

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bce4fbe70ad9bb4bc666b39f3ab45cc54e65ad831a5414ea78901b511508082b
MD5 bf895f4f73eac5c31f6e8b04ff321ee6
BLAKE2b-256 16e1304d77ce15f46a459324f81d7e7416ea2dc1048b5580fa80120238574d88

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d28a1c569fc00bae2efefc376e4cc2b7c1092e9b5eee062e6de2025ab4fe76bd
MD5 5f3dfa5768924930e7aa1bce5d00f4c6
BLAKE2b-256 b5702a4a13a51d5e0d4f1a0a3ba235d3fb52fadfe0967b2fe583a259fb736f75

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89b90b46d4390d0cf1b0ee50b4a0eb500cf29bab124a85b01b3fd9a1587ca4f1
MD5 7b191acf3e6593d34428686fd80a5779
BLAKE2b-256 6d8fcc5cc3f0630924b05c7fd17cfc46628bee984cbdf241bcefd94b66085b5d

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d542c930df174e7abb53f25bda50561a4721a5f5cf18d0297455b357ed75359
MD5 1e39b7e111c0953aab460c27e9aa14fa
BLAKE2b-256 3580e07b46b3d6eecac394f1bb53d049a06e75e569758fe0b938e3445b3a8823

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29d82c8b5585e369d8d9968dd406dc10e57de51f4572ac38391a1fa8e264e52
MD5 fa10f0071a06d4b3050e0e5f7170fc80
BLAKE2b-256 96b8089f1bd1b5437e24b22215fc720213a3992c0668d8b6f0cdf8120d624cdb

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 718249e53f78e401686e5f76a8dfdb9fad94c73276c9cbaab22a7d5a2492bb36
MD5 a85be175b9c2872696faacf4ef2ef6f9
BLAKE2b-256 c55a7f173cd841a9647eda4c0fdf3ddecd434bc5844e6fc2bd1c33ba54cc14ee

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5367eed2c0cbe97fd68fe498994a795820a2d19001b7f0739b340bff0d7e24fe
MD5 8148830aea160ae26ac8779ae7cb2556
BLAKE2b-256 3037749c047d5b21d090865fb35107425b64b81279617dfdd2d32ea67c73ecbe

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd24d0213cd190c41b5562a78f3d1072982dd368de0e3afbc120ae1eee57651d
MD5 78fd1c8ab9e167a90f7f55bc4ffff294
BLAKE2b-256 96eb734de83f0d3df5c8ba38db74b3ec1eaa8012699ebc9dce30be213f4bb86e

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc81d4630e636661b79c20913d752474445c63b4c885c561c16bca2d3d3ddb81
MD5 53558a6af35a943240768d3519b8787f
BLAKE2b-256 aa795804b0ff7d5af4c706658634298087ad0023fba58be955f7cf2c873e54f1

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e47ed354500905a7492335a6d381ef8a74453f5893ad03ff4fc60817a068085c
MD5 aff465702dd7828080dd0f5edfb35576
BLAKE2b-256 cea0208d9077c68edd0a7f50a9c80af96d959ca37c0339a47df08cd30f4f806a

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 51062de1fd1ed3c67e700673f9392694b1668886cbbbc7b48fc1cd29beaf0004
MD5 ebe827f38e404e674756b8af667a5987
BLAKE2b-256 4c33be4a0a7e85dc1e3a89c20959433725e5d7676df39fbc0342c951986c38e7

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2c89239bdea0ec34bdc0c3fd847db2854dfadbe173cd300e7aa07dc27a91290a
MD5 9d3b58c7e1afb9a9dfedb01235ae93c5
BLAKE2b-256 a2654c876d47ffe70c785699fbf29270d3443d0a7c13a66350bcb225e792d2d9

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af10b5f7924641b9920cfd113cf333ad2f8594cd8a379ef17b49ec80e98cd4a6
MD5 b78f3147ecbe4098602ae227b5dca8d0
BLAKE2b-256 085eb9a589d02768227b1618e047baa1b80b0f488ac3a32f0fa726b6168a7284

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3dc76038adc24319c79f2ab53e571ec8473a5038c0938f6f8a22f795a80feae
MD5 6150c6155993889674c11d0f21d0bad0
BLAKE2b-256 cada64825231ce807539638a7952a0638fc702c3db06516f5c656ffaa5030f46

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0009ae33c84ad317b25dda75d796868602154e5f2e9a8182675e9cc53ecbb6ed
MD5 125429b3510a501010ac136bbcafe1db
BLAKE2b-256 2564ebea3845cae90ee787fb392f7ef6abeafd717a86d3d219e109de6f0e2595

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 058e158e60cff25da1f86e25320e213b31456b52f0c3c0e66d367659828bbfda
MD5 287c9c635f3b52d0ce84ad5cdd9c0d83
BLAKE2b-256 c75f06c57571e5c15da9118ebf281ab0ef1832811a13b843aba48bd470145998

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 309c6b3d87a860a0024e08a97aa52a08ac2a680cc48952c1a19ba3fb71722a0f
MD5 53ef3efa6ec060d97b2f862b4a1a84b8
BLAKE2b-256 83e30b030417b419f8c49ffce396e56845acb5675c302947bf30a903c8f84239

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c35a8a6e21e155ad060144ef880dc1ca7d37fc42f702df485068ffcf8ec2189
MD5 256cfc11f3be12f5cd4752ffdbd5e502
BLAKE2b-256 04353bd3af4d6151a028063b8aa911a6712393e54bfad5b38c7e54ca31076754

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23c3b1f5f8bed60350576a2a9023571928ed1f1148cb5a00c3639de55696120d
MD5 34bf69a5b2af930a4d7a75ef9000f548
BLAKE2b-256 b7488917ed95ec6429cc2f61d3aa7e8f64fb25120d5aa9f040b2fc9bc9c3160a

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9394c658cbb3aeb3b2bcf3aba8a60d8be0d10cd1cfc7570c4b0b6a4d41b57c4
MD5 ff5a8f7d6ae125724367c66208a815b9
BLAKE2b-256 666fdb0129d9616388eccbd87b9c263556226a052a9244f51d9965f3581d729e

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0fed74250158ff90ce8612cdb7ea3b0a99949b1d7c708405cd0bd28b6c1db515
MD5 6ecacabd5312d3685d7f09c30498f77c
BLAKE2b-256 cff59cbf96dbc8fa3530c05cfc6c82372cfe02a8ec2bffd8792fb0930b283b38

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d10c94c032cf31c0f80b925854e7924ef2e2ac1d941213edc07ad55e4579e38a
MD5 2b9e2cb8befb5b2f3063a6b2fc6313f7
BLAKE2b-256 e2ff7763f3d48289d3878590b64e7bc21d55cd15e3770910ada2e211e6a7dbfd

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 911b4f790652d6a288ef20e3dfc89086d165692a3d80044bda8cc7c52cdbaaf9
MD5 b5ff099c5a61929332cc7f2d3d71087b
BLAKE2b-256 77b7dbba8a0e88cd74d44bc26c0b0c37fcf8d4b16061df9065f91f51257c5ffb

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45b868d25c9c1379fc0491154a94d37aae797592dcab6dac7c686a41c805b4b7
MD5 76dfd0063e573cf3296e8496587c2b5f
BLAKE2b-256 fc53125362eec33dd70892cb398f21bdd132f498bc8994f8f40fa3a8854da5d3

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbba29f6bad7f33878708da5c062923fdcd9635dc3dc7b1e94aa1e090ffb7637
MD5 846e563384c256edd6452512b9f1b201
BLAKE2b-256 5136176f3a814fcdc90dfe5dc0cbebd766be6700810bdb8380034fffa548af1d

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ed6d95c359c8f231966e9e9824fc050a70002a98beb69dbada8325f46a76dd2
MD5 7ac6d46c331838583708cedc78e74008
BLAKE2b-256 964444e82b051651055d6d2a527214b243bec02b1a9e1fbaa4b29db14d8f999e

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 38c0012875bbe868b3254c5ed80a1baa923b561bbc396097e26cfed0a730d70d
MD5 2ff04c78b5df499edc4d42e758802d4b
BLAKE2b-256 1d7754c094efc1f4dcc3f6fd2efd0f07ea624b6c5b28c29cef90b5f06dd2d11c

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8780e435b33842e969389251779a3708d3f0bfb98b0e4ce52df76c354262a89
MD5 14c9e7a409411a78b31aface2eb0dfce
BLAKE2b-256 ee872d013b65a718c5dbc4945307450afe975002ba3d35aa10ba2bd496250615

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f03bb72dbdf15abda6dd0cc61d044d453cbfc7dd90813b754bc5486cb8c3ca5b
MD5 c85cd131aa36b1e73a1b993f7f4fb8c9
BLAKE2b-256 894769c26d1c8531ee1df33d07595ef00918fbefc58ea26292914d5ffc36fe5d

See more details on using hashes here.

File details

Details for the file detime_toolkit-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for detime_toolkit-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0705ff12dea4c0c0513c57aee5fa219aafb453ddd7477ace670c5e3e2ca59ed0
MD5 e64a03d5c77f4a70299b55ba19d6baf6
BLAKE2b-256 f50c21158ce920ef3c0284e9a56927a33d2de64d2e226dd90460444a30f9d398

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