Skip to main content

Rust implementation of cftime

Project description

cftime-rs

cftime-rs is an implementation in rust of the cf time convention. Python bindins are available for this project and use the great maturin library. The python bindings are highly inspired by the cftime python package developped by Unidata.

CI Status Crates.io version badge Pypi version badge CI/CD Status License: AGPL v3 Documentation Status Issue Badge Pull requests Badge

Documentation : Rust | Python
Packages : Rust | Python
Repository : Github

Rust

Installation

cargo install cftime-rs

Examples

Decoding

Decoding needs units, and calendar and can work with i32, i64, f32, f64 and their corresponding vector type Vec<i32>, Vec<i64>, Vec<f32> and Vec<f64>. From these type it return either a CFDatetime object or a Vec<CFDatetime>.

use cftime_rs::calendars::Calendar;
use cftime_rs::decoder::*;
use std::str::FromStr;
fn main() {
    let to_decode = vec![0, 1, 2, 3, 4, 5];
    let units = "days since 2000-01-01 00:00:00";
    let calendar = Calendar::from_str("standard").unwrap();
    let datetimes = to_decode.decode_cf(units, calendar).unwrap();
    for datetime in datetimes {
        println!("{}", datetime);
    }
}

will print :

2000-01-01 00:00:00.000
2000-01-02 00:00:00.000
2000-01-03 00:00:00.000
2000-01-04 00:00:00.000
2000-01-05 00:00:00.000
2000-01-06 00:00:00.000

Encoding

Encoding needs units and calendar and can convert a CFDatetime object into an i32, i64, f32 or f64 or a Vec<CFDatetime> into Vec<i32>, Vec<i64>, Vec<f32> or Vec<f64>.

use cftime_rs::calendars::Calendar;
use cftime_rs::datetime::CFDatetime;
use cftime_rs::encoder::*;
use cftime_rs::errors::Error;
use std::str::FromStr;
fn main() {
    let calendar = Calendar::from_str("standard").unwrap();
    // Create vector of datetimes and convert Vec<Result<CFDatetime, Error>>
    // into Result<Vec<CFDatetime>, Error>
    let to_encode: Result<Vec<CFDatetime>, Error> = vec![
        CFDatetime::from_ymd(2000, 1, 1, calendar),
        CFDatetime::from_ymd(2000, 1, 2, calendar),
        CFDatetime::from_ymd(2000, 1, 3, calendar),
        CFDatetime::from_ymd(2000, 1, 4, calendar),
        CFDatetime::from_ymd(2000, 1, 5, calendar),
        CFDatetime::from_ymd(2000, 1, 6, calendar),
    ]
    .into_iter()
    .collect();
    // define the units
    let units = "days since 2000-01-01 00:00:00";
    // The type annotation for result allow us to cast to type we want
    // here we use Vec<i64>
    let results: Vec<i64> = to_encode.unwrap().encode_cf(units, calendar).unwrap();
    for result in results {
        println!("{}", result);
    }
}

will print :

0
1
2
3
4
5

Python

Installation

pip install cftime-rs

Examples

Decoding to PyCfDatetimes

import cftime_rs

to_decode = [0, 1, 2, 3, 4, 5]
units = "days since 2000-01-01 00:00:00"
calendar = "standard"
datetimes = cftime_rs.num2date(arr, units, calendar)
for datetime in datetimes:
    print(datetime)

will print :

2000-01-01 00:00:00.000
2000-01-02 00:00:00.000
2000-01-03 00:00:00.000
2000-01-04 00:00:00.000
2000-01-05 00:00:00.000
2000-01-06 00:00:00.000

Encoding PyCFDatetimes

calendar = cftime_rs.PyCFCalendar.from_str("standard")
to_encode = [
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 1, calendar),
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 2, calendar),
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 3, calendar),
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 4, calendar),
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 5, calendar),
    cftime_rs.PyCFDatetime.from_ymd(2000, 1, 6, calendar),
]
units = "days since 2000-01-01 00:00:00"
calendar = "standard"
numbers = cftime_rs.date2num(to_encode, units, calendar, dtype="int")
for number in numbers:
    print(number)

will print :

0
1
2
3
4
5

Decoding to Python datetimes

to_decode = [0, 1, 2, 3, 4, 5]
units = "days since 2000-01-01 00:00:00"
calendar = "standard"
datetimes = cftime_rs.num2pydate(to_decode, units, calendar)
for datetime in datetimes:
    print(datetime)

will print

2000-01-01 00:00:00
2000-01-02 00:00:00
2000-01-03 00:00:00
2000-01-04 00:00:00
2000-01-05 00:00:00
2000-01-06 00:00:00

Decoding Python datetimes

to_encode = [
    dt.datetime(2000, 1, 1),
    dt.datetime(2000, 1, 2),
    dt.datetime(2000, 1, 3),
    dt.datetime(2000, 1, 4),
    dt.datetime(2000, 1, 5),
    dt.datetime(2000, 1, 6),
]
units = "days since 2000-01-01 00:00:00"
calendar = "standard"
numbers = cftime_rs.pydate2num(to_encode, units, calendar, dtype="int")
for number in numbers:
    print(number)

will print

0
1
2
3
4
5

Known issues

While this date calculation library can handle a wide range of dates, from approximately -291,672,107,014 BC to 291,672,107,014 AD, there are some performance considerations you should be aware of. As you move further away from the reference date of 1970-01-01 00:00:00, the time of calculation increases. This is because the library needs to account for leap years in various calendars.

Here is an example of the computation of 1_000_000_000_000_000 seconds using the units "seconds since 2000-01-01 00:00:00" on my personal computer in release mode :

Calendar Computation Time
Standard Calendar 44.470405ms
Leap Day Calendar 8.052179ms
360-Day Calendar 12.834µs

Comparison with cftime

Here is a benchmark on my computer of three methods. This is not really rigorous but this is to give an idea.

We are comparing cftime with cftime_rs. The first method involves decoding a series of numbers using the standard calendar, calling the .str() method, and then re-encoding them to the same unit and calendar. The second method is to decode a series of numbers using the standard calendar and re-encode them to the same unit and calendar without calling .str(). The third method is to decode a series of numbers using the standard calendar into python datetimes and re-encode them to the same unit and calendar without calling .str().

First and second methods are designed to be fair between the two libraries because cftime_rs only uses timestamps (i64) as its internal representation and never recalculates the year, month, day, hour, minutes, and seconds, except if you explicitly request this representation.

First method Second method
First method

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

cftime_rs-0.1.6.tar.gz (234.1 kB view details)

Uploaded Source

Built Distributions

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp311-none-win_amd64.whl (252.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

cftime_rs-0.1.6-cp311-none-win32.whl (249.5 kB view details)

Uploaded CPython 3.11 Windows x86

cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (389.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cftime_rs-0.1.6-cp311-cp311-macosx_10_7_x86_64.whl (403.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

cftime_rs-0.1.6-cp310-none-win_amd64.whl (252.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

cftime_rs-0.1.6-cp310-none-win32.whl (249.5 kB view details)

Uploaded CPython 3.10 Windows x86

cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (389.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cftime_rs-0.1.6-cp310-cp310-macosx_10_7_x86_64.whl (403.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

cftime_rs-0.1.6-cp39-none-win_amd64.whl (252.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

cftime_rs-0.1.6-cp39-none-win32.whl (249.8 kB view details)

Uploaded CPython 3.9 Windows x86

cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp38-none-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

cftime_rs-0.1.6-cp38-none-win32.whl (250.5 kB view details)

Uploaded CPython 3.8 Windows x86

cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

cftime_rs-0.1.6-cp37-none-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

cftime_rs-0.1.6-cp37-none-win32.whl (250.5 kB view details)

Uploaded CPython 3.7 Windows x86

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

cftime_rs-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file cftime_rs-0.1.6.tar.gz.

File metadata

  • Download URL: cftime_rs-0.1.6.tar.gz
  • Upload date:
  • Size: 234.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6.tar.gz
Algorithm Hash digest
SHA256 ad60e54cf503e7031667f816506ee1992e66fad24f37069ed2ca1b0a38c1afcf
MD5 a4730549cb0f508728a319e3d3b15606
BLAKE2b-256 353bb0da6c64cc5654da06dd6ed7cb6fedff8c5a74921bcd2fec23f17de94e13

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f649aaa7dd69178cc221800af34a4d1c0cc824eaf8074c37fefce41433dc7723
MD5 579313527749451f771c24a787f9ec6f
BLAKE2b-256 eaec3aa7820bd5ed0ce12a440196b17112e477ab83b8c75a4155365ceeaa4308

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef7348497c0d608a23a94925babe4544ddb664b923bc041dea2340efe4103220
MD5 27d32df644773676e12214da5b4268ac
BLAKE2b-256 dea61238b5b04467827525b65f2b87d63448c5d8faf3c4301e453815487311f0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 264ab46c183078dbb25829c40c1717fa03c3553c21f9f8aef256c570e6c69557
MD5 42f21a6cfc563b09496434b9afd46f51
BLAKE2b-256 4cf343a7961272dbe1f3dda4090582d2e2b30341ddd40e93e74efcf2cd969d1a

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5727f181bba9a149159b577536aa45b4ae26a12d33fa7d45cf67797801f1a029
MD5 f4ce84cb195a91fca3311da735e3989d
BLAKE2b-256 7ca2c29693e71dae7b8a71fe4c651400f8acc3af377a1ec6ae345e866574b266

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e27d9ca60a163e28a694ead81f3c2ed65a1ce351fc95ca27916b4c963edf05e
MD5 918cf567664a754445c1e1fc9b36bce5
BLAKE2b-256 cfaa68b0c511043690240f725974b7455c42fb18c3859ee220ca0bcb41aa0f41

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04fd195b4ef2eb10dda20081bb6a83c31eb09539b4591dcd5ceae51c9f36b511
MD5 70ba86e41e102b2403c95d5213fef340
BLAKE2b-256 67dd440bd72af15cfb999502eae3f73bee2aa36f2765f308cd5e3c0ba592d36b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37beb3443af23883ed2f79b8509dbcc8b1476dc108751b769fd7b37426c4b88c
MD5 550223032eb633b3a6b12a44c39732ef
BLAKE2b-256 c34715273a80b25289126c35f895de3e1be2cdbfa4f13d215115496a7bbf6465

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1449b21d7e50fe1ab6730a45a799ebcd35c70bd272e5ed2866534ebd618f1d4
MD5 6800d56a174fd0a928a65ef89e7fff57
BLAKE2b-256 6985a8a616c99437b9c1fc014d8a3199190f16c56e7cf720e1215de77cf2634c

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cdf18b0d486e9c5d40a0185e771feade751f695f5e7f244c54b92bb30917e98
MD5 3560567b5c8ac15a80627e2319756d27
BLAKE2b-256 3bf97d48c03300cb5c3cc04726dec5800c59c94e1a302a36b21859feecc82e67

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecb25cd9aee86f3289b97db6025804172398c6a58c5be7f5f08d94b6ae024734
MD5 9a1c5645a014fab579741f96e01e4de8
BLAKE2b-256 6de0705996d0e9df240baada1e09e1f2e02f2fd3a4e79c077c00495af8855d34

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90d46afe59c626c19f838a29375506e08bf4281fd155470977e237de1c6b405c
MD5 bd999bbbadf790d2e17cafac03afc149
BLAKE2b-256 e8c8a2823d9b05201ba492b502f2dd47932e6bb6fae90ef6b0ce48e614df5e0b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05378056a0dccaa060eac40f5f3347365abfe9ca07c62f8fe2e627932ea8bb74
MD5 84cde8087b0226bb2af5015b3276be45
BLAKE2b-256 d8de86835adb4d20882e1922950704397b2d5becd54a3f916890f4b8702b290b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c959c2fffedc92c31045c64295b1fb059bf07fd0f550ee92ef7a2ff8faf9fc1d
MD5 04abc4de9bb51fe607f8eec899ab2cbe
BLAKE2b-256 108b669c17c691bc59710301ce49e0576b04d03670ee86f16f509feda1606485

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c00402750cd4b90828797b6bb041562d3ff81310f2fdcd7e675a12832733f80
MD5 56df19480fc8f269358a39a7b993a585
BLAKE2b-256 4eda485e8c4d87813584e64c3a272542a8199e0ba4feaedbc718f74d1e369685

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c15c31cf160fd2fddb53566837db88410dd27317b078eca83e1fa1dc67abf36
MD5 6974aee914e7ac507577883074c141f3
BLAKE2b-256 5ec029631d287ae7be35d20c0e8ab88f886f6e2528d76e67895821c98eb26487

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef72e8131c026e22a16b0d9f1dcc0109a1e07981c424beb5da74333d7dd305be
MD5 870ad79cffe307af113ec02c30f46f51
BLAKE2b-256 5e4b03fb773e3edf6cca5aad940bb8dec44677802f98b25c402b39591410f46d

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97f70300317707bea2f99bf129885b9d46f209e3d6f075a3be97bcb22cc9d13c
MD5 70275d118450b20fd8cfecf07573f716
BLAKE2b-256 ae3a93473ab968955c81851340cf9c701b6fe7a80ba89aa8b70d3053c93f539b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9de62a45c0f7acce80a7a4df67a78c8510db306485b13fafca24ef74143649a9
MD5 18fffead2bd17ca8d270a90bc02961c2
BLAKE2b-256 5555352d630acff7b6c2f95357ce4ce49d50ade492a7845045585d298e0cd0d3

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 294157665113a79527b8b40b4c12be34bd13810d8012762453597c067203f9cd
MD5 5ed430b66b3d0b0ddcad7a7c24f3fe75
BLAKE2b-256 d47056dbed0d8a59e4252e15b50d0d0bf0a7dcb1a63752c73467e934173adea0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59299eb61eae84bba91eb16cb1b1803e7ed888b19b9ef13eff4f3cb72095c9cd
MD5 089405a234fe96328a6afc416985bb16
BLAKE2b-256 51e0a666f9bafbc6018a605f9e0a28bc09efc20ae79bb6ae17721aeb928d4b52

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b07adbb12849aef631658eb404c9e422eb13efe11163f32776d5dc30a510202f
MD5 3305b35bd1e580a1fcdf2d96dbffafa3
BLAKE2b-256 b25f387fc26a9643bab7e6dab48fc7cc6801205e4a083c7016aa82628d596cb6

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98d1fdb5e778dcf3bb81544b3ea590fdbd8d32ae14c1c799ad3c0160a1e2c9cc
MD5 7d84ded30eec775bacb11ca76e1d7356
BLAKE2b-256 325dae3efe0b24a333bc91c6ea5959cf7ce372348c72d0cafee2181c4d592066

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba542076bdf1bc118c3b7b6aff6242905cd09251c38424b2f87b697ad8b3d407
MD5 d3f377172dd5a4b0e582e5f32120ed6b
BLAKE2b-256 bc2b72fec2cababff762f8a696051e2294b8303b4b850b67900ef0bb4dd91098

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6068c082015c672f0efb078a9661db65dbe8b3938619ecb3f10b93b0c611d24e
MD5 cd1617d3d74ab7ecb821607c2cf2846f
BLAKE2b-256 a0eef6b15f78d5a2203326b5f0543a02e016a904562dae1546524f0cfafdd695

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2592d81bb94c05915c81d186345463bc51db10ada446ac02c337b8962e198595
MD5 ae159bf724613ea1216d4b4db516eef6
BLAKE2b-256 d3d6e82c41a1543f13837c7ca410cb5b58be8ea0c09d4dc1361be9564c2f8895

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cfe0af63218f97325bfaf9e6d6b90262fc2797b132928e8a784a20f19f862e5
MD5 e8128439e56dfff2181825cff0af3b83
BLAKE2b-256 8116dde7e99f788b35fbc529f6a39b4607d5241abd07f0ce682c63acf32667f0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4107cf30135897b29fe70b92867a0a9a77c3cdbe141471882ef9c162172e33e9
MD5 c57b0219e839be3a3b9e08d2eef774d8
BLAKE2b-256 75429b857e4b7c1956398e853913089f3e922cc92534de9a6192709926230357

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 866fe68249ef54545f0a5b6199997fa46ce947f3a9ed91bb39ebe28791a837b7
MD5 df30a48b2e22635d123dd20eeb17ee28
BLAKE2b-256 eaaf591368f275354f27b17e2ac108d3ecd3593d50cfc80ded3a3f37d82ff238

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 712175819075f8e6e31925cca7145b83424630dee6f8bae705f30ee5057b59e4
MD5 8c702d1a89e8843cb4431c18e78249ab
BLAKE2b-256 a3973697575aba0cfafa3567c60a3f8ae9c7b6f430f5b713fba3e7ef5d96ee31

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f4ef72acbdf4f3dd3d7a513a3171b7b70bb22c225a4f36ecee88d1ef3e708f2
MD5 89cb2919cb55bab01623eaa84e35b78f
BLAKE2b-256 c6ad36f88cd790cdb8c8f1c2bc56b8fa487dc360554edcda3cfda329392adf76

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 be33d2fac980836348ea20f2d8975ef93c2581e050ba294ef5053c8fed1ab3f9
MD5 8becb0bb1e239ecb7da192f1d4de5aea
BLAKE2b-256 842f381c8a4d02a3c342714f3ac27ef9f823a023a5bc4a399e618b62b9d062b8

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-none-win32.whl.

File metadata

  • Download URL: cftime_rs-0.1.6-cp311-none-win32.whl
  • Upload date:
  • Size: 249.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 de0c372130e9904a6294e5dd6046fadd1e0746baf74eca0dd08714e9b94e053e
MD5 1983fb14798726c1c1dcc74b5a78b876
BLAKE2b-256 715eeaa5339f8a283d257f146ac25a05bf47cbf8ca8a677a5faa50ad4ba9c44f

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9daf71ce73624218e1c48be6c7c73297a07cb5fb0dcc794755609906f7bd72c
MD5 d2b1cc12f78e843b30fdd7c9ab6ef01d
BLAKE2b-256 223bdded14ec8b73975299390b5216c152a3ddc4815fe9ba069ef4bbc9da0c26

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da26c98494f361e54934ef8706d817b964c08d6c2c71d684dab973da5a30bb0f
MD5 cac5137a122ab108635bba0aa6bdcff2
BLAKE2b-256 b6d6772d2901e21c61ed03bf4e2eb317b217c1cb47122f1db045ddcd24e55277

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 671c6af37fe2f9e58468124a76aaaea31be3a038fd7d23408570eec9e59d6144
MD5 94db98eb0a9fe525f8c418606b6f208c
BLAKE2b-256 c235964eaa8b0761ef42314d4dbda6785ff39082e680ad340df5f402bb57dfb0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4605663ce96ea909072c8d939d6ddd10df9782cf4e141159e5524f7d41eb51f0
MD5 5055d1f027cf1217788ca9093c0c1cf4
BLAKE2b-256 511b5c6e732e481d985f1326ef3d3f2bf362c4436ba74f899e233dc27a5c777e

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 640227dc879a1a9d16cc07cc613f3d7eff30722b05f98dd3bc789c9a0c6d6b8e
MD5 6de96ef6b69a01f5cdbc56181ade326d
BLAKE2b-256 242bddba00602596ea4094cd07b26a598764c2b47be2890a661dc2489be0fad1

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2292299c31b174cee0cb02454963202b1c48518840cd8e278881e4e60900a4d
MD5 f2c5425104096232738e9bd28b8a080c
BLAKE2b-256 52ee3174d08c696b5a1010b81250283339ca1bdaf28acc8feba578b8ee2f5a88

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 265749cdb21b47ee65d19a1d597edcfaaf734c30503d37777f227e20cfe94218
MD5 87af8a9e68e011d8a182b02a3e39658f
BLAKE2b-256 977df7f54cc321ec1ffecc1fcfaf9ab129a533cffcaf4b2f22c8b676cc5469ca

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e0be2f8810c2d1d7dfe1e07c9754b128edb22670078a8b9029b69d703d617dc5
MD5 544fd61e4797f00681ab570833170320
BLAKE2b-256 33fcc995121c9c8de6b1fa41494693023bb19aec31e1b17c93a2dee167d94ed0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8e87b5f519481585f2f39753a661fba2c6e0e3a85c6d6d9cb4e7c128e2df7add
MD5 a2dcc96aff25370f621c8b442675db30
BLAKE2b-256 6b29e920ae7698a8602ad50e500daaf2c26677cd9e56cd005bb2597a11d41596

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-none-win32.whl.

File metadata

  • Download URL: cftime_rs-0.1.6-cp310-none-win32.whl
  • Upload date:
  • Size: 249.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 95b577aada7b9c32f33bfeefefe5fc148e412575d5dfe8a4f4c5dec57d72c940
MD5 c9ec9a6bbd4ced655c670259d0956aaa
BLAKE2b-256 dd99d28f1b6252e3e8978a39bd4ec7a7bfdfa61431a7ad12795fe3a6eae05144

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5b5194b6010b7abe903706b863ade446de817966deaa10feee2a9d999acf5f5
MD5 a65f9532c2cfd868656dd1cd908a5389
BLAKE2b-256 4cf578b76e926bcc17e2efc6315f8fe05b2b9dabe05fccc3ca52a1bab2815ccf

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 197aab25b402d61449f6462f64c08c8df7590d40461c193bf055b19a296cdd4f
MD5 64ff710fd7ea479069ef6cac28fb8f5a
BLAKE2b-256 73f2e4d8d6d16e1bf9ba3e0057d6737a9e7866efa73c6d593b9bdfdd0a3d837c

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d04085dc115a78d790a328eaa392d836ce49d3c397915d120e9b9f2f2231d66a
MD5 045866d314a5ac3e5c49fdbcdcb9ee0d
BLAKE2b-256 2e910dc718f1f539782612501f1fd91c89a7c7a208f44ae32c2a4c406d01a535

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c169011ce0309844ea5453979945dd73e28b2134e105e5e72bafcf2e47c31790
MD5 d5a53a135481524aeb26f6e53ad5d79f
BLAKE2b-256 aac3684a7bcb3a0e2dec6f10de83fe89ba8eb7ebe5d6691014fe4e316f554e1d

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfb05d62b10333864f911fb24c051c87e6a23bcb15b4633b24805e0bd80406d8
MD5 d04be150d94a16b91072759fd220e7db
BLAKE2b-256 c22b445c2e7a2bc33306b0900552f8af12937f554f5e2125decf29fdc9e3ca33

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 279ab1cbf9131e52681c4d171753b118710a1f508ccba48ac974af4e2a0954ac
MD5 e5138e61235d393746075fb1b2b2da77
BLAKE2b-256 001bdbc553bb848ba65d8a2801fb5806e5b95f815af90c99583f1572d133d75f

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a5c78b36049a5b292927e056f88425df8f65f2e25b09010ca9a80146ea5da3a
MD5 e2d47d2a5c2bde902e14f889717d4591
BLAKE2b-256 3cd3f206fccad7ef094e296af79ebdae94514efe3b5d89ba32c0e6aec1d4a16b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 807194b5ed509ae144f948d0a232e773df60668abf52638e298f1c0e7c60854e
MD5 623f802e0dd47fe06b100d4b9e3599bf
BLAKE2b-256 4a00752a2d064d9ff7dcfcbf760cc51445f0f50a94b87a147cced5f9dd1c3c31

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 91dc2e4d2ada7ff5b4344280132010baa2728ff63d247b508b48d3a93c1f5fb4
MD5 902adb6de6d50808b4d62b08813a74ef
BLAKE2b-256 56713deba59cbe07cfe40eaf2c0078f9520186a1fe40996b65604b6f55800a23

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-none-win32.whl.

File metadata

  • Download URL: cftime_rs-0.1.6-cp39-none-win32.whl
  • Upload date:
  • Size: 249.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4f407f594cc73b92ae476087ff3c6c3e1e1507f56c2dfec56257196d36acc48c
MD5 797f80c2b5f9de2adac162909a5f6dd2
BLAKE2b-256 4287452bd9a53606ce1318dd2e52517ae4a60b08522ec3ac4195ea8c0e24a499

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fde6b688529c6165886dc19f979bbdc356db2c011b3a6d83c424768a06680176
MD5 5332fb412b2749d249f41e9390adebce
BLAKE2b-256 186d83b345a6eae25d97c0a1c9c5a3105d5d4b4ee687156ae721b8de245b3a0f

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96fe9d379945975b47d2f8cc30341bf79d17375e1eb76185018e9d020fe3ff99
MD5 c07b35f2bf0ec993c5552af51d2afde4
BLAKE2b-256 57e00b223a6adb6e17f9a71bf0dbc323bb144649b0970f9a68b0d2d5e4ca07dd

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70fc6624976da39ca86b5e1a6e6795a13325ae8cc544e847cc0e0becf62e09e6
MD5 60571cffff54a7226c75bf785722098b
BLAKE2b-256 8499a0ef0947b1527c9f57167d193ae4b3c7938dc010cb5131ee15f57cf555cc

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fa1f3dc8c12f8a96b6266eff305f1f863f0a65ad9192354dc98d7209dc42790
MD5 6a58c8b588413b82171f529db1c3e658
BLAKE2b-256 775c6609fffae80659b6f20434251a9117c43d0dfeb9f6317906253f9cb6318e

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec993ef5a9ed6d4c326b8f887eb6f19df3ba8d27beaeb1194979bb38c273fd9c
MD5 e0d0fe0b3be8a8c352f3273764189a16
BLAKE2b-256 149bf263932a30bb93c87b042d93963358283d86dc7d8a0be62e2bd0bfb3bd29

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b48231456ccadf6cb4797c33b49a454921996595a1d34876357d38009e8db565
MD5 7a69b225b83d15fee1b13e323cf00cdd
BLAKE2b-256 5dc9f05d8ffcdcf5f5f843aafa8f32f5439a394a0e40789313d7b63f701e44d9

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9cdbd81bf0b4715dae2ca2fccb79f6bd08f3b364646bcc262c0fa201c30ffa76
MD5 186ae5184ee28e43f6da1bfb3c7cff26
BLAKE2b-256 394fb086cd22919dcf211109e30498428c043c6c04548f9d2fccfb7e9c3e0b5c

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-none-win32.whl.

File metadata

  • Download URL: cftime_rs-0.1.6-cp38-none-win32.whl
  • Upload date:
  • Size: 250.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c04de1acb51314253813672bf80cdffb746ca8105b6e5625f3641bcd8915a256
MD5 fd7512e6f2439821ca62a7fbaada91c5
BLAKE2b-256 1300f43e623558eaf8ffb4d1b03c66136f99669327f686c1a4d9856efb9016c2

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2301a1495eb8e6c9c9f1c80f04f92278492380e926d0b969642ebe16ab6b8347
MD5 915af6a3ea559cf208ac8dc109bde050
BLAKE2b-256 fa3db180a50886a8cb457f0382deea4ea92429bc0a2856cdbac0d50d07a46eb7

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7413eab4f596887fa89bc7a00bf60c2b155d2b81a4b657d8faaebc9dba426ee
MD5 c08ccc392a8ccd50bb3eef897fcc29c0
BLAKE2b-256 5de7dd68449ff469e13571fa6d859046b7174c91ca4ade32b0a9f3b74cf8d80b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6da2494d90a5e1419c9a0f3bbdb584228cfeb5ddda77882785bf8e208ea4254d
MD5 a2005ddfab200a1af0c95d666c5a4f67
BLAKE2b-256 1aa4b9c2dd33c641e922ac364ccfbfe13df2cda3b7455a7cdf7007c5a0945fb0

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f72403aa5cb5978ab464a3e8a243e34fc8112876cbef752250d7b5b7da3639c
MD5 8b49f2e8233b9798e37a769ddd7031c8
BLAKE2b-256 93b8e18696ec25ec55aa1f9d71392c53478f38e8b6210821c9c7389880f20b36

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8259127b59673ce3b4dc09550e8a4eba33e3b0529ae93da6c73d67935ef0661a
MD5 1d1c6cf0851f33ed27405d88e3776be4
BLAKE2b-256 31b9e395bc67a7671b46e201d799ac882a211e12855585a4543b98761fb138e5

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a884ef9fa3e71200a007d752d8ad94476c6bc468b5893f3e21ff1036b7cfb84
MD5 1b2bdc7ec86a5b5ee1a8847d47102fee
BLAKE2b-256 84468e2d72f52f17343a6e9958305c8b6518d4ae45b09d94af32126fb0f67770

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d95c3d1fca1e471cf735f2e77e29d08aeeae9306b4def6efca4b48c5f05c0ad
MD5 eb2102a6575e7bacc04f2a5df8fbaa42
BLAKE2b-256 03a38036a2dd9f495ae38bf6a33f1ce70d121d563c7228d5a16184a42aee841d

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-none-win32.whl.

File metadata

  • Download URL: cftime_rs-0.1.6-cp37-none-win32.whl
  • Upload date:
  • Size: 250.5 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.0

File hashes

Hashes for cftime_rs-0.1.6-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d03944bfbc11e34f4cc033a3367f1ff5a2b40e3c3955aaee97133cd05ad0bd0c
MD5 5b2a09b27a0bdfb4a5cb087865602c79
BLAKE2b-256 ad21495bc21e46032b3700938346a5f17d73952b60e917af09a055dd7c9f422b

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 957d3029333fc0b8634ea4c874f7fcb940ff9bbf75a29d16cb3356fba97524b8
MD5 3e75bc6f7f81fcfb64253663516f9d07
BLAKE2b-256 89660a661c180717007c58932d5dd85e79fd36234e68a4b9a13233c46765196f

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 978acf5703a957707ce54469d148ff2cad0467212c752b9e65dd3e80389e7609
MD5 20a5107209fe7ecf0854a5979a3ee965
BLAKE2b-256 dfce13286ec3635f9adaac9ca596b09916e972d876ff940fca770c3d1d302b30

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a2219bca0ee394fab1216f6a32722bb9e77b97dcca3283e9acf39ed57b589a8
MD5 8c52078c648850fdd446b7cd5910c611
BLAKE2b-256 c82d4d9af00a7151518721478cddfed2acc7d70b0f79cf3689275068f0691ad7

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26c8eafaea7dafe7391292f505f665c06e2fbf42d2ad36690f42b3af5b705d85
MD5 ed02dbd0edd765d283e13379beff6405
BLAKE2b-256 5265f5c80eb3b8360fb644174a59c938707da8c591cf2efadb570ba7e41668fe

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4767973c7ec8356cc2926d75213c308e242eaf8e75324d5d642268c57c874601
MD5 faacb4acdef0291e8083f31f676fddd8
BLAKE2b-256 d4838b0784185698cbe23ce1849562906e3fa4f1abb72387bd93a90acaf0b058

See more details on using hashes here.

File details

Details for the file cftime_rs-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cftime_rs-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2c67c141b9a3eb8ccdf98a6d9a35b6f5da61f76441241850d5df2619597d942
MD5 f319fa33abed10cee66f48feab56b214
BLAKE2b-256 66e37789b1e2b12344c05b8b3e7efe5dcbaeacafab47fb628cc55bec6759301b

See more details on using hashes here.

Supported by

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