Skip to main content
Temporian logo

pypi docs tests formatting publish

Temporian is a library for safe, simple and efficient preprocessing and feature engineering of temporal data in Python. Temporian supports multivariate time-series, multivariate time-sequences, event logs, and cross-source event streams.

Temporian is to temporal data what Pandas is to tabular data.

Key features

  • Supports most types of temporal data 📈: Handles both uniformly sampled and non-uniformly sampled data, both single-variate and multivariate data, both flat and multi-index data, and both mono-source and multi-source non-synchronized events.

  • Optimized for Temporal data 🔥: Temporian's core computation is implemented in C++ and optimized for temporal data. Temporian can be more than 1,000x faster than off-the-shelf data processing libraries when operating on temporal data.

  • Easy to integrate into an existing ML ecosystem: Temporian does not perform any ML model training - instead it integrates seamlessly with any ML library, such as PyTorch, Scikit-Learn, Jax, TensorFlow, XGBoost, or Yggdrasil Decision Forests.

  • Prevents unwanted future leakage 😰: Unless explicitly specified with tp.leak, feature computation cannot depend on future data, thereby preventing unwanted, hard-to-debug, and potentially costly future leakage.

Quickstart

Installation

Install Temporian from PyPI with pip:

pip install temporian -U

Temporian is currently available for Linux and MacOS (ARM and Intel). Windows support is under development.

Minimal example

Consider sale records that contain contain the timestamp, store, and revenue of individual sales.

$ cat sales.csv
timestamp,store,revenue
2023-12-04 21:21:05,STORE_31,5071
2023-11-08 17:14:38,STORE_4,1571
2023-11-29 21:44:46,STORE_49,6101
2023-12-20 18:17:14,STORE_18,4499
2023-12-15 10:55:09,STORE_2,6666
...

Our goal is to compute the sum of revenue for each store at 11 pm every weekday (excluding weekends).

First, we load the data and list the workdays.

import temporian as tp

# Load sale transactions
sales = tp.from_csv("sales.csv")

# Index sales per store
sales_per_store = sales.add_index("store")

# List work days
days = sales_per_store.tick_calendar(hour=22)
work_days = (days.calendar_day_of_week() <= 5).filter()

work_days.plot(max_num_plots=1)

Then, we sum the daily revenue for each workday and each store.

# Aggregate revenue per store and per work day
daily_revenue = sales_per_store["revenue"].moving_sum(tp.duration.days(1), sampling=work_days).rename("daily_revenue")

# Plot the results
daily_revenue.plot(max_num_plots=3)

Finally, we can export the result as a Pandas DataFrame for further processing or for consumption by other libraries.

tp.to_pandas(daily_revenue)

Check the Getting Started tutorial to find out more!

Next steps

New users should refer to the Getting Started guide, which provides a quick overview of the key concepts and operations of Temporian.

After that, visit the User Guide for a deep dive into the major concepts, operators, conventions, and practices of Temporian. For a hands-on learning experience, work through the Tutorials or refer to the API reference.

If you need help, have a question, want to contribute, or just want to be a part of the Temporian community, we encourage you to join our Discord server! 🤝🏼

Documentation

The documentation 📚 is available at temporian.readthedocs.io. The Getting Started guide is the best way to start.

Contributing

Contributions to Temporian are welcome! Check out the Contributing guide to get started.

Credits

Temporian is developed in collaboration between Google and Tryolabs.

Release files for temporian 0.9.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for temporian 0.9.0
File Size Uploaded
temporian-0.9.0.tar.gz 255.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for temporian 0.9.0
File
temporian-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
temporian-0.9.0-cp311-cp311-macosx_14_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 14.0+ x86-64 Details
temporian-0.9.0-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details
temporian-0.9.0-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
temporian-0.9.0-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
temporian-0.9.0-cp311-cp311-macosx_12_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 12.0+ x86-64 Details
temporian-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
temporian-0.9.0-cp310-cp310-macosx_14_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 14.0+ x86-64 Details
temporian-0.9.0-cp310-cp310-macosx_14_0_arm64.whl CPython 3.10 CPython 3.10 macOS 14.0+ ARM64 Details
temporian-0.9.0-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
temporian-0.9.0-cp310-cp310-macosx_13_0_arm64.whl CPython 3.10 CPython 3.10 macOS 13.0+ ARM64 Details
temporian-0.9.0-cp310-cp310-macosx_12_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 12.0+ x86-64 Details
temporian-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
temporian-0.9.0-cp39-cp39-macosx_14_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 14.0+ x86-64 Details
temporian-0.9.0-cp39-cp39-macosx_14_0_arm64.whl CPython 3.9 CPython 3.9 macOS 14.0+ ARM64 Details
temporian-0.9.0-cp39-cp39-macosx_13_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 13.0+ x86-64 Details
temporian-0.9.0-cp39-cp39-macosx_13_0_arm64.whl CPython 3.9 CPython 3.9 macOS 13.0+ ARM64 Details
temporian-0.9.0-cp39-cp39-macosx_12_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 12.0+ x86-64 Details
temporian-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
temporian-0.9.0-cp38-cp38-macosx_14_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 14.0+ x86-64 Details
temporian-0.9.0-cp38-cp38-macosx_14_0_arm64.whl CPython 3.8 CPython 3.8 macOS 14.0+ ARM64 Details
temporian-0.9.0-cp38-cp38-macosx_13_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 13.0+ x86-64 Details
temporian-0.9.0-cp38-cp38-macosx_13_0_arm64.whl CPython 3.8 CPython 3.8 macOS 13.0+ ARM64 Details
temporian-0.9.0-cp38-cp38-macosx_12_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 12.0+ x86-64 Details

Total release size: 17.4 MB

Release files / temporian-0.9.0.tar.gz

Download URL temporian-0.9.0.tar.gz
Size 255.6 kB
Tags Source
SHA-256 checksum
How to use checksums
437c34fa5d8f4f24eb0bb8f41e6888e02fd6e7e252a0e12a71e70da1e35cd869
BLAKE2b-256 checksum
How to use checksums
5bf1655bbe5efdc29f5f90168d53e36655003cd3fe743da8c2ef8763ce0a7772
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL temporian-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 760.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
02f7eebbc89e26d887e0a3ba97d02e187831c23334aa7298f229c6387580f5d6
BLAKE2b-256 checksum
How to use checksums
749b8e112e04e0e60963c65ba162309ec9c3c509a5ae2d3610ea3bfa7ff2650a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-macosx_14_0_x86_64.whl

Download URL temporian-0.9.0-cp311-cp311-macosx_14_0_x86_64.whl
Size 704.5 kB
Tags CPython 3.11 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
fcaed23f626713a9aa00e89e7226b00a13fa0eb0aaf919c663b6c779a21479b5
BLAKE2b-256 checksum
How to use checksums
a5fba5eecf2860f9b88a3a41af5c5ac6c5cb81690ad5ed84bf76d871b77903ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-macosx_14_0_arm64.whl

Download URL temporian-0.9.0-cp311-cp311-macosx_14_0_arm64.whl
Size 699.8 kB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
90a0145afe0c46818408a8c993aced489e215d493d40b11ae33a3a166fbf9c73
BLAKE2b-256 checksum
How to use checksums
0083bf3dcff9eceb058b3df2824c7ce3553c2b51c02ab3e7c5e069af431b3b7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-macosx_13_0_x86_64.whl

Download URL temporian-0.9.0-cp311-cp311-macosx_13_0_x86_64.whl
Size 704.3 kB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
a247996b14c92351cce4b646adb5e97c520a8b90e08c7bf83910df0f0b4ce43a
BLAKE2b-256 checksum
How to use checksums
0159c791d7823bffc429818500d6b2b38b675721ef116c9217d1287fdc903c16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-macosx_13_0_arm64.whl

Download URL temporian-0.9.0-cp311-cp311-macosx_13_0_arm64.whl
Size 699.8 kB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
de78875a7787bc8b59dd4def43ceaef718c96f86efc8dd14d2702567b934fa91
BLAKE2b-256 checksum
How to use checksums
cd42c3e02eac60562443c885bf790dd41ebfdc72143ca8d9cd9bd2f0f7922923
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp311-cp311-macosx_12_0_x86_64.whl

Download URL temporian-0.9.0-cp311-cp311-macosx_12_0_x86_64.whl
Size 716.0 kB
Tags CPython 3.11 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
34536180fcfb7189c8734ba68ae166821e15cad57b4907a94c2c70a221d93e42
BLAKE2b-256 checksum
How to use checksums
b1c6a585d42d1a73c174a353abb5661e94e6fad7fde32aea10b052a10cfeb1af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL temporian-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 760.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f52fdb1de2783393803850025d9d7b7c1e33a29abb9c858b877998508da257e1
BLAKE2b-256 checksum
How to use checksums
73b2421eb0ea53470759c3336d7f102cc380e2673c5c6338ec2bf4415214eb0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-macosx_14_0_x86_64.whl

Download URL temporian-0.9.0-cp310-cp310-macosx_14_0_x86_64.whl
Size 703.3 kB
Tags CPython 3.10 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
a30e62a9b664c8b8e7e3448f286e8719a101be947b85e22c934ad65b457de953
BLAKE2b-256 checksum
How to use checksums
2364d690e37971a1fc7c82f99cba08974500d452014e2e1e64134bd71fe0fd57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-macosx_14_0_arm64.whl

Download URL temporian-0.9.0-cp310-cp310-macosx_14_0_arm64.whl
Size 698.5 kB
Tags CPython 3.10 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
bcd4e09808593166b2e4647af3558a512e8e40b923bb8ab3068acb00007c1ac7
BLAKE2b-256 checksum
How to use checksums
466285581933b6db451f16070509d2c172f509787350b1f2e4c0fda45fb9755e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-macosx_13_0_x86_64.whl

Download URL temporian-0.9.0-cp310-cp310-macosx_13_0_x86_64.whl
Size 703.4 kB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
d89dc1cf8125323483c8ee1bdacf6c2cace5a4885da59d9b1b02bd7be69600a8
BLAKE2b-256 checksum
How to use checksums
379955e643f54cc290027b73339f9acbcae83afb7a7684a765b47b382f2a73ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-macosx_13_0_arm64.whl

Download URL temporian-0.9.0-cp310-cp310-macosx_13_0_arm64.whl
Size 698.5 kB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
d8809e7656a56482e235dd909fd2efd46d3f123cf91f7a496f753e83cb8a4592
BLAKE2b-256 checksum
How to use checksums
b9eba9d4e664c8249c42ad8f45fbdc12dd2e50f91c909ffd05c632102547bfb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp310-cp310-macosx_12_0_x86_64.whl

Download URL temporian-0.9.0-cp310-cp310-macosx_12_0_x86_64.whl
Size 714.5 kB
Tags CPython 3.10 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
dcab698f5e562be940861a3328c3447eb663c4857c5637d88bb572584cc8bed8
BLAKE2b-256 checksum
How to use checksums
a202684d0813f67cda36cb95cb0cd36bca58cb105f6476bfd29a22039bd70d0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL temporian-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 761.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a98f04d57da15e7989ea4d242ecef2ad25325bced4d14997f8db870b5baf6a4b
BLAKE2b-256 checksum
How to use checksums
fe01c6525f122dde025eff70bb983fe3862f5eeb372b5a01ed3a58f9c6d44e47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-macosx_14_0_x86_64.whl

Download URL temporian-0.9.0-cp39-cp39-macosx_14_0_x86_64.whl
Size 703.5 kB
Tags CPython 3.9 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
98fcb700c7b708e62e5b53f56cb99b445944dc4a6d0f218ec38d0b1744a75b26
BLAKE2b-256 checksum
How to use checksums
693ca34c187de605629edcacd5c8b91a1084f1bc0a97914e73fa50999a971e21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-macosx_14_0_arm64.whl

Download URL temporian-0.9.0-cp39-cp39-macosx_14_0_arm64.whl
Size 698.8 kB
Tags CPython 3.9 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
a0a1344a0e5da7f72ec8bac6fc6c3f1812422f2c7cf37206a0925f4418d0265f
BLAKE2b-256 checksum
How to use checksums
c4a414990a9233b2108c1f7e00c4c77d8653f47a993d8d404a54e2bdd01bb739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-macosx_13_0_x86_64.whl

Download URL temporian-0.9.0-cp39-cp39-macosx_13_0_x86_64.whl
Size 703.5 kB
Tags CPython 3.9 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
094f57fcc648f610d571d03b4024b5baa6c4e3c61e36f382db0e31e91dd5b81b
BLAKE2b-256 checksum
How to use checksums
831e7d09c764b86a187f91806c916d5701bea40acea4faaf75c036a9b8367dd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-macosx_13_0_arm64.whl

Download URL temporian-0.9.0-cp39-cp39-macosx_13_0_arm64.whl
Size 698.8 kB
Tags CPython 3.9 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
4c45f5cbbee81f1c40641a00d2ff30eb2137534e2a4dd276dc0bfd082a84b9e8
BLAKE2b-256 checksum
How to use checksums
bb8f87f5a8387a6783d9ba3f5feec355699f1da3bd71239db077d35e618e7e74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp39-cp39-macosx_12_0_x86_64.whl

Download URL temporian-0.9.0-cp39-cp39-macosx_12_0_x86_64.whl
Size 714.6 kB
Tags CPython 3.9 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
32fe0ae23250139be343c8602d0646ee8445e18d717dc5efa3189c8707ea2bbc
BLAKE2b-256 checksum
How to use checksums
6c887c4700fc956e3ccf24a02fc4ef23ba74e9952b1793ecec50d3da61b98a60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL temporian-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 758.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5c8d483415426b0556f3dffb855680ac13f604d613fdcdcd7a8c863a66887b4e
BLAKE2b-256 checksum
How to use checksums
7e207913413caec744103938317d0f30cb85b043eb1fdf4c74e1e7a4aa866092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-macosx_14_0_x86_64.whl

Download URL temporian-0.9.0-cp38-cp38-macosx_14_0_x86_64.whl
Size 703.2 kB
Tags CPython 3.8 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
2ed98b4571d294ecff9b308ea20323245085598ea9b998c276aa11519d83a96f
BLAKE2b-256 checksum
How to use checksums
5567fcedfefdb9a553cf20128333b01e3702ef5e6b11810dbaaefbc11eaa4d15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-macosx_14_0_arm64.whl

Download URL temporian-0.9.0-cp38-cp38-macosx_14_0_arm64.whl
Size 698.4 kB
Tags CPython 3.8 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
403e12fd1cfaa752277f3caadad0c186cc2669b9daab2387312c9f6e2ca36a79
BLAKE2b-256 checksum
How to use checksums
7c947b2e2c553bc8b075c5b5aba784e58e2f078d9294e4670920a95c5db2167e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-macosx_13_0_x86_64.whl

Download URL temporian-0.9.0-cp38-cp38-macosx_13_0_x86_64.whl
Size 703.3 kB
Tags CPython 3.8 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
935bd698507225b02ffbf631076482d194b1692c4a0c88cb8d6e4ffe8f77e3f1
BLAKE2b-256 checksum
How to use checksums
9d7b73b3574c1fbff588686fb8aaee99873bf587f1a333941a21e1bd2724a15f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-macosx_13_0_arm64.whl

Download URL temporian-0.9.0-cp38-cp38-macosx_13_0_arm64.whl
Size 698.4 kB
Tags CPython 3.8 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
4b511f6b8ef70d4dd6bf22a87927139654c024f0b595d94c51bae10b6053f0a0
BLAKE2b-256 checksum
How to use checksums
12f79d9b5dbb1298b0948d4baf9c829368742be573fdaf408e1e572972a0e12a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release files / temporian-0.9.0-cp38-cp38-macosx_12_0_x86_64.whl

Download URL temporian-0.9.0-cp38-cp38-macosx_12_0_x86_64.whl
Size 714.4 kB
Tags CPython 3.8 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
5e5ff45ba60ded0737c60f89eaf045baa50c8d2ab9d5499d6f9287f94b0ab33e
BLAKE2b-256 checksum
How to use checksums
600b321defb07863cf04e4488e7377576487e6b921765d571d2c49597cf3df65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1018-azure

Release history Release notifications | RSS feed

This release

0.9.0 This release

25 release files

0.8.1

25 release files

0.8.0

25 release files

0.7.0

25 release files

0.1.6

13 release files

0.1.5

13 release files

0.1.4

13 release files

0.1.3

9 release files

0.1.2

13 release files

0.1.1

9 release files

0.1.0

3 release files

0.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page