Skip to main content
https://img.shields.io/pypi/v/ciso8601.svg https://img.shields.io/pypi/pyversions/ciso8601.svg

ciso8601 converts ISO 8601 or RFC 3339 date time strings into Python datetime objects.

Since it’s written as a C module, it is much faster than other Python libraries. Tested with cPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14.

(Interested in working on projects like this? Close is looking for great engineers to join our team)

Quick start

% pip install ciso8601
In [1]: import ciso8601

In [2]: ciso8601.parse_datetime('2014-12-05T12:30:45.123456-05:30')
Out[2]: datetime.datetime(2014, 12, 5, 12, 30, 45, 123456, tzinfo=pytz.FixedOffset(330))

In [3]: ciso8601.parse_datetime('20141205T123045')
Out[3]: datetime.datetime(2014, 12, 5, 12, 30, 45)

Migration to v2

Version 2.0.0 of ciso8601 changed the core implementation. This was not entirely backwards compatible, and care should be taken when migrating See CHANGELOG for the Migration Guide.

When should I not use ciso8601?

ciso8601 is not necessarily the best solution for every use case (especially since Python 3.11). See Should I use ciso8601?

Error handling

Starting in v2.0.0, ciso8601 offers strong guarantees when it comes to parsing strings.

parse_datetime(dt: String): datetime is a function that takes a string and either:

  • Returns a properly parsed Python datetime, if and only if the entire string conforms to the supported subset of ISO 8601

  • Raises a ValueError with a description of the reason why the string doesn’t conform to the supported subset of ISO 8601

If time zone information is provided, an aware datetime object will be returned. Otherwise, a naive datetime is returned.

Benchmark

Parsing a timestamp with no time zone information (e.g., 2014-01-09T21:48:00):

Module

Python 3.14

Python 3.13

Python 3.12

Python 3.11

Relative slowdown (versus ciso8601, latest Python)

Python 3.10

Python 3.9

Python 3.8

ciso8601

69.3 nsec

60.4 nsec

64.8 nsec

59.5 nsec

N/A

89.4 nsec

85.7 nsec

93.5 nsec

backports.datetime_fromisoformat

N/A

N/A

N/A

N/A

0.9x

76.4 nsec

71.6 nsec

79 nsec

datetime (builtin)

125 nsec

123 nsec

136 nsec

127 nsec

1.8x

N/A

N/A

N/A

udatetime

543 nsec

543 nsec

538 nsec

520 nsec

7.8x

544 nsec

544 nsec

553 nsec

python-dateutil

3.14 usec

3.41 usec

4.03 usec

3.46 usec

45.3x

4.14 usec

4.16 usec

4.22 usec

str2date

3.21 usec

3.28 usec

3.61 usec

3.51 usec

46.3x

3.76 usec

3.71 usec

3.91 usec

pendulum

4.19 usec

152 nsec

126 nsec

136 nsec

60.4x

148 nsec

145 nsec

181 nsec

iso8601utils

N/A

N/A

N/A

N/A

53.9x

N/A

4.62 usec

5.05 usec

iso8601

4.97 usec

5.14 usec

5.37 usec

5.33 usec

71.6x

5.21 usec

5.25 usec

5.7 usec

isodate

5.24 usec

5.72 usec

5.9 usec

5.53 usec

75.6x

5.61 usec

5.81 usec

6.07 usec

PySO8601

9.56 usec

10.2 usec

9.53 usec

7.99 usec

137.9x

9.53 usec

9.98 usec

27.8 usec

aniso8601

12.2 usec

12.3 usec

12.9 usec

11.7 usec

175.7x

15.5 usec

16 usec

15.7 usec

zulu

12.4 usec

12.5 usec

13.8 usec

13.1 usec

178.3x

14.3 usec

14.6 usec

14.3 usec

arrow

42.5 usec

42.9 usec

42.4 usec

42.5 usec

612.6x

49.8 usec

50.1 usec

49.1 usec

maya

46.6 usec

35.4 usec

42.5 usec

39.1 usec

671.5x

44.1 usec

44.8 usec

46.7 usec

metomi-isodatetime

808 usec

852 usec

810 usec

831 usec

11647.5x

1.1 msec

1.09 msec

1.11 msec

moment

1.22 msec

1.3 msec

1.3 msec

1.38 msec

17631.5x

1.36 msec

1.4 msec

1.39 msec

ciso8601 takes 69.3 nsec, which is 1.8x faster than datetime (builtin), the next fastest Python 3.14 parser in this comparison.

Parsing a timestamp with time zone information (e.g., 2014-01-09T21:48:00-05:30):

Module

Python 3.14

Python 3.13

Python 3.12

Python 3.11

Relative slowdown (versus ciso8601, latest Python)

Python 3.10

Python 3.9

Python 3.8

ciso8601

71.8 nsec

70.3 nsec

75.1 nsec

67.3 nsec

N/A

98.3 nsec

92.9 nsec

97.8 nsec

backports.datetime_fromisoformat

N/A

N/A

N/A

N/A

1.1x

103 nsec

99.1 nsec

102 nsec

datetime (builtin)

197 nsec

197 nsec

199 nsec

179 nsec

2.7x

N/A

N/A

N/A

udatetime

661 nsec

638 nsec

664 nsec

643 nsec

9.2x

669 nsec

664 nsec

669 nsec

str2date

4.04 usec

3.91 usec

4.38 usec

4.49 usec

56.2x

4.66 usec

4.81 usec

4.9 usec

python-dateutil

4.95 usec

5.61 usec

6.33 usec

5.73 usec

68.9x

6.87 usec

6.85 usec

7.17 usec

pendulum

6.53 usec

202 nsec

200 nsec

210 nsec

91.0x

222 nsec

221 nsec

262 nsec

isodate

7.5 usec

7.79 usec

8.26 usec

7.74 usec

104.4x

7.76 usec

7.8 usec

8.4 usec

iso8601

7.79 usec

7.71 usec

8.37 usec

7.92 usec

108.4x

7.65 usec

7.69 usec

7.98 usec

iso8601utils

N/A

N/A

N/A

N/A

143.3x

N/A

13.3 usec

14.4 usec

PySO8601

15.8 usec

16 usec

16.7 usec

14.6 usec

219.7x

16.1 usec

16.2 usec

16.7 usec

zulu

16.6 usec

16.2 usec

17.1 usec

15.9 usec

230.9x

17.2 usec

17.2 usec

17.4 usec

aniso8601

17.6 usec

17.8 usec

19 usec

17.4 usec

244.8x

21.7 usec

22.8 usec

22.8 usec

arrow

49 usec

52.1 usec

52 usec

49.7 usec

682.3x

58.8 usec

58 usec

58.5 usec

maya

54.2 usec

41.4 usec

44.6 usec

39.6 usec

755.5x

45.3 usec

45.7 usec

46.1 usec

metomi-isodatetime

794 usec

870 usec

806 usec

806 usec

11055.0x

1.1 msec

1.09 msec

1.15 msec

moment

2163866.8x

ciso8601 takes 71.8 nsec, which is 2.7x faster than datetime (builtin), the next fastest Python 3.14 parser in this comparison.

Tested on Linux 6.17.4-orbstack-00308-g195e9689a04f using the following modules:

aniso8601==10.0.1
arrow==1.4.0
backports.datetime_fromisoformat==2.0.3
ciso8601==2.3.3
iso8601==2.1.0
iso8601utils==0.1.2
isodate==0.7.2
maya==0.6.1
metomi-isodatetime==1!3.1.0
moment==0.12.1
pendulum==3.1.0 (on Python 3.9, 3.10, 3.11, 3.12, 3.13, 3.14), pendulum==3.0.0 (on Python 3.8)
PySO8601==0.2.0
python-dateutil==2.9.0.post0
str2date==0.905
udatetime==0.0.17
zulu==2.0.1

For full benchmarking details (or to run the benchmark yourself), see benchmarking/README.rst

Supported subset of ISO 8601

ciso8601 only supports a subset of ISO 8601, but supports a superset of what is supported by Python itself (datetime.fromisoformat), and supports the entirety of the RFC 3339 specification.

Date formats

The following date formats are supported:

Format

Example

Supported

YYYY-MM-DD (extended)

2018-04-29

YYYY-MM (extended)

2018-04

YYYYMMDD (basic)

20180429

YYYY-Www-D (week date)

2009-W01-1

YYYY-Www (week date)

2009-W01

YYYYWwwD (week date)

2009W011

YYYYWww (week date)

2009W01

YYYY-DDD (ordinal date)

1981-095

YYYYDDD (ordinal date)

1981095

Uncommon ISO 8601 date formats are not supported:

Format

Example

Supported

--MM-DD (omitted year)

--04-29

--MMDD (omitted year)

--0429

±YYYYY-MM (>4 digit year)

+10000-04

+YYYY-MM (leading +)

+2018-04

-YYYY-MM (negative -)

-2018-04

Time formats

Times are optional and are separated from the date by the letter T.

Consistent with RFC 3339, ciso8601 also allows either a space character, or a lower-case t, to be used instead of a T.

The following time formats are supported:

Format

Example

Supported

hh

11

hhmm

1130

hh:mm

11:30

hhmmss

113059

hh:mm:ss

11:30:59

hhmmss.ssssss

113059.123456

hh:mm:ss.ssssss

11:30:59.123456

hhmmss,ssssss

113059,123456

hh:mm:ss,ssssss

11:30:59,123456

Midnight (special case)

24:00:00

hh.hhh (fractional hours)

11.5

hh:mm.mmm (fractional minutes)

11:30.5

Note: Python datetime objects only have microsecond precision (6 digits). Any additional precision will be truncated.

Time zone information

Time zone information may be provided in one of the following formats:

Format

Example

Supported

Z

Z

z

z

±hh

+11

±hhmm

+1130

±hh:mm

+11:30

While the ISO 8601 specification allows the use of MINUS SIGN (U+2212) in the time zone separator, ciso8601 only supports the use of the HYPHEN-MINUS (U+002D) character.

Consistent with RFC 3339, ciso8601 also allows a lower-case z to be used instead of a Z.

Strict RFC 3339 parsing

ciso8601 parses ISO 8601 datetimes, which can be thought of as a superset of RFC 3339 (roughly). In cases where you might want strict RFC 3339 parsing, ciso8601 offers a parse_rfc3339 method, which behaves in a similar manner to parse_datetime:

parse_rfc3339(dt: String): datetime is a function that takes a string and either:

  • Returns a properly parsed Python datetime, if and only if the entire string conforms to RFC 3339.

  • Raises a ValueError with a description of the reason why the string doesn’t conform to RFC 3339.

Ignoring time zone information while parsing

It takes more time to parse timestamps with time zone information, especially if they’re not in UTC. However, there are times when you don’t care about time zone information, and wish to produce naive datetimes instead. For example, if you are certain that your program will only parse timestamps from a single time zone, you might want to strip the time zone information and only output naive datetimes.

In these limited cases, there is a second function provided. parse_datetime_as_naive will ignore any time zone information it finds and, as a result, is faster for timestamps containing time zone information.

In [1]: import ciso8601

In [2]: ciso8601.parse_datetime_as_naive('2014-12-05T12:30:45.123456-05:30')
Out[2]: datetime.datetime(2014, 12, 5, 12, 30, 45, 123456)

NOTE: parse_datetime_as_naive is only useful in the case where your timestamps have time zone information, but you want to ignore it. This is somewhat unusual. If your timestamps don’t have time zone information (i.e. are naive), simply use parse_datetime. It is just as fast.

Release files for ciso8601-ft 2.3.3

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

Source distribution (sdist)

Source distribution for ciso8601-ft 2.3.3
File Size Uploaded
ciso8601_ft-2.3.3.tar.gz 27.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for ciso8601-ft 2.3.3
File
ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_universal2.whl CPython 3.14 CPython 3.14 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_universal2.whl CPython 3.13 CPython 3.13 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_universal2.whl CPython 3.12 CPython 3.12 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_universal2.whl CPython 3.11 CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_universal2.whl CPython 3.10 CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_universal2.whl CPython 3.9 CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
ciso8601_ft-2.3.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
ciso8601_ft-2.3.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ciso8601_ft-2.3.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 11.0+ x86-64 Details
ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_universal2.whl CPython 3.8 CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64) Details
ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details

Total release size: 2.1 MB

Release files / ciso8601_ft-2.3.3.tar.gz

Download URL ciso8601_ft-2.3.3.tar.gz
Size 27.7 kB
Tags Source
SHA-256 checksum
How to use checksums
eb9f870cfa60161f9956b0c2d7af4e0b264d69a8e53c512197fc68e58dfe7fbb
BLAKE2b-256 checksum
How to use checksums
db19c659ffc8f63d84ea312a9b389509538953dc0cdb109ad0ef9d77c0e34b31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 18.3 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
92d03c1a5ff9dc5150f08280c4bf7972b5ca20c4205fb3261cf00fbd7d448ebf
BLAKE2b-256 checksum
How to use checksums
49755c7dc1d75545d8239656f7b72dc5b9ed19b81c9da29063292ca0e80951a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 17.0 kB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
526db1803f34cb29e4e501669996f4a75930f5c8b3f9c3a1c1b6c0e1c7b3f17a
BLAKE2b-256 checksum
How to use checksums
d88c0f8cf9e5c0fc723abf7ac0262a2e0772810e7f0b063f1f7e873072a31131
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 18.3 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a89b5bf3d107016549188fe40c60c86f50ba1cdb5fa2408a724c1aa731de03dc
BLAKE2b-256 checksum
How to use checksums
f5458ac070cc2c13d6390c78608f9a1ac7efd5eea2a5790ab86225e780c93bff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 17.0 kB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
98c6f1239b6464131bc508cfa65e8462d21cdc7ea597ca43bcce288ab00ec01e
BLAKE2b-256 checksum
How to use checksums
89e111ccb8b94ff20b1a12cb4563dc8d4f444faf3a2d6011f2f4575c8b548435
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 18.3 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
6c1903c44444c2dcbeb6b4c11fff14c111a7d090642126effe712f49c5e36bc3
BLAKE2b-256 checksum
How to use checksums
d25330e81094b978f89f0e5696df659d295b24ca7f78a0ea7ea0dca9b71aadcc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 17.0 kB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
4e6bcb7733104207c88fe4ce3197cd9781b74b4f0610bde5feacadea597d39bb
BLAKE2b-256 checksum
How to use checksums
4edfb3f84180477df6ff75d6dfd9c840a5ae53487046ba972abc82db9caf9a94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 18.6 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
7aa19b701a0c2b1260a24599a82c2e31f0d9d39d71a78c70a0700ce64bf6feb8
BLAKE2b-256 checksum
How to use checksums
df9be05413d3e39a9ae2335554c608b3b061f7e3cd6d0c880e75a58a8f8275d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 17.2 kB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
21eaa7b3f1e36dc8cd8bc178fe719355183a2ddec6eb66ef87e668fc941b0ca6
BLAKE2b-256 checksum
How to use checksums
e531b1c717927c2bb097217f017f9da48073f6687a781ddbceea141e3a48dfbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-win_amd64.whl
Size 18.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
56642a8895457d31e8a534900ecb867a4c365e85718b1e004e565f321942f0e8
BLAKE2b-256 checksum
How to use checksums
c8a6f6608a60cdb41fbb9b84b98699b5c1f3ac3d13c77540a9b878e7fa14fb0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 45.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
53f46408ee2768da237c0876fb405a459f627d760c93a1c0815694fbb35e8547
BLAKE2b-256 checksum
How to use checksums
7d934dbbae0097c9bc674c10a1be267761cdb294a13ba57569730a5b39a37189
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 45.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ee27b1452ac8f022986b227bdcda802c1a4a212e66cb0a848aced30b23608235
BLAKE2b-256 checksum
How to use checksums
1ec11a37dd0414b3650c7d22523e06115af866048e737f065d2fff2b9882bb6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 46.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cf343dd4b106bb4cf81e38a279a9cb2a2ba6d985570128671c792fe8b2eb6f5a
BLAKE2b-256 checksum
How to use checksums
8444f71e3b08bad22001b72c6c5617ef693a21c8a2069eb4275996978249b261
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 46.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
84a996302762dcc5f7c8e0e241278b2d7aaa960c8a9b2c3cf459232f848eccbe
BLAKE2b-256 checksum
How to use checksums
ab1368f75e5b633f2ea609d15623a8797382de29c500de474771324337e15bc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_x86_64.whl
Size 16.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
8902a98ea9e229ce60930d52f3b4eefaa4aee066d6365afd802c8c9b1a1ee985
BLAKE2b-256 checksum
How to use checksums
8ee8c632e68b0456937551f5903186a3ff70109b5c32e9951e5c5e7c56ea8126
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_universal2.whl
Size 25.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b4d2780706be72190dccb28eaeb9de8b428f9b498e2d118a9f77f6d965872664
BLAKE2b-256 checksum
How to use checksums
2c96b7d5662a287d463cb7f542f8353e6430defca282dd53fea7b0602e740c8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Size 16.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
825d2d5ca45546980312bac7919062b14cac663d8d4a1c2ba6988898b4c69ddb
BLAKE2b-256 checksum
How to use checksums
1e44d00ab27bcbd33ef7841a48f84bcf8f1c38cb58de35bf535077dfcee72e4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Size 44.8 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e2c8efe335393eec680f742d355ddc9811a1040e495fb1e3b106bc362a286139
BLAKE2b-256 checksum
How to use checksums
c268c66592ba799f2902fed32a3cbaf3b7f16dc993bc6e5a0adb89e655e1502c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 44.1 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bc4168dbe5a3904cd9206f5ac658e88779ffb2a369adf03a4ff7b40ab8e73a27
BLAKE2b-256 checksum
How to use checksums
24cdbfb1ec826ac58a4e8070a071021cb90f5734cfe60eca1f8cc31e5bb642fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 45.3 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
05c7de87daa5be20c4d0dee3d2a26fb6863e6d0e327de1881a8fabe3b16a17b5
BLAKE2b-256 checksum
How to use checksums
c3f08500eaab5232d21d35d5607b27d788ae536bccc3299ad3dad7ccee0e84d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 44.8 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d8324f3677e4e62a61d83456fdac128a91b1e6c7f875ec9e4ce305ea30ce3880
BLAKE2b-256 checksum
How to use checksums
4d3d386ece7d642420bae21974ec2085cccb7049e2de9165858aa2cfd492851c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_x86_64.whl
Size 16.2 kB
Tags CPython 3.14 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
a91e2696aac82bcc75342601f14732cefa3c3d1d934325641becc2fbe0c50bb9
BLAKE2b-256 checksum
How to use checksums
d845b91e2fd436d2dcb2f06da8563cd2dcf07dba080777772e8967e4239bdef0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_universal2.whl
Size 25.0 kB
Tags CPython 3.14 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
346a69ea55a95cde2a4bf7f8364e4ba4c1ec708f4626b37e249d09a51041d875
BLAKE2b-256 checksum
How to use checksums
939078f6fc1d38947d5da20a058e7ac14cbd1793712f98a307e53545dfd590a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp314-cp314-macosx_11_0_arm64.whl
Size 16.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8471d4c165c371974d0d0cf258c99ab26c9df87d6c9f4f57913221746c93fc7b
BLAKE2b-256 checksum
How to use checksums
59c79a2effb63de3bd42e8e2a14ed8af7a58928846080b6a04014779d4e4abdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 44.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7dcde3e7e9434998df032bb8feb67009092a6a8ab0ac579848eee14d4ce94b6c
BLAKE2b-256 checksum
How to use checksums
827e1302334d84703e53ec88f6a74c00b1e1cb3cd59abdc15b7da13f7eb19a22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Size 44.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8b475ee249da7b1e064eabf1715af0c98383cfccb395971b02dbb4f5903b4e3b
BLAKE2b-256 checksum
How to use checksums
bb57aaea74fc42591a698f0a9e00a0547029ca7806958c58d89067c8279c26af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 45.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3a18de0a3022a5828476eb92293d6771048a9eec6788322beb781e55ccb33d20
BLAKE2b-256 checksum
How to use checksums
095bf1cfa1ed7ab96a14d0106163f800c51974f1ec45b826b7a6ce7517e469c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 44.6 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f0f6f9443a195e3eba9b7e35882168f94917faddcba7622c43616fa9974226ca
BLAKE2b-256 checksum
How to use checksums
319ffe82570878d08ae1025406d611e0957e4ad4c2e441bec8762e4563602cfe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_x86_64.whl
Size 16.2 kB
Tags CPython 3.13 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
bedbf47d3abd3430c2b3162cdab7cd2f934d64b7e25b8e266a2fbf16c422126c
BLAKE2b-256 checksum
How to use checksums
f0ac69e1db0fc15ac6187546a1d1fbe9129e8c2c445e39b05fc35eadb4ea5f98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_universal2.whl
Size 25.0 kB
Tags CPython 3.13 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7a6b6780e7d3411cef01808bc8cd3fb486c8eba37a32728bfcbb9f5ed50c6b3b
BLAKE2b-256 checksum
How to use checksums
90a9e48827eeaf8e5127fb49c6532efe0d6fe65b46a6d49198e409c21a698a06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp313-cp313-macosx_11_0_arm64.whl
Size 16.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3aac72d4b7682aeae092bb19c5c0fcd31f90be1f683fb434bd3b7441779f270e
BLAKE2b-256 checksum
How to use checksums
6e67c4a32aaf108e9991cb5e628e530b068bd0433a10bf5e1abda34abd0e2f07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-win_amd64.whl
Size 17.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7f077bdd203686989f29ff4b0620484ec082ef9757488caced996e637d40c8c5
BLAKE2b-256 checksum
How to use checksums
ae1594229ffb63f6edd079883a0a34c56e7dd0e2ba936e93ebb449c19fb06557
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 41.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
348d270062e94b78fd593e4c97495a47a457c4f4d5ae60d8eaee0667e21a960c
BLAKE2b-256 checksum
How to use checksums
6090cbc436e2bf1a6a4b5720bdf32016978c582862481c95645d8c8f37ca1c2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 41.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e845eeb26abd5f05290ff4205ca434e7b9973750b872d966271568f08139d91c
BLAKE2b-256 checksum
How to use checksums
c4121b8a40074b1b4e223eb5bec4f221b9ad85efbbcfedd9d9472ae10c93faa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 41.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9b1e6e3cb5a7ff5e5fbc65865bddb27016bd3927e3f7709fae0e317b68320831
BLAKE2b-256 checksum
How to use checksums
0645c9a66298971e0e56b8a114782ed55d88dd0971f0e61b037206b6611b7ce7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 41.4 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b2f4655d5120e5529e523fe89830e0f57191fd241476b963f9a5bab786ca0ae8
BLAKE2b-256 checksum
How to use checksums
facb3a42b25a6f18355b92b447cc74e3a16622d20866352b6ec6843c031a41c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_x86_64.whl
Size 16.0 kB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
f03f82ba6d2f22e2b1be1cfe9d18a1c375faadf1e56b8f3951b0e482cc796461
BLAKE2b-256 checksum
How to use checksums
09e364b959715fa7c173b401ba0aa159c59db549450e4b128318ace9dd1deb67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_universal2.whl
Size 23.4 kB
Tags CPython 3.12 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b31ab026644f25cd4ae2ca26d3ccae623d5ce8952aff749305f757d6b39b6632
BLAKE2b-256 checksum
How to use checksums
fc745bc81e368a68c7da4e311c54a74edb9d9aba12d99fa31bd42f4246d38596
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp312-cp312-macosx_11_0_arm64.whl
Size 16.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
25b6fb926f97a4c6f9d3888a9b4c77a5bf14ed5430adb8fb9ecefb55d3e74ae4
BLAKE2b-256 checksum
How to use checksums
90c7d6f544fefda793fffe34a2d298abba0a5ad9597e250270454c736591b479
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-win_amd64.whl
Size 17.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
50053d18e89be21576281ec4f3d63af14c13bab9bc73f555099d10992520326f
BLAKE2b-256 checksum
How to use checksums
df7cc6f6beb9e3ed394498ce1200c69bb996d8d8a3e628d1b4e5a65be0f34ff1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 40.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f5cde260f62623f72d3e0d2d0610bc052c92fa39ece22c2cb48a8bcf20e079c9
BLAKE2b-256 checksum
How to use checksums
d6fac15988ca2d8df2b37fffe1ef55f031cd8c8b04b83b6b290e8747bd05a9b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 40.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8dcd6750c8b47f1c41831482ddf2c0a05240ddc973948deac478b9e95fef9bdb
BLAKE2b-256 checksum
How to use checksums
160ade15876410f4f220d598879c423f83d2d3df30d7d50b74b658ea050b0ba8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 40.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2aceeff9b67b9eb25e0d7d786b7cf097628f9a4e3e5310631f7d550bca529a24
BLAKE2b-256 checksum
How to use checksums
9e4610f4dd53737c6e8cd67496a1e247b34b0af2e788d4e8c2c9bf142a1b3911
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 40.4 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a49b5c6bec27d3714dce3bad45ea55b6fc35b1e82bc103dc4ea36c71b76dc50c
BLAKE2b-256 checksum
How to use checksums
69b7128dd455658ceec9fd24cfc7b1a6256ea652dc7117c9b24e97ff9c5772f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_x86_64.whl
Size 16.0 kB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
953680194683137f5a7f5d82350246ba2b6163c680fe2dae2b623ecc5c352fca
BLAKE2b-256 checksum
How to use checksums
13bcfcf726cad81001f2503cb17ed36e67ac8be4d7c4927ea3ca1012211eac48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_universal2.whl
Size 23.4 kB
Tags CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
410304426c806a0ff98a77ff76349a6833644f41ac8744de6cbfd125d97853aa
BLAKE2b-256 checksum
How to use checksums
e5c21ab6afe7daff75f0729be5115baf0299a7476064e15eda16053262f01dfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp311-cp311-macosx_11_0_arm64.whl
Size 16.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1e98d00692f077fcfeb350b04f30b9bf1366f3992cba15ce523cb5a9672d3700
BLAKE2b-256 checksum
How to use checksums
b07e82c4f9df4472619888d2b9c044399a5f217c4f8bc49d1d2f319f11f79de0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-win_amd64.whl
Size 17.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
29e9e9dbc431935a529d76ad42911c4b7c54b465a7622356f2d4f2baa034fb5d
BLAKE2b-256 checksum
How to use checksums
262464a3c92f0bf1a79f4bddfd00856ebbe9e49acafe08be7007e120c73b79c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Size 40.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
48acca6a4dfce1f03c687092c9a982eec5375d12f742f2d8b75da7cfec28ca5f
BLAKE2b-256 checksum
How to use checksums
c09aad601e1a8cb31c4c56eefa6b90becc05a016a080afbd0697bb754c5b9f0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 40.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5da4be7e6fc8d0aa0c28f038b923813b547baf2858bf85e100aa965ad821b6ff
BLAKE2b-256 checksum
How to use checksums
bc35d6b70b278b7ad73b4e748b1b3ecc90989bf00113fd2b96b8ff8a4a26c40d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 40.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
630c905a2e4fa94dd93bbab9f5e0f8a2ee29dcdf7886ec55992a1c7082bdf691
BLAKE2b-256 checksum
How to use checksums
b72fbe30949297cd7a903421d578fed488aee507e24836adb1499cbc76f95be8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 40.0 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8ab9fca8f79a99e4c017df0f6bb417125cb4ec9dba0de0aecf573f43ce08b9c1
BLAKE2b-256 checksum
How to use checksums
ae18089ad103fffad9f8baf4dd22a3a4b6220cfa070dc3ad12db8ec2dcf5d917
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_x86_64.whl
Size 16.0 kB
Tags CPython 3.10 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
a4bd5346269dff39e46d5cbea9cc6caa6ca680019da08c4a6d6c85fdaf5ba0fc
BLAKE2b-256 checksum
How to use checksums
8aecd04d347aeb991c08ae5f433b4abf89891ef14738d95948f2a954b2b722f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_universal2.whl
Size 23.4 kB
Tags CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
32f51c64db99afb4836d29beffed4fe2534ce140786918f0834c0b026334ac64
BLAKE2b-256 checksum
How to use checksums
5c7725b65dbb1257a6ab634916020590154ef17d7517712f441d7e734ab971e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp310-cp310-macosx_11_0_arm64.whl
Size 16.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4c035cb32043c44000fcc58a2c34be658bfc2bfc797bb7b3e642c58b11a86140
BLAKE2b-256 checksum
How to use checksums
fcb45137e679d0705cc9d6d0f2520d5f2f43af6deb8cc4d8ede7e29d234b1a9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-win_amd64.whl
Size 17.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
bdaf37be10b86109a87e09c308bad38a2b1f00852c6740dca5c5f64d44993dec
BLAKE2b-256 checksum
How to use checksums
fc7317cc66540c9b05195d5f09e8f32c80540dbc05275c981c34b6ea70d009ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Size 39.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c62693f6e154dd98bc86d86dd6c021128864ddedf1252fe17a6eae8190711b19
BLAKE2b-256 checksum
How to use checksums
e964846e86ca2ed53c3cd586e4fabd3c9076280b396d835456874bf0b23a8686
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Size 39.7 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
106f0da5cfb0b28bb4c499c1a0154843ef56ccc04c50e46647e7fdbd036cc5e8
BLAKE2b-256 checksum
How to use checksums
37515d05e16897df9ade6df10823d3a645e3a452c607d10c7e3b30f8b93e5a0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 40.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bb713159a314f241669e50a92ff94fadf36636d41096d33608382538c2bfc36f
BLAKE2b-256 checksum
How to use checksums
dd0c477695b44478e8b722e5a76b710b5596fbcb8cbf67e0eb41ef6dc96904a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 39.7 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
674a1f59105e83dafcefe580274de7f6f6c793976eac00bdb05c8fc1efe787ac
BLAKE2b-256 checksum
How to use checksums
8a00e34ed224f170df7ccdf087723b7942782531f4f10a58c1b0ae2d44f25435
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_x86_64.whl
Size 16.0 kB
Tags CPython 3.9 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
34eb225aeaf2136cc437a63604c658a8888d4120e802af15726a4cf851830489
BLAKE2b-256 checksum
How to use checksums
12be98d581fe72fb3320205d9b1c0e7862ae7dc9ed9a020647420b24e8c43dda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_universal2.whl
Size 23.3 kB
Tags CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
43af83def3b94819039a138e6886f3b0b0755106cec592cc3f9610e887312ea9
BLAKE2b-256 checksum
How to use checksums
5f0fd619340f8d366ff9e771131a0585c77fd5ba7350f6fc135c612ecea0e150
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp39-cp39-macosx_11_0_arm64.whl
Size 16.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cadab0d4a1dc8492b778ba35c0ae840074c26125320d75ccfcd75c393152d5e2
BLAKE2b-256 checksum
How to use checksums
66e823dc433badf52805b750d1ab0091cdfa8cdf7b71a2dad8b72633e8320246
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-win_amd64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-win_amd64.whl
Size 18.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e79eaef62fb42a2582472107e221511d85ebb623b27c1e161f1733ac1b0e31e7
BLAKE2b-256 checksum
How to use checksums
e2b6113b4cd15a187be55205df6e9cc6da85d343b4d76c83167c74d0cce6da54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Size 40.4 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a48ae65c05fc74c79c48282830bf11d9139b5497e5b4e7f90adc93bab89eb5fd
BLAKE2b-256 checksum
How to use checksums
d098444d21de5aa92057853c5e752f56c691d541afb72157553016d64535e0e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-musllinux_1_2_aarch64.whl
Size 40.1 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1f38754986adf83c6ca7ee632447a232dff8cda19f3d10a7a7b03c2371baf8ad
BLAKE2b-256 checksum
How to use checksums
98783e79d208f3655cf0a3de760dc82e29e762f2d9f559d95ccc39d18c29feda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 41.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fb23ba58000e7affe647d625d736c872340f316f87e32631fe59985ff91da8a4
BLAKE2b-256 checksum
How to use checksums
d53741dbf8b8cf7b78d5217fa8147797e3ddae20a6f0d59d5bc7c00de417667f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 40.9 kB
Tags CPython 3.8 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
99ec4e131ab6b006362e17d04a7dabc9ca415280f05b736a0ed6b072dcc72279
BLAKE2b-256 checksum
How to use checksums
ee0cba558f58bd7c475be2ac499a998bf2345bb27c19a149559df56132601fe1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_x86_64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_x86_64.whl
Size 16.2 kB
Tags CPython 3.8 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
0eae7d2c9567148f14e7043ed45ef826e249f7b26448894636e6731b33ca36ad
BLAKE2b-256 checksum
How to use checksums
c2d1b58fe86e5115f01c245948e9d84b86a9d5f7dc67a86564aa52f8c75960ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_universal2.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_universal2.whl
Size 23.6 kB
Tags CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3288f17851be7bac5156c7eab0e11415adcaef551026aaddd481fa9f626cccfc
BLAKE2b-256 checksum
How to use checksums
18e14fe4f02adeb7a19b244b0d1e0cea3c90ae5add6c2e9daeb4852ea8901dd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL ciso8601_ft-2.3.3-cp38-cp38-macosx_11_0_arm64.whl
Size 16.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
72e54e0ef2b05b623628deb6ed4c2d1df7964dd729fa1b267544186e27bf9cd5
BLAKE2b-256 checksum
How to use checksums
a51cec44be33dffa1187ce30510dfbf60278b32254f846d043b6f7847007eefa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release history Release notifications | RSS feed

This release

2.3.3 This release

71 release files

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