Skip to main content

Python datetimes made easy

Project description

https://img.shields.io/pypi/v/pendulum.svg https://img.shields.io/pypi/l/pendulum.svg Pendulum Build status

Python datetimes made easy.

Supports Python 3.9 and newer.

>>> import pendulum

>>> now_in_paris = pendulum.now('Europe/Paris')
>>> now_in_paris
'2016-07-04T00:49:58.502116+02:00'

# Seamless timezone switching
>>> now_in_paris.in_timezone('UTC')
'2016-07-03T22:49:58.502116+00:00'

>>> tomorrow = pendulum.now().add(days=1)
>>> last_week = pendulum.now().subtract(weeks=1)

>>> past = pendulum.now().subtract(minutes=2)
>>> past.diff_for_humans()
'2 minutes ago'

>>> delta = past - last_week
>>> delta.hours
23
>>> delta.in_words(locale='en')
'6 days 23 hours 58 minutes'

# Proper handling of datetime normalization
>>> pendulum.datetime(2013, 3, 31, 2, 30, tz='Europe/Paris')
'2013-03-31T03:30:00+02:00' # 2:30 does not exist (Skipped time)

# Proper handling of dst transitions
>>> just_before = pendulum.datetime(2013, 3, 31, 1, 59, 59, 999999, tz='Europe/Paris')
'2013-03-31T01:59:59.999999+01:00'
>>> just_before.add(microseconds=1)
'2013-03-31T03:00:00+02:00'

Resources

Why Pendulum?

Native datetime instances are enough for basic cases but when you face more complex use-cases they often show limitations and are not so intuitive to work with. Pendulum provides a cleaner and more easy to use API while still relying on the standard library. So it’s still datetime but better.

Unlike other datetime libraries for Python, Pendulum is a drop-in replacement for the standard datetime class (it inherits from it), so, basically, you can replace all your datetime instances by DateTime instances in your code (exceptions exist for libraries that check the type of the objects by using the type function like sqlite3 or PyMySQL for instance).

It also removes the notion of naive datetimes: each Pendulum instance is timezone-aware and by default in UTC for ease of use.

Pendulum also improves the standard timedelta class by providing more intuitive methods and properties.

Limitations

Even though the DateTime class is a subclass of datetime there are some rare cases where it can’t replace the native class directly. Here is a list (non-exhaustive) of the reported cases with a possible solution, if any:

  • sqlite3 will use the type() function to determine the type of the object by default. To work around it you can register a new adapter:

from pendulum import DateTime
from sqlite3 import register_adapter

register_adapter(DateTime, lambda val: val.isoformat(' '))
  • mysqlclient (former MySQLdb) and PyMySQL will use the type() function to determine the type of the object by default. To work around it you can register a new adapter:

import MySQLdb.converters
import pymysql.converters

from pendulum import DateTime

MySQLdb.converters.conversions[DateTime] = MySQLdb.converters.DateTime2literal
pymysql.converters.conversions[DateTime] = pymysql.converters.escape_datetime
  • django will use the isoformat() method to store datetimes in the database. However since pendulum is always timezone aware the offset information will always be returned by isoformat() raising an error, at least for MySQL databases. To work around it you can either create your own DateTimeField or use the previous workaround for MySQLdb:

from django.db.models import DateTimeField as BaseDateTimeField
from pendulum import DateTime


class DateTimeField(BaseDateTimeField):

    def value_to_string(self, obj):
        val = self.value_from_object(obj)

        if isinstance(value, DateTime):
            return value.to_datetime_string()

        return '' if val is None else val.isoformat()

Contributing

Contributions are welcome, especially with localization.

Getting started

To work on the Pendulum codebase, you’ll want to clone the project locally and install the required dependencies via poetry.

$ git clone git@github.com:sdispater/pendulum.git
$ poetry install

Localization

If you want to help with localization, there are two different cases: the locale already exists or not.

If the locale does not exist you will need to create it by using the clock utility:

./clock locale create <your-locale>

It will generate a directory in pendulum/locales named after your locale, with the following structure:

<your-locale>/
    - custom.py
    - locale.py

The locale.py file must not be modified. It contains the translations provided by the CLDR database.

The custom.py file is the one you want to modify. It contains the data needed by Pendulum that are not provided by the CLDR database. You can take the en data as a reference to see which data is needed.

You should also add tests for the created or modified locale.

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

pendulum-3.1.0.tar.gz (85.9 kB view details)

Uploaded Source

Built Distributions

pendulum-3.1.0-py3-none-any.whl (111.8 kB view details)

Uploaded Python 3

pendulum-3.1.0-pp310-pypy310_pp73-win_amd64.whl (261.1 kB view details)

Uploaded PyPyWindows x86-64

pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (526.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (524.9 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (326.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pendulum-3.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (339.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pendulum-3.1.0-pp39-pypy39_pp73-win_amd64.whl (261.2 kB view details)

Uploaded PyPyWindows x86-64

pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (526.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (525.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (327.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pendulum-3.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (340.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pendulum-3.1.0-cp313-cp313-win_arm64.whl (253.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pendulum-3.1.0-cp313-cp313-win_amd64.whl (260.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pendulum-3.1.0-cp313-cp313-musllinux_1_1_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pendulum-3.1.0-cp313-cp313-musllinux_1_1_aarch64.whl (521.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pendulum-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pendulum-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pendulum-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pendulum-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pendulum-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (323.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pendulum-3.1.0-cp313-cp313-macosx_10_12_x86_64.whl (336.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pendulum-3.1.0-cp312-cp312-win_arm64.whl (253.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pendulum-3.1.0-cp312-cp312-win_amd64.whl (260.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pendulum-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pendulum-3.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (521.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pendulum-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pendulum-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pendulum-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pendulum-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pendulum-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (323.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pendulum-3.1.0-cp312-cp312-macosx_10_12_x86_64.whl (336.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pendulum-3.1.0-cp311-cp311-win_arm64.whl (253.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pendulum-3.1.0-cp311-cp311-win_amd64.whl (260.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pendulum-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (525.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pendulum-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (524.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pendulum-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pendulum-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pendulum-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pendulum-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pendulum-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (325.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pendulum-3.1.0-cp311-cp311-macosx_10_12_x86_64.whl (338.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pendulum-3.1.0-cp310-cp310-win_amd64.whl (260.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pendulum-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (525.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pendulum-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (524.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pendulum-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pendulum-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pendulum-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pendulum-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pendulum-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (326.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pendulum-3.1.0-cp310-cp310-macosx_10_12_x86_64.whl (338.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pendulum-3.1.0-cp39-cp39-win_amd64.whl (260.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pendulum-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (526.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pendulum-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (525.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pendulum-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pendulum-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pendulum-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pendulum-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pendulum-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (326.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pendulum-3.1.0-cp39-cp39-macosx_10_12_x86_64.whl (339.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file pendulum-3.1.0.tar.gz.

File metadata

  • Download URL: pendulum-3.1.0.tar.gz
  • Upload date:
  • Size: 85.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0.tar.gz
Algorithm Hash digest
SHA256 66f96303560f41d097bee7d2dc98ffca716fbb3a832c4b3062034c2d45865015
MD5 7aa153d833c78de1928f8f277a362628
BLAKE2b-256 237c009c12b86c7cc6c403aec80f8a4308598dfc5995e5c523a5491faaa3952e

See more details on using hashes here.

File details

Details for the file pendulum-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: pendulum-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 111.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f9178c2a8e291758ade1e8dd6371b1d26d08371b4c7730a6e9a3ef8b16ebae0f
MD5 48e5623a77f260cd0db766f133f74f5d
BLAKE2b-256 6e23e98758924d1b3aac11a626268eabf7f3cf177e7837c28d47bf84c64532d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-py3-none-any.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd701789414fbd0be3c75f46803f31e91140c23821e4bcb0fa2bddcdd051c425
MD5 714610f043b31f1d4d7758af2a50c036
BLAKE2b-256 4827d3577a5f6f7d1fbf1138d87ce21ebab363c78642513b991d1c424d658d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24a53b523819bda4c70245687a589b5ea88711f7caac4be5f276d843fe63076b
MD5 28abe1f9b81de6a21c79a310c9e6f6e6
BLAKE2b-256 938704e74600c5a5674e5f341b8888b530a9de9b84b31889f80fac3bee3e9e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a3be19b73a9c6a866724419295482f817727e635ccc82f07ae6f818943a1ee96
MD5 2d02eafb6144dde03924f5678f8747b0
BLAKE2b-256 bcd4e63a57df65e2b2d10f3aa917a4069be9abf5ac7d56d11336e0510742d8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9e9b28a35cec9fcd90f224b4878456129a057dbd694fc8266a9393834804995
MD5 2b9fa370b46e61c61e158a6096b0e6cf
BLAKE2b-256 ed91ee857bbd51168bf08b89c3a4705c920725eee0f830ccc513b8370f6ce71d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebe18b1c2eb364064cc4a68a65900f1465cac47d0891dab82341766bcc05b40c
MD5 274cf96f4a844f5c442c7f73e84fbf84
BLAKE2b-256 0a2e448abdebc11b9c54e190d273cb084162643199fc184cb1bb6bff7900e67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffb39c3f3906a9c9a108fa98e5556f18b52d2c6451984bbfe2f14436ec4fc9d4
MD5 d944f414660008fccf34b1b79f68ffd5
BLAKE2b-256 98d598a1a10cd1cfb3390fbf070864e9a10de8e70a9d4509832132f4d900d655

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2cac744940299d8da41a3ed941aa1e02b5abbc9ae2c525f3aa2ae30c28a86b5
MD5 c6d99300c82f1faab483a9c84e9e73cd
BLAKE2b-256 66103258c084653606d2be2c7168998eda4a57cf1559cecb43cf1100000fda5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3363a470b5d67dbf8d9fd1bf77dcdbf720788bc3be4a10bdcd28ae5d7dbd26c4
MD5 fc96e27bca0ca55545c4d3623000b80f
BLAKE2b-256 50d94a166256386b7973e36ff44135e8d009f4afb25d6c72df5380ccfd6fbb89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e4cbd933a40c915ed5c41b083115cca15c7afa8179363b2a61db167c64fa0670
MD5 c9022e679ef1df4930d22709b4f3a8a5
BLAKE2b-256 0bc7d3654a790129684d0e8dc04707cb6d75633d7b102a962c6dc0f862c64c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c1354be2df38f031ac6a985949b6541be7d39dd7e44c8804f4bc9a39dea9f3bb
MD5 e5c92d5e8cf9da135980437ba5f81105
BLAKE2b-256 d9aa0e3c231a7e35b362226204d7276a47c0e225aa59b30c7c9cd2a8e2660967

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5bce0f71c10e983e1c39e1eb37b9a5f5c2aa0c15a36edaaa0a844fb1fbc7bbb
MD5 7fe77c692d886263c6fbe4044d4436df
BLAKE2b-256 b48f938b83fe3e1450f4b04d1f96e8b2c288e07ad6b942260fef24cfd98cc3d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2cf8adcf3030eef78c3cd82afd9948cd1a4ae1a9450e9ac128b9e744c42825f
MD5 728011a697cae41d95bc15aee5b0c6dc
BLAKE2b-256 fef2550855e0285671278f763963b2470f437d340759aaef927fedb204e58fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cceff50503ef9cb021e53a238f867c9843b4dd55859582d682f3c9e52460699
MD5 3cc940fca5669359deb30383b15579f7
BLAKE2b-256 dd90957491643cff9d97764e443bd0ef7c5c549e733e306159d6ca8ab4034fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0803639fc98e03f74d0b83955a2800bcee1c99b0700638aae9ab7ceb1a7dcca3
MD5 c29a29cb4245bf4c00e90dd98d3d71b5
BLAKE2b-256 538f6620b0df6acdd8c020ec4f5907e3deb8c6d46970568299b66eed9b5f53b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 253.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1ce26a608e1f7387cd393fba2a129507c4900958d4f47b90757ec17656856571
MD5 6d7b1fe1e000e7694615bde8d6ad1144
BLAKE2b-256 15c3226a3837363e94f8722461848feec18bfdd7d5172564d53aa3c3397ff01e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 260.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8539db7ae2c8da430ac2515079e288948c8ebf7eb1edd3e8281b5cdf433040d6
MD5 58163d8368e1d13d73487987c98b36b4
BLAKE2b-256 51898de955c339c31aeae77fd86d3225509b998c81875e9dba28cb88b8cbf4b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7378084fe54faab4ee481897a00b710876f2e901ded6221671e827a253e643f2
MD5 51ff1781fd4cb5938ecb7ab4dee8c10c
BLAKE2b-256 01332c0d5216cc53d16db0c4b3d510f141ee0a540937f8675948541190fbd48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8dee234ca6142bf0514368d01a72945a44685aaa2fc4c14c98d09da9437b620
MD5 5e72d867bdad9c9d13b62a4cfc82c927
BLAKE2b-256 f497aba23f1716b82f6951ba2b1c9178a2d107d1e66c102762a9bf19988547ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5553ac27be05e997ec26d7f004cf72788f4ce11fe60bb80dda604a64055b29d0
MD5 eacf26884d088b087fb34621f04897d7
BLAKE2b-256 eba0ec3d70b3b96e23ae1d039f132af35e17704c22a8250d1887aaefea4d78a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94751c52f6b7c306734d1044c2c6067a474237e1e5afa2f665d1fbcbbbcf24b3
MD5 95ebd7c5d25e3561e1a6ea4587024162
BLAKE2b-256 620ba43953b9eba11e82612b033ac5133f716f1b76b6108a65da6f408b3cc016

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d06999790d9ee9962a1627e469f98568bf7ad1085553fa3c30ed08b3944a14d7
MD5 58c2e2a8e42f7bffaa3ae27649c8c3d3
BLAKE2b-256 38cfc06921ff6b860ff7e62e70b8e5d4dc70e36f5abb66d168bd64d51760bc4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2404a6a54c80252ea393291f0b7f35525a61abae3d795407f34e118a8f133a18
MD5 89c211c0bd086954ea6be5e94e4572cf
BLAKE2b-256 6419c3c47aeecb5d9bceb0e89faafd800d39809b696c5b7bba8ec8370ad5052c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b114dcb99ce511cb8f5495c7b6f0056b2c3dba444ef1ea6e48030d7371bd531a
MD5 b073977977b1a32d355323ca4ee4f6e4
BLAKE2b-256 b616b010643007ba964c397da7fa622924423883c1bbff1a53f9d1022cd7f024

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28658b0baf4b30eb31d096a375983cfed033e60c0a7bbe94fa23f06cd779b50b
MD5 69b5ade42cf9f4114674405f265234bc
BLAKE2b-256 8e1faf928ba4aa403dac9569f787adcf024005e7654433d71f7a84e608716837

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 253.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 006758e2125da2e624493324dfd5d7d1b02b0c44bc39358e18bf0f66d0767f5f
MD5 fd4f7125482cf3c33823d078674acf68
BLAKE2b-256 02744332b5d6e34c63d4df8e8eab2249e74c05513b1477757463f7fdca99e9be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 260.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42959341e843077c41d47420f28c3631de054abd64da83f9b956519b5c7a06a7
MD5 b5ee8a1c0caa662efab5ec5f5aa3159e
BLAKE2b-256 99f3aefb579aa3cebd6f2866b205fc7a60d33e9a696e9e629024752107dc3cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 350cabb23bf1aec7c7694b915d3030bff53a2ad4aeabc8c8c0d807c8194113d6
MD5 acbc426e8f11880856b47638681e4148
BLAKE2b-256 76220d0ef3393303877e757b848ecef8a9a8c7627e17e7590af82d14633b2cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf6229e5ee70c2660148523f46c472e677654d0097bec010d6730f08312a4931
MD5 6e54b8869ff556a672ccc1131970a3bd
BLAKE2b-256 3077c97617eb31f1d0554edb073201a294019b9e0a9bd2f73c68e6d8d048cd6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20f74aa8029a42e327bfc150472e0e4d2358fa5d795f70460160ba81b94b6945
MD5 3c39bef11bd6a31bacd830a2e40b0046
BLAKE2b-256 875df7a1d693e5c0f789185117d5c1d5bee104f5b0d9fbf061d715fb61c840a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9af1e5eeddb4ebbe1b1c9afb9fd8077d73416ade42dd61264b3f3b87742e0bb
MD5 51d825f2c084e6d32b6778caee79c725
BLAKE2b-256 29685a4c1b5de3e54e16cab21d2ec88f9cd3f18599e96cc90a441c0b0ab6b03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e3f1e5da39a7ea7119efda1dd96b529748c1566f8a983412d0908455d606942
MD5 b372710948a954fb11b04d7b17ea22ba
BLAKE2b-256 b57beb0f5e6aa87d5e1b467a1611009dbdc92f0f72425ebf07669bfadd8885a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e68d6a51880708084afd8958af42dc8c5e819a70a6c6ae903b1c4bfc61e0f25
MD5 e2a87e066dee49e55b65c11d56bc8d36
BLAKE2b-256 c06195f1eec25796be6dddf71440ee16ec1fd0c573fc61a73bd1ef6daacd529a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a6e06a28f3a7d696546347805536f6f38be458cb79de4f80754430696bea9e6
MD5 c33ddd6804d0fedd32635c51a8b43bd9
BLAKE2b-256 eb870392da0c603c828b926d9f7097fbdddaafc01388cb8a00888635d04758c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dfd53e7583ccae138be86d6c0a0b324c7547df2afcec1876943c4d481cf9608
MD5 b2002aaedf6ffe5e36aaa67b830ff038
BLAKE2b-256 7ad7b1bfe15a742f2c2713acb1fdc7dc3594ff46ef9418ac6a96fcb12a6ba60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 569ea5072ae0f11d625e03b36d865f8037b76e838a3b621f6967314193896a11
MD5 86362a08ccc176fa2e08f2fad9099c33
BLAKE2b-256 c17fffa278f78112c6c6e5130a702042f52aab5c649ae2edf814df07810bbba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 260.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43288773a86d9c5c0ddb645f88f615ff6bd12fd1410b34323662beccb18f3b49
MD5 631574ba70a7257a5585bc371a4defd8
BLAKE2b-256 0de04de160773ce3c2f7843c310db19dd919a0cd02cc1c0384866f63b18a6251

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d439fccaa35c91f686bd59d30604dab01e8b5c1d0dd66e81648c432fd3f8a539
MD5 a4f5634042fc00f7fea4bf09151d7b4c
BLAKE2b-256 de45d84d909202755ab9d3379e5481fdf70f53344ebefbd68d6f5803ddde98a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd52caffc2afb86612ec43bbeb226f204ea12ebff9f3d12f900a7d3097210fcc
MD5 213990b226033de8bf7ab103505926be
BLAKE2b-256 6f0f42d6644ec6339b41066f594e52d286162aecd2e9735aaf994d7e00c9e09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d364ec3f8e65010fefd4b0aaf7be5eb97e5df761b107a06f5e743b7c3f52c311
MD5 2e62294138249243fd02963088844527
BLAKE2b-256 da9383f59ccbf4435c29dca8c63a6560fcbe4783079a468a5f91d9f886fd21f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48962903e6c1afe1f13548cb6252666056086c107d59e3d64795c58c9298bc2e
MD5 98ed15ea4b6b58de3d1166ee2bab3c2f
BLAKE2b-256 51ada78a701656aec00d16fee636704445c23ca11617a0bfe7c3848d1caa5157

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 656b8b0ce070f0f2e5e2668247d3c783c55336534aa1f13bd0969535878955e1
MD5 41abe4992bdabdbdf29b4643a8f6551a
BLAKE2b-256 9694941f071212e23c29aae7def891fb636930c648386e059ce09ea0dcd43933

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c75377eb16e58bbe7e03ea89eeea49be6fc5de0934a4aef0e263f8b4fa71bc2
MD5 29876683b5036f1f1809fbb9b9baf622
BLAKE2b-256 b0a7d2ae79b960bfdea94dab67e2f118697b08bc9e98eb6bd8d32c4d99240da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e674ed2d158afa5c361e60f1f67872dc55b492a10cacdaa7fcd7b7da5f158f24
MD5 a241d5796094498b08ef7e1cf275bd72
BLAKE2b-256 e1e643324d58021d463c2eeb6146b169d2c935f2f840f9e45ac2d500453d954c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61a03d14f8c64d13b2f7d5859e4b4053c4a7d3b02339f6c71f3e4606bfd67423
MD5 b56267583405b3d0b87202807b51a8c8
BLAKE2b-256 5e6ed28d3c22e6708b819a94c05bd05a3dfaed5c685379e8b6dc4b34b473b942

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 260.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73de43ec85b46ac75db848c8e2f3f5d086e90b11cd9c7f029e14c8d748d920e2
MD5 234a169671129e13960a0cd3f5ab95ea
BLAKE2b-256 43c5bf8ce472b81e8f5f074e8ba39899d288acce417c2c4a9ec7486d56970e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d6e1eff4a15fdb8fb3867c5469e691c2465eef002a6a541c47b48a390ff4cf4
MD5 343cd8f1af63f316c68cbba51595f74d
BLAKE2b-256 071fa3e5f08890d13d93eee725778bfeaa233db5c55463e526857dffbc1a47e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b77a3dc010eea1a4916ef3771163d808bfc3e02b894c37df311287f18e5b764
MD5 5bd6e317bb73ceaae536ba57c6bc6db5
BLAKE2b-256 3623755ef61f863b2777925171a59509540205b561a9e07ee7de0b5be9226bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca5722b3993b85ff7dfced48d86b318f863c359877b6badf1a3601e35199ef8f
MD5 95974d0a6508ef4c66a288f15ed11ed9
BLAKE2b-256 1deb3b1818a796408a250b8e6cfaa5372b991c0cbec768e02e0f9a226755383d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8244958c5bc4ed1c47ee84b098ddd95287a3fc59e569ca6e2b664c6396138ec4
MD5 6c4826a359c30467409809a39b474179
BLAKE2b-256 32bc20a87f24c26c6c4daf3c69311208b28130b4d19c006da16efc0e55715963

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3907ab3744c32e339c358d88ec80cd35fa2d4b25c77a3c67e6b39e99b7090c5
MD5 ae7cbca13a7d99061696fa7f7927358d
BLAKE2b-256 ca2400fcd6abd1f7623d2bbcca048b45f01aa8bb6b647e0477c3a8ea6094335c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbaa66e3ab179a2746eec67462f852a5d555bd709c25030aef38477468dd008e
MD5 98427530567f8563804029255ca24749
BLAKE2b-256 539f43a5a902f904e06252c259c2f6cf2dceafbb25aef158df08f79c0089dfd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 299df2da6c490ede86bb8d58c65e33d7a2a42479d21475a54b467b03ccb88531
MD5 6811cae5ef26b235cf010cc4118e5505
BLAKE2b-256 aa9da125554919c6db14e189393254c7781ee98ed5a121b6c05652d353b03c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa545a59e6517cf43597455a6fb44daa4a6e08473d67a7ad34e4fa951efb9620
MD5 f8334a589c611dec6bd592f291146bf2
BLAKE2b-256 b4d8398cd27903a6899d0ae47b896d88e0b15849fc334931a6732e7ce3be9a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 260.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 300a237fb81028edb9604d4d1bb205b80515fd22ab9c1a4c55014d07869122f8
MD5 64a641271d8e521ef85d570aaf0b7dd5
BLAKE2b-256 c6bc1fbc57b2e482a0ee3b5a0759c4b3b5127f0401cdce4afef111a3b6179d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0da70941b062220e734c2c510ad30daa60aca1a37e893f1baa0da065ffa4c72
MD5 afc7d13b570e3440eb1387e048578dc1
BLAKE2b-256 44c0a503df53796b0dc1dae7d50573d936f86f8f482cf4acd9adbbd2a30ef817

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bfac5e02faee02c180444e722c298690688ec1c3dfa1aab65fb4e0e3825d84ed
MD5 1dffaaab516889defff9961f0d0a71dd
BLAKE2b-256 e6cc8d2ed88beab1622623e321bd1f754eee174bb97e6ffcd34ceb9cce87a4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a7d0bca8cca92d60734b64fa4fa58b17b8ec1f55112bf77d00ee65248d19177
MD5 c52f67ea92ec1dd3e5daf8b4635b9788
BLAKE2b-256 041f007dff40bb0325ae91eba3d4d6ce911945d808f87d3cebaa4556ca07f35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e44277a391fa5ad2e9ce02b1b24fd9489cb2a371ae2459eddb238301d31204d
MD5 ef64bcaa3bee30ac9ca46109ce128d2c
BLAKE2b-256 bd950660ae5dbe9212c99fbccb27ca64361018600aa954fab95641653a39ce36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 784cf82b676118816fb81ea6bcbdf8f3b0c49aa74fcb895647ef7f8046093471
MD5 56b5db1b8230b3c10cd0e74ff3217868
BLAKE2b-256 55cf771d1fee8d14abefbccbed99622c6f26e33b839b8964a18188b4f9159bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87b277e9177651d6af8500b95f0af1e3c1769064f2353c06f638d3c1e065063e
MD5 f22cd74f5c4292dbf70798b1c1febfc9
BLAKE2b-256 15da80774350340e9d06789460b6e8def2d497cffe09334a8911be8d226caec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4041a7156695499b6676ed092f27e17760db2341bf350f6c5ea9137dd2cfd3f6
MD5 c186e571af6b4793f5a966cdf75848ff
BLAKE2b-256 2fc3a7f515c6dbe89f2d92216ccd9a2e31dd657767d7f64177da1579092a41e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pendulum-3.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2504df1a7ff8e0827781a601ff399bfcad23e7b7943f87ef33db02c11131f5e8
MD5 d55ca3fa139a6a419d4802ba8344174d
BLAKE2b-256 c9ebe128af9e1a216c17b932f8c7f1f927f97cd8fd71d6e60148e1c69ad2bcf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pendulum-3.1.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on python-pendulum/pendulum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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