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.8 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 you 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.0.0b1.tar.gz (83.6 kB view details)

Uploaded Source

Built Distributions

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

pendulum-3.0.0b1-pp310-pypy310_pp73-win_amd64.whl (295.7 kB view details)

Uploaded PyPyWindows x86-64

pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (538.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (540.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (352.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (369.5 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pendulum-3.0.0b1-pp39-pypy39_pp73-win_amd64.whl (295.7 kB view details)

Uploaded PyPyWindows x86-64

pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (538.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (540.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (369.5 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pendulum-3.0.0b1-pp38-pypy38_pp73-win_amd64.whl (295.4 kB view details)

Uploaded PyPyWindows x86-64

pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (538.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (540.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (352.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (369.6 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (539.6 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (541.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (371.3 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pendulum-3.0.0b1-cp312-none-win_arm64.whl (289.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pendulum-3.0.0b1-cp312-none-win_amd64.whl (295.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_x86_64.whl (538.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_aarch64.whl (539.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp312-cp312-macosx_11_0_arm64.whl (352.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pendulum-3.0.0b1-cp312-cp312-macosx_10_7_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

pendulum-3.0.0b1-cp311-none-win_arm64.whl (289.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pendulum-3.0.0b1-cp311-none-win_amd64.whl (295.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_aarch64.whl (539.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp311-cp311-macosx_11_0_arm64.whl (352.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pendulum-3.0.0b1-cp311-cp311-macosx_10_7_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pendulum-3.0.0b1-cp310-none-win_amd64.whl (295.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl (539.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pendulum-3.0.0b1-cp310-cp310-macosx_10_7_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pendulum-3.0.0b1-cp39-none-win_amd64.whl (295.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl (538.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl (539.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl (352.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pendulum-3.0.0b1-cp39-cp39-macosx_10_7_x86_64.whl (369.7 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pendulum-3.0.0b1-cp38-none-win_amd64.whl (295.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl (538.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl (540.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl (353.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pendulum-3.0.0b1-cp38-cp38-macosx_10_7_x86_64.whl (369.8 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pendulum-3.0.0b1-cp37-none-win_amd64.whl (295.3 kB view details)

Uploaded CPython 3.7Windows x86-64

pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl (538.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl (540.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pendulum-3.0.0b1-cp37-cp37m-macosx_11_0_arm64.whl (353.0 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pendulum-3.0.0b1-cp37-cp37m-macosx_10_7_x86_64.whl (369.8 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

Details for the file pendulum-3.0.0b1.tar.gz.

File metadata

  • Download URL: pendulum-3.0.0b1.tar.gz
  • Upload date:
  • Size: 83.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1.tar.gz
Algorithm Hash digest
SHA256 5331e3106e9a5690136daf386ac78a7c7e47bd4b777b8dc8925b608633788718
MD5 4424883169e7cd96e30c3b3f799ea700
BLAKE2b-256 508d46fb2d097947b2c717475c584247e47f635e5524ff8b227f18e991e7057a

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cdac9cbf6e2e57766bd064f963ef90c33046251a0646c0a796f8b03408bd9433
MD5 b65bf49b64ec1803d1260adc746f676f
BLAKE2b-256 cf055041dee77144c4ed6f969990a90e28cbf187635d6872e957a4a2c5b33bc0

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5a8d00106888af084223470c2139327766107728fcd7a46b19252f1d878bcd0
MD5 6447618cf1bca0e6366e9983520cfa84
BLAKE2b-256 e718a16f169d4719ed2803f37cf0a216d7386eb503115646ada36f941fedac38

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5a1ddf5f34431e550daceafb202cd1cfaa31a3d3e1d53f2c76a1d13c9d2f291
MD5 6a709b6c81ead53b3850c899c20dd9a5
BLAKE2b-256 7c5e5056d7e19038a33b4f201d15fe641a7c449160c857e0a888628de5f12d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82f02593bda744900620eaede23b8f8f6d1de855cb938bc48e077d849755b4cb
MD5 9394a2bda1d1de3f761ffba6357cadd0
BLAKE2b-256 34e36c180f0ffa86a1d6e1772535d8bd9edf0385cbd899f57361cf63284ae96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea8a4bd76fc6e76b30c02cfed3e970574a9247b6dad8f02c88269e9ebbd0993c
MD5 e33eb1b520cf3d87bafa17bddf5373e0
BLAKE2b-256 fdb5c92fe4d34eb92244aedf1836cf53f4125b4adcd3deeb9fc84cac87732081

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d3cbba1716823d0d450f10bdf455d58d20c1c89f365bcbde7005bd97edd36b9
MD5 827e934862ec8cc99a3c7022035ec078
BLAKE2b-256 a716260490b7d63bad122b7e1f0dbf2d4487958b4e0ca4387fc6e1aa4da73914

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 89b4435add740a33d1b14720a6b4b471edbd7ea7ed42f44e288cabd59e00580b
MD5 1537b3b5a028a92b02c106684541d9de
BLAKE2b-256 b1e7ec8669f75e114dde31e124460a5b7c4b9293f8888044028f52e0ffa3c9f0

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 295.7 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d07dbb86984da99d12fdfffc167209bc470f48a10c3844ed5871d6987e2fecd8
MD5 08c9d255a68f368f5187cae428c5c813
BLAKE2b-256 9f9cc764ed6076629291f47a713780f464981f9d9ae68267c85a4724680b009a

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c3c3f423c4f32964ef3b8664041e13f78e80a49e554258f15b5e3b0622ccc53
MD5 d8fecab1e8593e31e5502cd9443489fa
BLAKE2b-256 0e162dfbed65cfa7a5ea896d0e69b8f12fbfe80f11616c6feef99539a5cb48b7

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9574d81702be1f6c713cbc2b5c5ce4069c6a12d7f0f9dc46847bb4e3f09b3b08
MD5 b9f7d03c859421b37351346f4c5eda2a
BLAKE2b-256 a0258fce169ddbdf9631394b5f269f81ab562f90b3de9ba9fec1f65d59a5cb7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10edd6a29dc00768c5f15f79a1ef15d7d6b8897383175ed42e9ac60db924efa0
MD5 3b0fafa45ac1a4cceaa171e3c3f38138
BLAKE2b-256 70d9c4e1ff6208a146cbcbb0083fd187edea72a5b6bf0436ef33195c6d49cb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 587c09b86e4b179b2a638ada746fba49b1c8afd9cd2a7f1d7e8939f11b2152c0
MD5 8c8acf19137191baeb9eb257b3775a00
BLAKE2b-256 2f679a684c14b1846b96b10852e49159d350c855e0d760981c2990afa3578d09

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 256fb81c43183f4f3a40bcd9fd2f0914e77eb37334376117183037cf9656800f
MD5 abe3cc1b978b3104c044d4b707a846ac
BLAKE2b-256 c49b7ed68b8a337477a6ae2694481e5f4f302ea372a0a8c6b51081d34207e44c

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4b9a841296685be7488a34b6b51df5c8f927963f9370a01f76f75ebe16bf9256
MD5 35a162f7403c837bc6a8a4ea27ccaa05
BLAKE2b-256 b36407e540fc4a4e1ab94c388b1b539b5b6230167db2b282f91ace85de17a7c3

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 295.4 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 57e14edb415d278c794d4f549c1db9e7041cc988de1bda7ca80ea43bcacbb540
MD5 b9598e84ef15adc21899c2cf1caa018f
BLAKE2b-256 d9e2393546a56fd16068890fffa8a68c3b99b5038dc47261887db9e8a3cbba99

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 543a063682d7100569242e43b05c338f91008652ae36fa6ca13b17f7fb5600ea
MD5 7377dbc3aaca1ca6842ee908e796da8b
BLAKE2b-256 bcb0d62e4b584935c34ab1dfe863a2e36265dba5e8bd05cef7cfaa74b798e3ed

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 791a3ded0929f72e8d89e567dd1f4cebb448e5f255a5c8b33f8d0485c4e40641
MD5 e423540058f7ca258742648ea1d2e7c7
BLAKE2b-256 fbf4ea634ac0af2649ea9fb0bf20c47997a9c898cb4d84bdcf59d2217c29ad89

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b624d0aed4a5b40c5f52bded4bc516c3975c3ff8f1998bf51715e37c6dfc30c
MD5 b34df7376f98d8c08dd1a342572df584
BLAKE2b-256 cb4398fbba66e7b0306f01c2c5387de47fc0eb4755562319e6d4d131f1519eec

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9ecda6e0e4f7dbdfa36ed4e92e70e921f748d4337e23ab8a9fb74b8680138d5
MD5 c34f514d4c72c2a5ee3463a597e8422c
BLAKE2b-256 a23a0d3246ca89757c897fc77b769997b92cc4f7aefbdf08ffdcd97d24a0934c

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c455f9ea9130a10cf28a082f6052064062314d87fd02b334b49cab23e033065
MD5 be511751a6008877fc1e0b42632a0ac2
BLAKE2b-256 43ff017751d3742fbd48d21dba79b13ae51833975f4366b7cf9935e2b095e6ec

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6164b7983fc04a877e4f64ee8b1a063a0e0b34056134789eb53fd3ebf1b1cedb
MD5 c115718d0f2b3323be5df6888478a1d6
BLAKE2b-256 639de2f166af83c509e29099222eb2ad57bba4e8964336b9a7f046eae6fa800b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5a0646b8f9e6d5b041c94ff0d155c9a762c7f459f9cf69804056ac0593855bd
MD5 df63386d1d685e426d27e506a9a8a31a
BLAKE2b-256 6fda463f305b6d132227365e10308939e77f0b811f4d9de1d22c0dd08eb1a8de

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db993666e3ff78e12d640b724d161fde4b96650d1261071412157e34b1aaf60b
MD5 12c6da5b0beae2ddb4a054255837c133
BLAKE2b-256 2efa868195f2dc49c47ab2f823af5478ffdc4bedba3eac2fe15a462595b556fb

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b1cc6de778a99dbea179a86e655aa24d2d6964da5db52b2e147945a108cdb63
MD5 e3b8962dcacc76b440be61c1fa96739c
BLAKE2b-256 0201f065d8c1e03a01c007ea195bfe547f008497ddf4652f3e944b4b382315dc

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 658160760a197b6e72e0012195962f3dd49efb846d8d4887d016fc7c85add5eb
MD5 7c1963e99e1a13727dfa23c6b91d2ce0
BLAKE2b-256 7fd5ad9dd3da62602a59c3d9383a417f6759cae4ead64c3ed077bebc9f26893a

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5d23a1aa69a18d168829c2d587dc450163ec8beef644058a9a6275794a1a51ba
MD5 8a5a425216976674cdf86d617addac0f
BLAKE2b-256 4a2770afafdd465de8579007b833202f65716f3bde4f54b9ed35d0ddd815593b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-none-win_arm64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp312-none-win_arm64.whl
  • Upload date:
  • Size: 289.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 bd5335f023832f49309fc9c40021a9a67ce37164c8ba394203fee3e21b081b64
MD5 972d6f13623064f4ebd91d9646db12f9
BLAKE2b-256 4d6f76d62c820da5bdbaad540cf8f6ca22ebba76d376c729797a05221f433933

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 295.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 597f12938ca48bc11f8dec3e3c742fe2ba2eec9950e1c8db2d2e739a7c62428a
MD5 10204f395ed662b98182899d02924516
BLAKE2b-256 408b71b0c95edc51257c5c2f64be6b5823cc816f65a1f50ff526d0992d48ee4e

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0fc8b3643cd04b64e5d931df94fbc1e6ee4117255f93bc2df43e177f42c6ec50
MD5 fa862bc8c047f6bc7420a6c462a561c8
BLAKE2b-256 87b54677294559d81bed70feb3c56e75a22563834216813e4c67b04781befd6f

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d12a537ff1acec48243325b15fb617795ff981efa142a9a584f5a82fc6c237b
MD5 cba07ffcff4b03292b3435bb688cb3e0
BLAKE2b-256 0d201abd8e2132332d9a989a89d652aa02562a92d9a6a69d964ecdb66ed0ca48

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c7f6453db9bccc77506fdb8ed3ca61ef7f53efced70557102114f0c811bcd38
MD5 17a729e44f0031978ce203bf2c8b49bf
BLAKE2b-256 7080f314f9e17d75c8427a164a8350cdc8eb2d8504bc515538d5197a9a1d621d

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7fc77f62b19d04bdd904a841b3e8d1ca1d726572c1d7302fee42ae9cebcbe72
MD5 d0ec99f2f474de0f253d5fda55062a07
BLAKE2b-256 f232f5957d04d8520cac4498d7f81f52a7a74e26bccbfc59a797c7a4ef3c0b00

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2f9bcf5166e025e7dfaec27263a13fd4f7deff5449bc93fcceccda3ca4a46e0
MD5 72a8d1b2e613dc5540259d29ea622ff1
BLAKE2b-256 2fa56b0031f488333e23f56b15672956741f29ad99484bcd1beecdfe526d5b90

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4cdb9a0d842e1b6bd4f414d0097ae50859b5c8c04828c58f47a1a67474e6708
MD5 1407ae9834d416b2f8c985ab65373844
BLAKE2b-256 83320a798178be7191f7dc64ce52e3c2aad4bbf6ff02880b6fd8d08ac49a4740

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5bbbec2198cdbe221d5f4a702f55a28d04a7b081ee3f1c2ef83ebec989628d5
MD5 bb0147aac80c1f506680bd66d9a9b6b7
BLAKE2b-256 1bed5653e1eaf13d315d6e8a244c507353585b4c9481eafe7e392d7967aa4b14

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2b85650e1d6171fdaa4cc29280caa7c1c8385f6db4f0b479ce74acaabe48ba97
MD5 971670b54800f142af2032d288c7a608
BLAKE2b-256 34fda5adbb62f202809fda6496cceb96dacf209e50a2efadb371d40c696d2631

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-none-win_arm64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp311-none-win_arm64.whl
  • Upload date:
  • Size: 289.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 13656868bf4190b542bf25505629b4aef24c5d737b9796b5294f94de4d405b5f
MD5 f348f18bf7fa018dbd9b6ff08f8a9061
BLAKE2b-256 5f71008b628f8f14cf410cdfa2ac72ebadfbdedfb19bc61b3eba6a5f00d02504

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 295.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 39154e7f75ee9ff12adb909374189b7ffd521b682223ec8baaf3b04f010fc671
MD5 63aa0687ba51d69bebdb935cf3979e5a
BLAKE2b-256 cab738de669f887b58c49ae9e488c141582f3619910f6277be9d4d922e4e6348

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a06c923ce1118c3e5c64d3a34ff30220eca14583cb51edcba32fdae5c0caf70
MD5 5815031e0e7d95fb8dc563ce43e3633e
BLAKE2b-256 d998201669f71b3805ac20dcbc861c725545cd382793b2289aa8cf2151f6cd3b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 917426a340bde92b03743ca2555c17892d1640de6fdb401c19ce4607ded48ec2
MD5 b6c9d7cdaf48b27b10c79707b0f4c268
BLAKE2b-256 f1f3a66739e740604595faa97bf89ad980695167b9a1d42661d43fb9012682b5

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca71f8663ddae56685e7f1c1dca5d9c008d4726b37955d97b2b52015ecc1ff6c
MD5 05504174bb6ff358f42897e69a7ff893
BLAKE2b-256 738353f961dca2ae62b32c9b7dc5496b90f6aaaf78feb62bfb35de6218a3e42e

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c58a446d0e1dad9b2c1813847b197d1f9ec1dfdea1cd7d57385591bb414b2a6
MD5 0194d5ee2578783c495aa7d3c92d6a63
BLAKE2b-256 29284034cbb2dc0a82bc647a5e8794c74137010123027d0f05c40053fdd5f3d0

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b14035b98b75d6d138045565312fef7fd55583e91bc28c27c4a98e3a4cf064e
MD5 bc5c3e51ee77c0c60c756f2e01d7ebd4
BLAKE2b-256 4c87cb2eaeb430ed0c74b3f52d0aa0a172c8d803e352890686097ca2d37e9b49

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a83877d59f663e81ef7fca483f9f8ba44c8ed843201cced92ed1298cf2ee162f
MD5 84aad23ebd126e9a2eb36b8358e899ae
BLAKE2b-256 aee08db5afac383cbf30b6a0eb5e5d2861ea10991ad7e9140db247505a1ba394

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ccc6f77da9236ef67021f356696bbdd1790dc8941bfb106a7b937dfca3a4b6e
MD5 bceb57f1dcca178f8066618ddf9c882d
BLAKE2b-256 00e2d1f65209c3b9b220457c01f80bd5752a66543647649c45fb1d092b54b4ac

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 75753c75d5fd8b69b2207afe5d831527a26ff647207a0bc9d9c575f02439a284
MD5 8ffc26f4133770fd587582f025335309
BLAKE2b-256 15bedb6a562ee666463d3afdfddc6d539102f5252404d430981283bbe3e378a0

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 295.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ba8d8ef32b056dc7e31c5b5ac99186786360fc10993e3dfa0f2d78d23bc74ccd
MD5 af9200825b380b69828a4af8ec4ab56c
BLAKE2b-256 87fda9a13098b022227355c90e164390162ccceaff9f1f79be8ce34502f627ab

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d107bf9985a2620cc25c4d4e89638c14b78e571a0a6c02b5982cf31146744c73
MD5 2f005d743baaad9b1d56450711be4f62
BLAKE2b-256 509dcadb00479c846f5da91cbd2415f374cea5382fe76b8ebc823c01b6f89d61

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47f75b13e69780a26c3f9227695e80fc49f0498b2635483ae9b17843319f018e
MD5 664e67dcc3f5dc7718fecf5ca1a29885
BLAKE2b-256 34303c68d73313db5b68a9b0551653f506e73b0c9b31fc5f67a6869c38c1e869

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ff2cda697eeec55a2de4bbcb94bc941b2fb28cb6fa2b7d2d4098505892e555d
MD5 65abcd3d81003484bc1febbdeddd6408
BLAKE2b-256 0dbdb5ba85f5d71214a011fe01416351791bd1cc16cb2dd243861d731030403b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a57ca5b9b66674b382f6b429462d4ed2a998e7a1a39d099e23bd056576c44ddd
MD5 68406f33878370a54cba1fd3c2285347
BLAKE2b-256 458ce44e512319a7710cd28c880a299e5a86ef90205608e653f1625ca29f8750

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81c1eecbaedaee5712e643098253f8fef74d4e56800a85f0609bec3da6ed6f85
MD5 20f0a92ab8a94d71d7869830b7aa8b1a
BLAKE2b-256 1f115fa095b1b4eca922a47e1071319a1fa127002f25e5b514d2c93ea0faa08e

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83b0c99a83ff19165707956d45d8198895d35d6acf3cc6072a7342c7b7423f9a
MD5 587359f80db87fb4a31388f6ea7c515c
BLAKE2b-256 b6b28e71c025f3f86527c8f4de3b029a3a5768244da26090273f701da46ae5d9

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce5cf4be2525077cc25361ae4c05e2835f960476ad8df3152a30bc654531b8e
MD5 5a6cb7460be0d069b01d2d554ae2f4af
BLAKE2b-256 78dd4e88e7a3928104834ad8488eb7921c3ded960e50d6c2bbb24882ee58435c

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a0f6c73bb7e551da0dabc133faedeea48b4f47302d1432d467fb42859ecbf7c1
MD5 05eaa35795e47410c18fa04af0689706
BLAKE2b-256 0c7479831c6386aa2a7a57d3736b7074c8d45c9fcdf638c32ba9364b36e95b93

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 295.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a772c98f724d923bfccbd2a89e2217c2949ab582e4ae784671cb4bdc9be98b5c
MD5 fece6b1803470fb47b1cafdd0c1b1f36
BLAKE2b-256 e4977ab22337b36873c3419f623a09ad806da50c4769b47473bb22d0b171670b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 538.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76f158cf8fbd81803303a635e1b617bdac76bb81f78fb4db9a651167043108e2
MD5 4b8f00aa960f2899e21717f067d7262f
BLAKE2b-256 db136d653c2d7825a75c0107b99e9f8184682f5ca66b0e740de696461d7bb33c

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 618e65a703b99c1792a7090ae56c8c7c0220ae58aa363ed2eff95c8562acd02f
MD5 1a0858ec5cff15c6599b3b5f67a5ad0d
BLAKE2b-256 34d708fb4b92d785b79d3e697fb51b6adf19c6991f17599e8602c0e5fc8f0b0d

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e8c406b7c3dedd7db0eaa8f83cc2b78e594aaa424f3e064e38e037bb65a3191
MD5 8fefd8512541cd2dce6d236fac5bb959
BLAKE2b-256 c8d2ac28ff2d2a3db890a5bc773d04842a3b531885a6e221066114b018129ad3

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b0f6d812a87225c0af2d342dbe428bcfd2eec2dce76a21042881f5ee130b02a
MD5 0f1437e11fbb35c5d5e93ad01cdaa6c0
BLAKE2b-256 ee4dd822b5b179fd1c92a89d6b19a7c904cb7390f96e5487550ace0e806855cb

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6b5721fd4f1718326461b2b04a24c0aaec11dfb650dd90ad1185c270c066397
MD5 81d37af7e15a449272945abd988ef100
BLAKE2b-256 30bebc35b8b476e6830cdcb643a8b5cb4e3c35505227f545937364aa34d64ecf

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ece9f0bf5d2c2ed3c8ca9d0cfe759c2b80c2c0f599e92a8d2cd747d7e358f46
MD5 991133923fb91c1bf91a719287c35bc0
BLAKE2b-256 8ea25dcea02aa7042f7409a8d19831217799e484a2b65f533782ec2d46f1e29c

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 352.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbd44cd66bf8d81fe2482d9ae8b4ebb7ddf3c34dd0a7e96a6ad57da8ec424602
MD5 9c2525f3ca9700c622e2746966d98114
BLAKE2b-256 7fa7dfe1e3825a9d356b9af97ae193e661fc761508a66d90ad7b48b1022612bd

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp39-cp39-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.7 kB
  • Tags: CPython 3.9, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d6e583ab1bfeb77943a485d60cdf0172d0d6be0b175265f7826ec105937981ba
MD5 2930ea10c83c2eef1e01707cc26cb83e
BLAKE2b-256 110082871f8ff130e907a699fa76fb991e48b38bca6db3cf3e35ffdfb8959b06

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 295.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d562c48affb35fae42ad71c4c5dc445e4a39d4a32ad475b78d66cbd6f217d49f
MD5 d73a7a854aee5225bc84d15d6e6cf7fb
BLAKE2b-256 aec07e703aac4fa6b79ee0031c3adaa81a76add52c9b04aa1f00042354f4e1e8

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 538.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2364a38b60968c67ea96164b166a9b00e6e6cd05e379f9b38dae51a0d027e6b3
MD5 8f6fcfb12d380e94337285d25fa6fa39
BLAKE2b-256 eae1842260735a359ed7348c058794631e5717290c759f7960174366bff1c26a

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 92fc9245fea1bb1ddc4cb3b55577a8f1e8c143f9237343bd55b156d3e9b23078
MD5 9dcf70e889c185513178c35c4f29e4f3
BLAKE2b-256 853d39aa97262969086f14fe46149cc98cc00394bc14c673ad1d036c4d265b2b

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 695b183356bd74f2bd6b665743f1fa6cb21285e15c1154a9d60188ebd356abd5
MD5 2983b59a1b682875078c3ed897db690f
BLAKE2b-256 1baf817b8e72b5d1eeab94ab7fe2b46c1fc834d0dc1a11bb1022ca6962794799

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8a0ead27e7bf8544f1aea9676f60425416a50f44a908afe1008a40a4c45b499
MD5 b1097d63230011a6cf6a794db684c784
BLAKE2b-256 0310d0e7e6a03e471c8bdecc7aceeda0b98142937dd5b955aabdeeea7f5c1391

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dbcbad29f338dd90ffe9a3235c283a2a01f8e565c02ace69b84a3ed049cb9bc
MD5 40c5e6a2b45bf58bd892e27c643518bd
BLAKE2b-256 afd25e58ef4fb20527091de0e19a68cf1f8e94a98242163181e167d4f05843c5

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32f2568b295f1f4571354edc4b106ed63a5e4d0916b977fff863f7b1c937968b
MD5 42a802eb97ceb82ba18a90f3ab064210
BLAKE2b-256 11631bd3df255e2376982fbe057d9d75a97abbc8ed1f53b7c8cbbbaad8e8fcbe

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 353.0 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c67e7459e4875dda15e6dc59e990872fc5c25c5aac9e0bdeae213e902ebbce46
MD5 eadec5144f916c8b000e0cb807da73ef
BLAKE2b-256 a488d8afb06b8c19618d4a494956b9d6b7c43cedd77b1173c3677d6f0fcc0b8f

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp38-cp38-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.8 kB
  • Tags: CPython 3.8, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e3793a3511657e1b7be6c1d157915a52de5a6aea789f7452a393138cf1532311
MD5 d2632d5700caf35c575735249634df30
BLAKE2b-256 69e993b3b383a7a5c870b09ac78491671701b7d90acf32a4655bde1325a6ed91

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-none-win_amd64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 295.3 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 0fdb0b98ab23dd9f134e80d18562bc17bf31c4e38b604d822fd87d685df4a984
MD5 1fbd876f7679900220fbe76eb2525220
BLAKE2b-256 10ad7a34097f6a49a89b79b3795edfff7b2199218316f5fbdc2dd1c5535ed128

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03080a6b7f1b500b4b966d0f107f19e12386fbd8df477ed2aca9f2c1ea0f0a71
MD5 ca49f7d71fb9cbee401b10ca2e0af708
BLAKE2b-256 e6c39c888613ba7af09c103ab57c82b52795811f7ee59869d73b425f63d784d9

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ca2e5efc5d27a45e600a48e2ae750341235323da038c11e07ea3c722977d97f
MD5 601a62c7db53f0375d302a6dd716552e
BLAKE2b-256 de1b2d20a83e5a37fbb02941e3a4c2ba4b8dbc447e84df980ec3350ce3de9008

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d43b37204f47cce0a84d5b4131facdc57bad2e8fef8069249098458f60997b
MD5 66107df79577a736071797a1a979fdc3
BLAKE2b-256 52a26e378dd37b1ef4f4b602111496e557c21541c2e2673fd1c60a6c488c3622

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 681eb3ac31638170e1cb3ad83a916a8de1677638db8378a103f972980655742b
MD5 f7132999c492be98cd000ba8017c97c8
BLAKE2b-256 5888ea7b55833cc6fcad20eefa2c179aa28be18bf79b65a669b0c1d3d5c30d10

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba758a373ab3e3ef377d3c1ea4d6d54f27459f0b722e9abad55178b1be6b9d04
MD5 437198c17895475caa47406154a707c7
BLAKE2b-256 78662e28ad3ce11e71e5db0ed042736f449ce167b215fa5b8e7a779b5443f657

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db8b46f257a436752f78024dd8677e8e4cc15c759fb4a7ceaa258bf9741bf5dc
MD5 5450173d7a953e23cd64bd6da6538206
BLAKE2b-256 41ae54c6f649620d4054a359f11d99751067d66780db66a311c87fb44d601d11

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp37-cp37m-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 353.0 kB
  • Tags: CPython 3.7m, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30dce113b94cc05353651573a4336fe04e97260befcfd1d618ce632aa3fc7d2f
MD5 8c4a530f049896588ea2a98d3144f622
BLAKE2b-256 f45560638dd7d926b867e5a5723d774b5285bdc8d4df8a32f63ad1ee3b60aede

See more details on using hashes here.

File details

Details for the file pendulum-3.0.0b1-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pendulum-3.0.0b1-cp37-cp37m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.8 kB
  • Tags: CPython 3.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure

File hashes

Hashes for pendulum-3.0.0b1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6b80fa0186b964cafba0c7709b083f5f8f79934c758e23b065d975e9289cf813
MD5 4d4ac1922c57b878a26039a76fc1a55d
BLAKE2b-256 3d08aa4e7ca268f12df70ec21bc3fcfdf681cc457ec1d22bf5608de596fc20a3

See more details on using hashes here.

Supported by

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