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. It is a fork of original pendulum that supports Python 3.13

>>> 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

dlt_pendulum-3.0.2-py3-none-any.whl (109.8 kB view details)

Uploaded Python 3

dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl (256.6 kB view details)

Uploaded PyPyWindows x86-64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (518.4 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (515.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (323.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (334.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl (256.8 kB view details)

Uploaded PyPyWindows x86-64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (518.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (515.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (323.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (335.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl (248.9 kB view details)

Uploaded CPython 3.13Windows ARM64

dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl (255.6 kB view details)

Uploaded CPython 3.13Windows x86-64

dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl (515.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl (511.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl (319.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl (331.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl (248.9 kB view details)

Uploaded CPython 3.12Windows ARM64

dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl (255.7 kB view details)

Uploaded CPython 3.12Windows x86-64

dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl (515.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl (511.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (319.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl (331.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl (250.6 kB view details)

Uploaded CPython 3.11Windows ARM64

dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl (256.2 kB view details)

Uploaded CPython 3.11Windows x86-64

dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl (517.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl (322.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl (334.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl (256.3 kB view details)

Uploaded CPython 3.10Windows x86-64

dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl (517.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl (515.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl (322.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl (334.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl (256.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl (515.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl (323.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl (335.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file dlt_pendulum-3.0.2-py3-none-any.whl.

File metadata

  • Download URL: dlt_pendulum-3.0.2-py3-none-any.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for dlt_pendulum-3.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5d95953c9e7ffaef7a7c97d25e95b854e5aa4b072201dd61c942090cf6347f6f
MD5 05862d2a18f60cfbdd243c2721a3c21f
BLAKE2b-256 911bf54ae6b98800044f4c9834fcd65cf4c4caa1f87fc6e83ac6a423353169b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-py3-none-any.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f693bd8c2f0cab6b2a19166c77054857b571511107585a4e3ea9d0c166f820e2
MD5 ba936b3990691e30eb56877c01c773fe
BLAKE2b-256 eab807f05dce706e65a5e3b56c02923e408c380523c4efdad090566e3f64db9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3bda319216948917a5ef93c4ea9c86b4a6bdc97c1fdf02daf17a18daec9df218
MD5 fb8603296fedd3b7e507071bcfeae72c
BLAKE2b-256 67f53161fa22f4df23937b183013d4acc4a4321ed33bb1d570e09786551aa1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c65b3e3ec9df89f97c5c6f31e192ec2705e92421b86228d341ce98df119e96d
MD5 812b402c80989c5c643ce64020d28531
BLAKE2b-256 06540ed389e6314920e85bd9c195187399d4737379526ded2e5d9ff72bd5c35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 389182056f889c5fe551200bcc7f821d3e54e124125af95f7538df0fd7b3052d
MD5 b194b03050582dfec4576085d59dad81
BLAKE2b-256 d0dfa5c4225d50032a5549db2ac4caaea791b3be7802e677224d9c7229e91350

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea1335fa358b33dedd0765ab15292d3e6c29c9a02d672a12b2ec766e7a92830c
MD5 732bb3b7cbd00813770a725a60e6fec0
BLAKE2b-256 ee7698a7eb19b08d853839f727cc4a89169528bedf1f7fb7c77ff37f4d53d1ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 898b944850fda027dbbbf635757e89220e90ac599a9c240dee01e2b191398ff5
MD5 8697231f77be3db201874ec67ceff406
BLAKE2b-256 48062ad92f9aa0198ba0cb5b410bb4c6ac365cf091bc4627571b27850615adb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84de2669352881ae6f5aebf17f109ee5ef4302a7a5807f72e643ea7675dbc54b
MD5 233b0146a82ed2f918b51b9e9ace2f0f
BLAKE2b-256 180162aefc7696fac788fceca13a10dbe065cdc9c351aecba62f6a9b7d5307f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b3236ccce1d00eb7a956cdefdef77cda8c51c281c2642fb9c60f8e9aacc9b69b
MD5 01d612f8cdb5ea874f171a11a5cc63de
BLAKE2b-256 36114922fb2c9c1963417ef5d5d74d72b073b519ae0481104b018431292a0e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e47ea014c41bc2cd64786f2607a64ae9a09ac7226d8ab03438f0677b517499e
MD5 5cf98e44ddafb08b97d9418b2dee7840
BLAKE2b-256 0d8ca43dabe8d17c4d74976617880a4bf6d994a8ec04bc56213a7ff4f8862f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b13e7ccaf2e90a1bd9b022c3087a5be422a5a35ca6deb662ea9100e5d8f18a17
MD5 ca13cfd3c7964bab2713202efc7eb639
BLAKE2b-256 345714f934d1ced1a9cdb711ea9e5e6b202b92ab995dbb87b2caf58ee79c10d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef2009fd3cbe55742cb8e6ae2e13193ead9d29eece4e96f4871d325e5f80df57
MD5 939dfacca1f949c186132b7c0d7f578e
BLAKE2b-256 959ac8ed2dc7895e9d74b73649aeabe68cf549ec1c5a3b4364b76bca19585ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6c3e0abb02f7d7d82d12afac102c83c032d92ade32bcb054d1dfc8bb46153c3
MD5 44f0ba70abab2682d724cc5fea13f36f
BLAKE2b-256 d431051780d7389e278daa8587a63f0dfc31d3819807dce639f4882493a33750

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb960ca1a8320b114f93c3da16c2d6c45372830b56b2624ee51c1bf605d50234
MD5 a3020e648275c812c5a3f0804e2ed56b
BLAKE2b-256 d92f23fb7b737f12ccad8bb86ca5ced2adfdf1c04a1db33fc75dd84718d003ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca5426a96ba5ef02156251350eebab9b4d265b0373b3dc00035d401103c36e6e
MD5 7ecd685c15a965ac4d8d533025e98210
BLAKE2b-256 bf2384b886db03cbe50aed632ca3b95e7f545ddacc80b9ed3b764e04cc2ba568

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 016e2055964eb33ca3636dc580e4f8f5923285cfc3597e46ce053bbad84b0611
MD5 a41a599f97d8d2be4d3c3a5d8de2c334
BLAKE2b-256 7a3ea9d83ab73177b24daa6d81e25f9811250edf1a9570a5614cfc08857a9da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6daf6ff583c2e0f03de0f6f8b07eb8db7f4913180cd2c5357014671bf8c6b460
MD5 3e543b34c1d581599aa666c649d753de
BLAKE2b-256 51f61df8146baeb4f5d3c9e59050e445502a764408b004cb4ef520eadd778b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ea898cf16d8e3d5064041ef775889103ebddb9c094d8198ee732eee5169301c
MD5 9a8ba6eb8cb098b0d923b8eb7aa2b46e
BLAKE2b-256 e000fff1d92922165b85aafc948d724ed0d492bfa5d388e679ee1dc44ec411e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a6fb800dc275487f064ffd30ca1fc142e1a1918c50d0a18cd136c91085802830
MD5 878152f733d32c850b74449a862a33e8
BLAKE2b-256 b6efaf74bdc9532f7f947bbd4441b1caa2e0e72555ef8f2b856b2321976da5b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d1472f911a88b9eed7606dc76010142a7ed7a2a243eabc22bd2c228c3812ad0
MD5 256af118be8f5ae9f713661e7d7f6060
BLAKE2b-256 1d64b5b781663a4ffd4242984581d36e452dac016e8f717f7fc06a9156f10531

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e62f789864318e037db1efc12fa62e21de911584e790d7914689bd8444af919c
MD5 f6fde4f33c64699fda5bbe631d43fd6a
BLAKE2b-256 47e667f74c2ca5cdb1b2af98fe400fa070e01067f83568b741d5824ac092ec8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c210fbdab7456270731b0dc0e108085739449e6e9962e46bb2afb863cbe48e84
MD5 1d577a30b74d5f0f5c3c96adf1b10e58
BLAKE2b-256 9c9e753fdaf3ea8f695e3648f050833825afe7bca23e1cbb10923087ffd0c693

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf864c60a73b692d4f2dfc8f5ee38535e2f4e26ba37b90d8e008c631dd2c6623
MD5 e0816f43b9129170434578ebb1820126
BLAKE2b-256 78132fe2d4eefa0c451e04e0f950c5f8f4caaae52248a47f2b237f032c4558ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21a254a9afe8d748b9e6d72becad23b8e28ae9beb820758da7887f96b5d03f72
MD5 f3d561c39b64be172edeca4f159da930
BLAKE2b-256 b7ac91d9990dd5fc1f9fa73e07542bfc843a92b3587574b64981678207205e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e21a8bbb35a295ea1fbfe2909d3a7c3e8aaef9994da690d0def95f26b7b52925
MD5 c6d25f0daec4a31ddacc53fd9259c7f3
BLAKE2b-256 ced70a35f63676fc0a8f24474b7d91b2e5a7c22a62eb1fa77af53d0a94952aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3906f107fdaceaa651bbebfe86719c2624cb8ab4316958f0a5cc619d5cf5c691
MD5 66649834b3073bde3d9cdb050c0dcda7
BLAKE2b-256 c11323fcac53321c0710cd294e3d4807fe625425e3045e45b8d035d7765141e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 695edd6e7cb245cee19f401b9f8461f5bc10b7043153a250af4bf925373d4262
MD5 b82d7ac082fbb7af22e6fc1b25ae4934
BLAKE2b-256 026821041f4db0d85aee5ed0692486937d3f96b509fb9ad42837c5313e96b72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 302ea13476b0225a36bde6a66f0720b5930dcfaf3bed86115aba137f25dc0e51
MD5 b6d37e35a9d506b6142d496857980bac
BLAKE2b-256 8998d085feeb821fa786c4581ddacae90a6d4baed491b4102824c682c22b9617

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfc22370e8a44ea92e1f0ff84d96e5979f90e9c39a23ba6b00e6d08743d59371
MD5 1de33438e9b9ada6ad97c4d06ee80161
BLAKE2b-256 c95dacd0f19a2b47d637c7bf4ea4b5dec93d374f9310f125dc894ec16b8a0847

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08b2fd5b93ffa64f198db036b0a1b42cda1a9f1aaf5b151bb3971151458fb95b
MD5 efebab4af93f5d92644bea82a371e46d
BLAKE2b-256 9d962ddd5d773183688a703ecbdc39ec3b51bd83fcd5d3a6eda599e9ae13b5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f30c6b0876c1a4f4c8fece12d77733abccb735a7e2752a74b7aab6b264529880
MD5 f5afdd85b07336762e49500eecb00dfd
BLAKE2b-256 ba786fb27dc4f97630a9c0afa4e8f4e9e7daaa56cf6286641d8c6ecea1ad1a93

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a29a076b7ca9ce7c7ddc519252d62c66dbb50345a10dbe570b5e8b57a19da87b
MD5 f0de8beaf0678954c2eb32a2fd67560e
BLAKE2b-256 a4fcce499e9cad6676e08f4ae2417870b4ea370346a91399ed3c72db1a4a2f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c70cecdfd90d63a58fc7d3f6170bb38b963c5601308df424b36adfdfcd800c46
MD5 37c7e7c860a29679ef6feca466954d73
BLAKE2b-256 8365ca1b821349e54308833f74dfd611fb6dbb27e93f9de22c7515e5336dd4b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d0fe5167216b96d68bd0459772d8d2e02314f4deb1d6543a605ae450cc99d2
MD5 fc164e5130170980dc0386ac21fb2c8a
BLAKE2b-256 1896cfd0e05a37c7e9d8b3f5aa6801887371c67ba153d856167a0a40be21698c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2daf27e40621b94fa58254cf62b1affc393cfdd86178613997fd4305143641b2
MD5 711394a5562d07cb38343205edd36545
BLAKE2b-256 cc5ff42ceb577b3e2dad7ac06abe42a0d577b0316fa31ba50520993c04b27ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f1091b3ce84ff920d48e55038f9a2b733c7e4e3ca122a1cdd557609e5d963e0d
MD5 d4b8318bf0085c72daa12640308736bd
BLAKE2b-256 779b8c0e8c0b282cbda1f6d6069853aa5f5e94846ef498b294bf16a3b18ba8cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea29f41100231557ea04f39fd0fcbb417cc0c80f8ceb9c699ee63280a1ea218b
MD5 0f2d8bb91cbbc261cc69b10499cc3761
BLAKE2b-256 b4afe519e837679816045fcd4958e29ccbe4c06c2ccf9e357f3c41b6ca943123

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3bf400f1361ca22dc2e550e7f1ef111bb1664f6154b30e03fbe2a6adbe9975c8
MD5 a6b6d49d76f6634cb1a61c4a75b352c9
BLAKE2b-256 83b8ae23cd173f73057198e83030f3b82d5b2a5ece3eb2b4108a3769faec9e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae3765ac5aaabe09900d47232392c0c295f79fb871b43e9064e2ed6b37613ed6
MD5 e71150e52f1a375c57388ce288372e8a
BLAKE2b-256 470a61956d3b3b78b15113a49503352f76a458830f089c81b090bb5d839242f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9bf75d9228f708518ece8f655e29b852ec961596ea39938dd3f10c0b7cb2d6b
MD5 cc01a13939ecadfcc1367ddf7a87528f
BLAKE2b-256 2b6f2138a17e7a00fcb19f5997044ab437ff0d3c5e255865bc7ace3fb3ec25c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b0a3c2a7fea9d81c92138b56b137864926808f9a6e6d7f0a78bc103467cc3e2
MD5 43dab14cfff5f110dafd122fd91ee114
BLAKE2b-256 72915198a3c2a3ea953c90cbd89977ee5e89db920758ac41d749206844c47716

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79fe7bc48584fd95d24e2389fd44a1d2ed5b74a0d628b8500e93dccab553c4c1
MD5 cec0b4a9a985a6afe67f5761828148f9
BLAKE2b-256 480611fcfd2feb7f6d7f8eddafdb4bf213eac9a1ded2c79e3e1cd27dc2b7249d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43d7af1ee840b8a8591c415e1b39053c607397cc8e79aad80baaabb63ea73b6f
MD5 596d197289fe1c5350cc8d258976fa5a
BLAKE2b-256 1c6b78843db6f588389e64747f82ef61d0a33c5a3294c11f3fd6c3788c5cf508

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b0f842b83e78dcaf2829d09513bbb90422c706897e62f6da1caa8eacef8c334
MD5 a3e21e1ccc073d38ddc3808d96b7701c
BLAKE2b-256 8b93e0fc6f54f741933103f41c9dccf37693bdcd1f59bbd24dea143ed6a8c1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 448cf4deddd5ed5a74eca286e82f39ff645d9ea239a84e3366c0dc8a5525b3f6
MD5 a043832e88d6a2fe34d01bef0f9a0c5d
BLAKE2b-256 3883db955a22a095cc92c44e137080a3418c42c9491c448b48341b599f0fb1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 452d33875d9bb89c7987caec3b92ea3480b91b8bba32bd777d1702e252d4f39c
MD5 7ed6b43f83085b048d9169575219841c
BLAKE2b-256 776b68e39bc24d5af80fc768c587205a11a8f5d12f84ce05d5b32fbb2bb29c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6708b2e48c4780f2c6d84c97900c98d033264cfb74ebccef813b9f204e072cdf
MD5 73d3d0798125a7c4093566a56eb8ea0b
BLAKE2b-256 ff7342afd8054e73f114183f65ece12458fa8dbc27a3e708ea7faac6e2f3c91b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6930a1e604a3885e67d8397782c076353cf61eab8ca6e31c2a0418a83d68389
MD5 6620f2d742026c80a0cf71c880191b76
BLAKE2b-256 6eec6fdf9d82a49f82cff694b2f1e91fb25c50fbc2a001f16d863dbb56d6f018

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a07652a46a076e19c23927b25e4f1b204ff90ac9104bb7d6dac7fa3cb6feba3a
MD5 b2c68a3515da77df49cd36732bc5a7d4
BLAKE2b-256 c159bd18fe530af14f0b7c9f93e61c44ebdd8ccacc8e6f88546853df982e0e75

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 989c05e3999217453456d559e18f6d71a3e706b78692c0b867fdd9ef0a1a72f1
MD5 2fe41d15c8aceab5debb09b0e007da2e
BLAKE2b-256 904b088737cbedd4442fd1144f89c841265ade7e2f86118dbbd06e0030466c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 605ef9fc369a8db62f707b758d95d9b8d5aba0cdb1ecb3b2ac123f39849b9122
MD5 6942790a1613e1d3360c16cddbc844b8
BLAKE2b-256 e5ad9673fef7b1f9cf0afc5b02840e942015cc73430916609073252ce1960021

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f28fc8663fdb5988b001f9ede02abd760437f899ee698093f142e70e2b7ca8a3
MD5 967ac5f2fc3957b86bda75ad9618b72a
BLAKE2b-256 2efaa69e95997ae7de7a0b9856c5ac75d001f6bce40dcfd17ad20f75aae7c332

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75e1b758f88f887706902438fa5b293f11cec5d656c6540c9957da8c9b953198
MD5 96439066c0394a15b6c4346d03bc16f4
BLAKE2b-256 ea0c8df94143c07808184030e4c74e3032f6a43e3ca734754d2c26f2ae4e0393

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ae1222828474f9e4743f8929f8026abe2d0b3a99427a483da2868690b017332
MD5 9ace5a030837efb2c44fb51b7f8f8e0a
BLAKE2b-256 24134584c5379493dc98790a21a2ee87e710e2d7c0a9f7d242c6f2cf815aab5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 256.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf73ac54fbe2807097da987c2f01b7d333dd90dd8978ee2e642cae213c6b7b48
MD5 83329f2f328c5e50ee63e19dfcde0a0d
BLAKE2b-256 08241a38249415322127cb2e7da7869383d8ecb21f63b95b9d4ecfbad2cc62e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fae8176d8da338c50d044110a0eadf8cc9a723e87163d87cf5967ecb08461ac2
MD5 0c6569a47d1787d28d15435f6dcdf349
BLAKE2b-256 d2b232cc6f3ca252927182e09da2f7bf8de7ea190ea104aec088965094b0f75d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7ba694566cab9356025eea0e7b376f615464dbfc8fe9c84a4c831839720921f
MD5 73a94a1b118468672b10b963da73d360
BLAKE2b-256 7df4b041838796772728fe4ea93e43bb45702a72a88c3768fb4c3ecd2b414cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6e51eddce1b74f68dbcca5b25c077fb9c05ade96075e1d0879fb4c1069041de
MD5 38363db8c80a760ee183f066d73edf98
BLAKE2b-256 942cc8c626578124ff14d7a0442ab70402c0b4059fef83dbaa6874380f500fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a703edd72df4d446edcea982270ee9c3caba55d7824c1516f194574d005002f0
MD5 f176b2420ebcf5a3963d9f4120b539b4
BLAKE2b-256 b5feabca9d1c4fc4d5be53ea8041b5fc34f0c30b1fb4ecafa8996e47bc103d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c6cdc9e075feea712acddb498e26d0660d99356b9587c540aa6941782de415a
MD5 8442441a335ee43fdf968c9e64f009fd
BLAKE2b-256 47a0ee389c196cd404c8966cea85a478db001cc086c983a0b9952da29d959922

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca7b33497fe89a8fe01fb2f9983d5418ea2842fbd3c40d9d590a548572844c02
MD5 7904e76e076144c9ad2afa5f7bfaaec7
BLAKE2b-256 3620b5410c6ae5c5277f210067ca882e5854ee19722b1433c17257f243a919c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8151275957ba13a035f775fcb4c4ea8fd0d030150647f5020424ab30db16597b
MD5 661af1653d49bc6a68831ccb00962784
BLAKE2b-256 80e003c137f76323b9dc1b8070b05ec78223e2f23c305bbb36edf1a60f707daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on dlt-hub/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 dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c7a0f0e5322f3d0855a3a3887f6b1d1a6d6ed13954140c08c48d603c9b3c37b
MD5 9ee984a41c58a79cc66e8088b5484503
BLAKE2b-256 b1096edf1a82b9715a7e66e525f40e91b8a0b32d110729c7053ac692a0b47547

See more details on using hashes here.

Provenance

The following attestation bundles were made for dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on dlt-hub/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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page