Name | dlt-pendulum JSON |
Version |
3.0.2
JSON |
| download |
home_page | None |
Summary | Python datetimes made easy |
upload_time | 2025-02-01 17:54:29 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License |
keywords |
datetime
date
time
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
Pendulum
########
.. image:: https://img.shields.io/pypi/v/pendulum.svg
:target: https://pypi.python.org/pypi/dlt-pendulum
.. image:: https://img.shields.io/pypi/l/pendulum.svg
:target: https://pypi.python.org/pypi/dlt-pendulum
.. image:: https://github.com/dlt-hub/pendulum/actions/workflows/tests.yml/badge.svg
:alt: Pendulum Build status
:target: https://github.com/sdispater/pendulum/actions
Python datetimes made easy.
Supports Python **3.9 and newer**. It is a fork of original pendulum that supports Python **3.13**
.. code-block:: python
>>> 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
=========
* `Official Website <https://pendulum.eustace.io>`_
* `Documentation <https://pendulum.eustace.io/docs/>`_
* `Issue Tracker <https://github.com/sdispater/pendulum/issues>`_
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:
.. code-block:: python
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:
.. code-block:: python
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``:
.. code-block:: python
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 <https://poetry.eustace.io>`_.
.. code-block:: bash
$ 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:
.. code-block:: bash
./clock locale create <your-locale>
It will generate a directory in ``pendulum/locales`` named after your locale, with the following
structure:
.. code-block:: text
<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 <https://github.com/sdispater/pendulum/tree/master/src/pendulum/locales/en/custom.py>`_
data as a reference to see which data is needed.
You should also add tests for the created or modified locale.
Raw data
{
"_id": null,
"home_page": null,
"name": "dlt-pendulum",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "datetime, date, time",
"author": null,
"author_email": "S\u00e9bastien Eustace <sebastien@eustace.io>",
"download_url": null,
"platform": null,
"description": "Pendulum\n########\n\n.. image:: https://img.shields.io/pypi/v/pendulum.svg\n :target: https://pypi.python.org/pypi/dlt-pendulum\n\n.. image:: https://img.shields.io/pypi/l/pendulum.svg\n :target: https://pypi.python.org/pypi/dlt-pendulum\n\n.. image:: https://github.com/dlt-hub/pendulum/actions/workflows/tests.yml/badge.svg\n :alt: Pendulum Build status\n :target: https://github.com/sdispater/pendulum/actions\n\nPython datetimes made easy.\n\nSupports Python **3.9 and newer**. It is a fork of original pendulum that supports Python **3.13**\n\n\n.. code-block:: python\n\n >>> import pendulum\n\n >>> now_in_paris = pendulum.now('Europe/Paris')\n >>> now_in_paris\n '2016-07-04T00:49:58.502116+02:00'\n\n # Seamless timezone switching\n >>> now_in_paris.in_timezone('UTC')\n '2016-07-03T22:49:58.502116+00:00'\n\n >>> tomorrow = pendulum.now().add(days=1)\n >>> last_week = pendulum.now().subtract(weeks=1)\n\n >>> past = pendulum.now().subtract(minutes=2)\n >>> past.diff_for_humans()\n '2 minutes ago'\n\n >>> delta = past - last_week\n >>> delta.hours\n 23\n >>> delta.in_words(locale='en')\n '6 days 23 hours 58 minutes'\n\n # Proper handling of datetime normalization\n >>> pendulum.datetime(2013, 3, 31, 2, 30, tz='Europe/Paris')\n '2013-03-31T03:30:00+02:00' # 2:30 does not exist (Skipped time)\n\n # Proper handling of dst transitions\n >>> just_before = pendulum.datetime(2013, 3, 31, 1, 59, 59, 999999, tz='Europe/Paris')\n '2013-03-31T01:59:59.999999+01:00'\n >>> just_before.add(microseconds=1)\n '2013-03-31T03:00:00+02:00'\n\n\nResources\n=========\n\n* `Official Website <https://pendulum.eustace.io>`_\n* `Documentation <https://pendulum.eustace.io/docs/>`_\n* `Issue Tracker <https://github.com/sdispater/pendulum/issues>`_\n\nWhy Pendulum?\n=============\n\nNative ``datetime`` instances are enough for basic cases but when you face more complex use-cases\nthey often show limitations and are not so intuitive to work with.\n``Pendulum`` provides a cleaner and more easy to use API while still relying on the standard library.\nSo it's still ``datetime`` but better.\n\nUnlike other datetime libraries for Python, Pendulum is a drop-in replacement\nfor the standard ``datetime`` class (it inherits from it), so, basically, you can replace all your ``datetime``\ninstances by ``DateTime`` instances in your code (exceptions exist for libraries that check\nthe type of the objects by using the ``type`` function like ``sqlite3`` or ``PyMySQL`` for instance).\n\nIt also removes the notion of naive datetimes: each ``Pendulum`` instance is timezone-aware\nand by default in ``UTC`` for ease of use.\n\nPendulum also improves the standard ``timedelta`` class by providing more intuitive methods and properties.\n\nLimitations\n===========\n\nEven though the ``DateTime`` class is a subclass of ``datetime`` there are some rare cases where\nit can't replace the native class directly. Here is a list (non-exhaustive) of the reported cases with\na possible solution, if any:\n\n* ``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:\n\n.. code-block:: python\n\n from pendulum import DateTime\n from sqlite3 import register_adapter\n\n register_adapter(DateTime, lambda val: val.isoformat(' '))\n\n* ``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:\n\n.. code-block:: python\n\n import MySQLdb.converters\n import pymysql.converters\n\n from pendulum import DateTime\n\n MySQLdb.converters.conversions[DateTime] = MySQLdb.converters.DateTime2literal\n pymysql.converters.conversions[DateTime] = pymysql.converters.escape_datetime\n\n* ``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``:\n\n.. code-block:: python\n\n from django.db.models import DateTimeField as BaseDateTimeField\n from pendulum import DateTime\n\n\n class DateTimeField(BaseDateTimeField):\n\n def value_to_string(self, obj):\n val = self.value_from_object(obj)\n\n if isinstance(value, DateTime):\n return value.to_datetime_string()\n\n return '' if val is None else val.isoformat()\n\n\nContributing\n============\n\nContributions are welcome, especially with localization.\n\nGetting started\n---------------\n\nTo work on the Pendulum codebase, you'll want to clone the project locally\nand install the required dependencies via `poetry <https://poetry.eustace.io>`_.\n\n.. code-block:: bash\n\n $ git clone git@github.com:sdispater/pendulum.git\n $ poetry install\n\nLocalization\n------------\n\nIf you want to help with localization, there are two different cases: the locale already exists\nor not.\n\nIf the locale does not exist you will need to create it by using the ``clock`` utility:\n\n.. code-block:: bash\n\n ./clock locale create <your-locale>\n\nIt will generate a directory in ``pendulum/locales`` named after your locale, with the following\nstructure:\n\n.. code-block:: text\n\n <your-locale>/\n - custom.py\n - locale.py\n\nThe ``locale.py`` file must not be modified. It contains the translations provided by\nthe CLDR database.\n\nThe ``custom.py`` file is the one you want to modify. It contains the data needed\nby Pendulum that are not provided by the CLDR database. You can take the `en <https://github.com/sdispater/pendulum/tree/master/src/pendulum/locales/en/custom.py>`_\ndata as a reference to see which data is needed.\n\nYou should also add tests for the created or modified locale.\n\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Python datetimes made easy",
"version": "3.0.2",
"project_urls": {
"Documentation": "https://pendulum.eustace.io/docs",
"Homepage": "https://pendulum.eustace.io",
"Repository": "https://github.com/sdispater/pendulum"
},
"split_keywords": [
"datetime",
" date",
" time"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "24134584c5379493dc98790a21a2ee87e710e2d7c0a9f7d242c6f2cf815aab5c",
"md5": "9ace5a030837efb2c44fb51b7f8f8e0a",
"sha256": "9ae1222828474f9e4743f8929f8026abe2d0b3a99427a483da2868690b017332"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9ace5a030837efb2c44fb51b7f8f8e0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 333994,
"upload_time": "2025-02-01T17:54:29",
"upload_time_iso_8601": "2025-02-01T17:54:29.207492Z",
"url": "https://files.pythonhosted.org/packages/24/13/4584c5379493dc98790a21a2ee87e710e2d7c0a9f7d242c6f2cf815aab5c/dlt_pendulum-3.0.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea0c8df94143c07808184030e4c74e3032f6a43e3ca734754d2c26f2ae4e0393",
"md5": "96439066c0394a15b6c4346d03bc16f4",
"sha256": "75e1b758f88f887706902438fa5b293f11cec5d656c6540c9957da8c9b953198"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "96439066c0394a15b6c4346d03bc16f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 322819,
"upload_time": "2025-02-01T17:54:31",
"upload_time_iso_8601": "2025-02-01T17:54:31.730262Z",
"url": "https://files.pythonhosted.org/packages/ea/0c/8df94143c07808184030e4c74e3032f6a43e3ca734754d2c26f2ae4e0393/dlt_pendulum-3.0.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2efaa69e95997ae7de7a0b9856c5ac75d001f6bce40dcfd17ad20f75aae7c332",
"md5": "967ac5f2fc3957b86bda75ad9618b72a",
"sha256": "f28fc8663fdb5988b001f9ede02abd760437f899ee698093f142e70e2b7ca8a3"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "967ac5f2fc3957b86bda75ad9618b72a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 336946,
"upload_time": "2025-02-01T17:54:33",
"upload_time_iso_8601": "2025-02-01T17:54:33.991609Z",
"url": "https://files.pythonhosted.org/packages/2e/fa/a69e95997ae7de7a0b9856c5ac75d001f6bce40dcfd17ad20f75aae7c332/dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5ad9673fef7b1f9cf0afc5b02840e942015cc73430916609073252ce1960021",
"md5": "6942790a1613e1d3360c16cddbc844b8",
"sha256": "605ef9fc369a8db62f707b758d95d9b8d5aba0cdb1ecb3b2ac123f39849b9122"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6942790a1613e1d3360c16cddbc844b8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 372470,
"upload_time": "2025-02-01T17:54:36",
"upload_time_iso_8601": "2025-02-01T17:54:36.275502Z",
"url": "https://files.pythonhosted.org/packages/e5/ad/9673fef7b1f9cf0afc5b02840e942015cc73430916609073252ce1960021/dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "904b088737cbedd4442fd1144f89c841265ade7e2f86118dbbd06e0030466c50",
"md5": "2fe41d15c8aceab5debb09b0e007da2e",
"sha256": "989c05e3999217453456d559e18f6d71a3e706b78692c0b867fdd9ef0a1a72f1"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2fe41d15c8aceab5debb09b0e007da2e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 428097,
"upload_time": "2025-02-01T17:54:38",
"upload_time_iso_8601": "2025-02-01T17:54:38.276402Z",
"url": "https://files.pythonhosted.org/packages/90/4b/088737cbedd4442fd1144f89c841265ade7e2f86118dbbd06e0030466c50/dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c159bd18fe530af14f0b7c9f93e61c44ebdd8ccacc8e6f88546853df982e0e75",
"md5": "b2c68a3515da77df49cd36732bc5a7d4",
"sha256": "a07652a46a076e19c23927b25e4f1b204ff90ac9104bb7d6dac7fa3cb6feba3a"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b2c68a3515da77df49cd36732bc5a7d4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 348582,
"upload_time": "2025-02-01T17:54:39",
"upload_time_iso_8601": "2025-02-01T17:54:39.834595Z",
"url": "https://files.pythonhosted.org/packages/c1/59/bd18fe530af14f0b7c9f93e61c44ebdd8ccacc8e6f88546853df982e0e75/dlt_pendulum-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6eec6fdf9d82a49f82cff694b2f1e91fb25c50fbc2a001f16d863dbb56d6f018",
"md5": "6620f2d742026c80a0cf71c880191b76",
"sha256": "f6930a1e604a3885e67d8397782c076353cf61eab8ca6e31c2a0418a83d68389"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6620f2d742026c80a0cf71c880191b76",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 514956,
"upload_time": "2025-02-01T17:54:42",
"upload_time_iso_8601": "2025-02-01T17:54:42.304690Z",
"url": "https://files.pythonhosted.org/packages/6e/ec/6fdf9d82a49f82cff694b2f1e91fb25c50fbc2a001f16d863dbb56d6f018/dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff7342afd8054e73f114183f65ece12458fa8dbc27a3e708ea7faac6e2f3c91b",
"md5": "73d3d0798125a7c4093566a56eb8ea0b",
"sha256": "6708b2e48c4780f2c6d84c97900c98d033264cfb74ebccef813b9f204e072cdf"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "73d3d0798125a7c4093566a56eb8ea0b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 517881,
"upload_time": "2025-02-01T17:54:43",
"upload_time_iso_8601": "2025-02-01T17:54:43.883082Z",
"url": "https://files.pythonhosted.org/packages/ff/73/42afd8054e73f114183f65ece12458fa8dbc27a3e708ea7faac6e2f3c91b/dlt_pendulum-3.0.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "776b68e39bc24d5af80fc768c587205a11a8f5d12f84ce05d5b32fbb2bb29c02",
"md5": "7ed6b43f83085b048d9169575219841c",
"sha256": "452d33875d9bb89c7987caec3b92ea3480b91b8bba32bd777d1702e252d4f39c"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ed6b43f83085b048d9169575219841c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 256300,
"upload_time": "2025-02-01T17:54:46",
"upload_time_iso_8601": "2025-02-01T17:54:46.276749Z",
"url": "https://files.pythonhosted.org/packages/77/6b/68e39bc24d5af80fc768c587205a11a8f5d12f84ce05d5b32fbb2bb29c02/dlt_pendulum-3.0.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3883db955a22a095cc92c44e137080a3418c42c9491c448b48341b599f0fb1d0",
"md5": "a043832e88d6a2fe34d01bef0f9a0c5d",
"sha256": "448cf4deddd5ed5a74eca286e82f39ff645d9ea239a84e3366c0dc8a5525b3f6"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a043832e88d6a2fe34d01bef0f9a0c5d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 333979,
"upload_time": "2025-02-01T17:54:48",
"upload_time_iso_8601": "2025-02-01T17:54:48.603438Z",
"url": "https://files.pythonhosted.org/packages/38/83/db955a22a095cc92c44e137080a3418c42c9491c448b48341b599f0fb1d0/dlt_pendulum-3.0.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b93e0fc6f54f741933103f41c9dccf37693bdcd1f59bbd24dea143ed6a8c1f1",
"md5": "a3e21e1ccc073d38ddc3808d96b7701c",
"sha256": "8b0f842b83e78dcaf2829d09513bbb90422c706897e62f6da1caa8eacef8c334"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3e21e1ccc073d38ddc3808d96b7701c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 322609,
"upload_time": "2025-02-01T17:54:51",
"upload_time_iso_8601": "2025-02-01T17:54:51.072092Z",
"url": "https://files.pythonhosted.org/packages/8b/93/e0fc6f54f741933103f41c9dccf37693bdcd1f59bbd24dea143ed6a8c1f1/dlt_pendulum-3.0.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c6b78843db6f588389e64747f82ef61d0a33c5a3294c11f3fd6c3788c5cf508",
"md5": "596d197289fe1c5350cc8d258976fa5a",
"sha256": "43d7af1ee840b8a8591c415e1b39053c607397cc8e79aad80baaabb63ea73b6f"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "596d197289fe1c5350cc8d258976fa5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 336876,
"upload_time": "2025-02-01T17:54:52",
"upload_time_iso_8601": "2025-02-01T17:54:52.457153Z",
"url": "https://files.pythonhosted.org/packages/1c/6b/78843db6f588389e64747f82ef61d0a33c5a3294c11f3fd6c3788c5cf508/dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "480611fcfd2feb7f6d7f8eddafdb4bf213eac9a1ded2c79e3e1cd27dc2b7249d",
"md5": "cec0b4a9a985a6afe67f5761828148f9",
"sha256": "79fe7bc48584fd95d24e2389fd44a1d2ed5b74a0d628b8500e93dccab553c4c1"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cec0b4a9a985a6afe67f5761828148f9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 372499,
"upload_time": "2025-02-01T17:54:54",
"upload_time_iso_8601": "2025-02-01T17:54:54.958912Z",
"url": "https://files.pythonhosted.org/packages/48/06/11fcfd2feb7f6d7f8eddafdb4bf213eac9a1ded2c79e3e1cd27dc2b7249d/dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72915198a3c2a3ea953c90cbd89977ee5e89db920758ac41d749206844c47716",
"md5": "43dab14cfff5f110dafd122fd91ee114",
"sha256": "6b0a3c2a7fea9d81c92138b56b137864926808f9a6e6d7f0a78bc103467cc3e2"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "43dab14cfff5f110dafd122fd91ee114",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 427679,
"upload_time": "2025-02-01T17:54:56",
"upload_time_iso_8601": "2025-02-01T17:54:56.383836Z",
"url": "https://files.pythonhosted.org/packages/72/91/5198a3c2a3ea953c90cbd89977ee5e89db920758ac41d749206844c47716/dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b6f2138a17e7a00fcb19f5997044ab437ff0d3c5e255865bc7ace3fb3ec25c1",
"md5": "cc01a13939ecadfcc1367ddf7a87528f",
"sha256": "b9bf75d9228f708518ece8f655e29b852ec961596ea39938dd3f10c0b7cb2d6b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cc01a13939ecadfcc1367ddf7a87528f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 348494,
"upload_time": "2025-02-01T17:54:58",
"upload_time_iso_8601": "2025-02-01T17:54:58.553037Z",
"url": "https://files.pythonhosted.org/packages/2b/6f/2138a17e7a00fcb19f5997044ab437ff0d3c5e255865bc7ace3fb3ec25c1/dlt_pendulum-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "470a61956d3b3b78b15113a49503352f76a458830f089c81b090bb5d839242f4",
"md5": "e71150e52f1a375c57388ce288372e8a",
"sha256": "ae3765ac5aaabe09900d47232392c0c295f79fb871b43e9064e2ed6b37613ed6"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "e71150e52f1a375c57388ce288372e8a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 514884,
"upload_time": "2025-02-01T17:55:00",
"upload_time_iso_8601": "2025-02-01T17:55:00.136340Z",
"url": "https://files.pythonhosted.org/packages/47/0a/61956d3b3b78b15113a49503352f76a458830f089c81b090bb5d839242f4/dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83b8ae23cd173f73057198e83030f3b82d5b2a5ece3eb2b4108a3769faec9e8e",
"md5": "a6b6d49d76f6634cb1a61c4a75b352c9",
"sha256": "3bf400f1361ca22dc2e550e7f1ef111bb1664f6154b30e03fbe2a6adbe9975c8"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a6b6d49d76f6634cb1a61c4a75b352c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 517769,
"upload_time": "2025-02-01T17:55:02",
"upload_time_iso_8601": "2025-02-01T17:55:02.711729Z",
"url": "https://files.pythonhosted.org/packages/83/b8/ae23cd173f73057198e83030f3b82d5b2a5ece3eb2b4108a3769faec9e8e/dlt_pendulum-3.0.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4afe519e837679816045fcd4958e29ccbe4c06c2ccf9e357f3c41b6ca943123",
"md5": "0f2d8bb91cbbc261cc69b10499cc3761",
"sha256": "ea29f41100231557ea04f39fd0fcbb417cc0c80f8ceb9c699ee63280a1ea218b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "0f2d8bb91cbbc261cc69b10499cc3761",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 256188,
"upload_time": "2025-02-01T17:55:05",
"upload_time_iso_8601": "2025-02-01T17:55:05.244788Z",
"url": "https://files.pythonhosted.org/packages/b4/af/e519e837679816045fcd4958e29ccbe4c06c2ccf9e357f3c41b6ca943123/dlt_pendulum-3.0.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "779b8c0e8c0b282cbda1f6d6069853aa5f5e94846ef498b294bf16a3b18ba8cb",
"md5": "d4b8318bf0085c72daa12640308736bd",
"sha256": "f1091b3ce84ff920d48e55038f9a2b733c7e4e3ca122a1cdd557609e5d963e0d"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "d4b8318bf0085c72daa12640308736bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 250602,
"upload_time": "2025-02-01T17:55:06",
"upload_time_iso_8601": "2025-02-01T17:55:06.636246Z",
"url": "https://files.pythonhosted.org/packages/77/9b/8c0e8c0b282cbda1f6d6069853aa5f5e94846ef498b294bf16a3b18ba8cb/dlt_pendulum-3.0.2-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc5ff42ceb577b3e2dad7ac06abe42a0d577b0316fa31ba50520993c04b27ab4",
"md5": "711394a5562d07cb38343205edd36545",
"sha256": "2daf27e40621b94fa58254cf62b1affc393cfdd86178613997fd4305143641b2"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "711394a5562d07cb38343205edd36545",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 331350,
"upload_time": "2025-02-01T17:55:08",
"upload_time_iso_8601": "2025-02-01T17:55:08.880601Z",
"url": "https://files.pythonhosted.org/packages/cc/5f/f42ceb577b3e2dad7ac06abe42a0d577b0316fa31ba50520993c04b27ab4/dlt_pendulum-3.0.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1896cfd0e05a37c7e9d8b3f5aa6801887371c67ba153d856167a0a40be21698c",
"md5": "fc164e5130170980dc0386ac21fb2c8a",
"sha256": "e6d0fe5167216b96d68bd0459772d8d2e02314f4deb1d6543a605ae450cc99d2"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fc164e5130170980dc0386ac21fb2c8a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 319653,
"upload_time": "2025-02-01T17:55:11",
"upload_time_iso_8601": "2025-02-01T17:55:11.541162Z",
"url": "https://files.pythonhosted.org/packages/18/96/cfd0e05a37c7e9d8b3f5aa6801887371c67ba153d856167a0a40be21698c/dlt_pendulum-3.0.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8365ca1b821349e54308833f74dfd611fb6dbb27e93f9de22c7515e5336dd4b8",
"md5": "37c7e7c860a29679ef6feca466954d73",
"sha256": "c70cecdfd90d63a58fc7d3f6170bb38b963c5601308df424b36adfdfcd800c46"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "37c7e7c860a29679ef6feca466954d73",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 334073,
"upload_time": "2025-02-01T17:55:13",
"upload_time_iso_8601": "2025-02-01T17:55:13.620453Z",
"url": "https://files.pythonhosted.org/packages/83/65/ca1b821349e54308833f74dfd611fb6dbb27e93f9de22c7515e5336dd4b8/dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4fcce499e9cad6676e08f4ae2417870b4ea370346a91399ed3c72db1a4a2f31",
"md5": "f0de8beaf0678954c2eb32a2fd67560e",
"sha256": "a29a076b7ca9ce7c7ddc519252d62c66dbb50345a10dbe570b5e8b57a19da87b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f0de8beaf0678954c2eb32a2fd67560e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 370343,
"upload_time": "2025-02-01T17:55:15",
"upload_time_iso_8601": "2025-02-01T17:55:15.213997Z",
"url": "https://files.pythonhosted.org/packages/a4/fc/ce499e9cad6676e08f4ae2417870b4ea370346a91399ed3c72db1a4a2f31/dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba786fb27dc4f97630a9c0afa4e8f4e9e7daaa56cf6286641d8c6ecea1ad1a93",
"md5": "f5afdd85b07336762e49500eecb00dfd",
"sha256": "f30c6b0876c1a4f4c8fece12d77733abccb735a7e2752a74b7aab6b264529880"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f5afdd85b07336762e49500eecb00dfd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 425689,
"upload_time": "2025-02-01T17:55:17",
"upload_time_iso_8601": "2025-02-01T17:55:17.819155Z",
"url": "https://files.pythonhosted.org/packages/ba/78/6fb27dc4f97630a9c0afa4e8f4e9e7daaa56cf6286641d8c6ecea1ad1a93/dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d962ddd5d773183688a703ecbdc39ec3b51bd83fcd5d3a6eda599e9ae13b5df",
"md5": "efebab4af93f5d92644bea82a371e46d",
"sha256": "08b2fd5b93ffa64f198db036b0a1b42cda1a9f1aaf5b151bb3971151458fb95b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "efebab4af93f5d92644bea82a371e46d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 346132,
"upload_time": "2025-02-01T17:55:20",
"upload_time_iso_8601": "2025-02-01T17:55:20.910283Z",
"url": "https://files.pythonhosted.org/packages/9d/96/2ddd5d773183688a703ecbdc39ec3b51bd83fcd5d3a6eda599e9ae13b5df/dlt_pendulum-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c95dacd0f19a2b47d637c7bf4ea4b5dec93d374f9310f125dc894ec16b8a0847",
"md5": "1de33438e9b9ada6ad97c4d06ee80161",
"sha256": "dfc22370e8a44ea92e1f0ff84d96e5979f90e9c39a23ba6b00e6d08743d59371"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1de33438e9b9ada6ad97c4d06ee80161",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 511867,
"upload_time": "2025-02-01T17:55:23",
"upload_time_iso_8601": "2025-02-01T17:55:23.225549Z",
"url": "https://files.pythonhosted.org/packages/c9/5d/acd0f19a2b47d637c7bf4ea4b5dec93d374f9310f125dc894ec16b8a0847/dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8998d085feeb821fa786c4581ddacae90a6d4baed491b4102824c682c22b9617",
"md5": "b6d37e35a9d506b6142d496857980bac",
"sha256": "302ea13476b0225a36bde6a66f0720b5930dcfaf3bed86115aba137f25dc0e51"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b6d37e35a9d506b6142d496857980bac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 515426,
"upload_time": "2025-02-01T17:55:24",
"upload_time_iso_8601": "2025-02-01T17:55:24.726370Z",
"url": "https://files.pythonhosted.org/packages/89/98/d085feeb821fa786c4581ddacae90a6d4baed491b4102824c682c22b9617/dlt_pendulum-3.0.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "026821041f4db0d85aee5ed0692486937d3f96b509fb9ad42837c5313e96b72b",
"md5": "b82d7ac082fbb7af22e6fc1b25ae4934",
"sha256": "695edd6e7cb245cee19f401b9f8461f5bc10b7043153a250af4bf925373d4262"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b82d7ac082fbb7af22e6fc1b25ae4934",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 255656,
"upload_time": "2025-02-01T17:55:26",
"upload_time_iso_8601": "2025-02-01T17:55:26.122012Z",
"url": "https://files.pythonhosted.org/packages/02/68/21041f4db0d85aee5ed0692486937d3f96b509fb9ad42837c5313e96b72b/dlt_pendulum-3.0.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c11323fcac53321c0710cd294e3d4807fe625425e3045e45b8d035d7765141e0",
"md5": "66649834b3073bde3d9cdb050c0dcda7",
"sha256": "3906f107fdaceaa651bbebfe86719c2624cb8ab4316958f0a5cc619d5cf5c691"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "66649834b3073bde3d9cdb050c0dcda7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 248923,
"upload_time": "2025-02-01T17:55:27",
"upload_time_iso_8601": "2025-02-01T17:55:27.620536Z",
"url": "https://files.pythonhosted.org/packages/c1/13/23fcac53321c0710cd294e3d4807fe625425e3045e45b8d035d7765141e0/dlt_pendulum-3.0.2-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ced70a35f63676fc0a8f24474b7d91b2e5a7c22a62eb1fa77af53d0a94952aa1",
"md5": "c6d25f0daec4a31ddacc53fd9259c7f3",
"sha256": "e21a8bbb35a295ea1fbfe2909d3a7c3e8aaef9994da690d0def95f26b7b52925"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c6d25f0daec4a31ddacc53fd9259c7f3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 331350,
"upload_time": "2025-02-01T17:55:28",
"upload_time_iso_8601": "2025-02-01T17:55:28.972307Z",
"url": "https://files.pythonhosted.org/packages/ce/d7/0a35f63676fc0a8f24474b7d91b2e5a7c22a62eb1fa77af53d0a94952aa1/dlt_pendulum-3.0.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7ac91d9990dd5fc1f9fa73e07542bfc843a92b3587574b64981678207205e3d",
"md5": "f3d561c39b64be172edeca4f159da930",
"sha256": "21a254a9afe8d748b9e6d72becad23b8e28ae9beb820758da7887f96b5d03f72"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f3d561c39b64be172edeca4f159da930",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 319652,
"upload_time": "2025-02-01T17:55:30",
"upload_time_iso_8601": "2025-02-01T17:55:30.846475Z",
"url": "https://files.pythonhosted.org/packages/b7/ac/91d9990dd5fc1f9fa73e07542bfc843a92b3587574b64981678207205e3d/dlt_pendulum-3.0.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78132fe2d4eefa0c451e04e0f950c5f8f4caaae52248a47f2b237f032c4558ff",
"md5": "e0816f43b9129170434578ebb1820126",
"sha256": "cf864c60a73b692d4f2dfc8f5ee38535e2f4e26ba37b90d8e008c631dd2c6623"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e0816f43b9129170434578ebb1820126",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 334072,
"upload_time": "2025-02-01T17:55:33",
"upload_time_iso_8601": "2025-02-01T17:55:33.076243Z",
"url": "https://files.pythonhosted.org/packages/78/13/2fe2d4eefa0c451e04e0f950c5f8f4caaae52248a47f2b237f032c4558ff/dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c9e753fdaf3ea8f695e3648f050833825afe7bca23e1cbb10923087ffd0c693",
"md5": "1d577a30b74d5f0f5c3c96adf1b10e58",
"sha256": "c210fbdab7456270731b0dc0e108085739449e6e9962e46bb2afb863cbe48e84"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1d577a30b74d5f0f5c3c96adf1b10e58",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 370345,
"upload_time": "2025-02-01T17:55:34",
"upload_time_iso_8601": "2025-02-01T17:55:34.564028Z",
"url": "https://files.pythonhosted.org/packages/9c/9e/753fdaf3ea8f695e3648f050833825afe7bca23e1cbb10923087ffd0c693/dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47e667f74c2ca5cdb1b2af98fe400fa070e01067f83568b741d5824ac092ec8f",
"md5": "f6fde4f33c64699fda5bbe631d43fd6a",
"sha256": "e62f789864318e037db1efc12fa62e21de911584e790d7914689bd8444af919c"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f6fde4f33c64699fda5bbe631d43fd6a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 425690,
"upload_time": "2025-02-01T17:55:36",
"upload_time_iso_8601": "2025-02-01T17:55:36.780734Z",
"url": "https://files.pythonhosted.org/packages/47/e6/67f74c2ca5cdb1b2af98fe400fa070e01067f83568b741d5824ac092ec8f/dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d64b5b781663a4ffd4242984581d36e452dac016e8f717f7fc06a9156f10531",
"md5": "256af118be8f5ae9f713661e7d7f6060",
"sha256": "4d1472f911a88b9eed7606dc76010142a7ed7a2a243eabc22bd2c228c3812ad0"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "256af118be8f5ae9f713661e7d7f6060",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 346132,
"upload_time": "2025-02-01T17:55:39",
"upload_time_iso_8601": "2025-02-01T17:55:39.788223Z",
"url": "https://files.pythonhosted.org/packages/1d/64/b5b781663a4ffd4242984581d36e452dac016e8f717f7fc06a9156f10531/dlt_pendulum-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6efaf74bdc9532f7f947bbd4441b1caa2e0e72555ef8f2b856b2321976da5b6",
"md5": "878152f733d32c850b74449a862a33e8",
"sha256": "a6fb800dc275487f064ffd30ca1fc142e1a1918c50d0a18cd136c91085802830"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "878152f733d32c850b74449a862a33e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 511868,
"upload_time": "2025-02-01T17:55:41",
"upload_time_iso_8601": "2025-02-01T17:55:41.312804Z",
"url": "https://files.pythonhosted.org/packages/b6/ef/af74bdc9532f7f947bbd4441b1caa2e0e72555ef8f2b856b2321976da5b6/dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e000fff1d92922165b85aafc948d724ed0d492bfa5d388e679ee1dc44ec411e4",
"md5": "9a8ba6eb8cb098b0d923b8eb7aa2b46e",
"sha256": "1ea898cf16d8e3d5064041ef775889103ebddb9c094d8198ee732eee5169301c"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9a8ba6eb8cb098b0d923b8eb7aa2b46e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 515426,
"upload_time": "2025-02-01T17:55:42",
"upload_time_iso_8601": "2025-02-01T17:55:42.744904Z",
"url": "https://files.pythonhosted.org/packages/e0/00/fff1d92922165b85aafc948d724ed0d492bfa5d388e679ee1dc44ec411e4/dlt_pendulum-3.0.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51f61df8146baeb4f5d3c9e59050e445502a764408b004cb4ef520eadd778b34",
"md5": "3e543b34c1d581599aa666c649d753de",
"sha256": "6daf6ff583c2e0f03de0f6f8b07eb8db7f4913180cd2c5357014671bf8c6b460"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "3e543b34c1d581599aa666c649d753de",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 255649,
"upload_time": "2025-02-01T17:55:44",
"upload_time_iso_8601": "2025-02-01T17:55:44.425531Z",
"url": "https://files.pythonhosted.org/packages/51/f6/1df8146baeb4f5d3c9e59050e445502a764408b004cb4ef520eadd778b34/dlt_pendulum-3.0.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a3ea9d83ab73177b24daa6d81e25f9811250edf1a9570a5614cfc08857a9da5",
"md5": "a41a599f97d8d2be4d3c3a5d8de2c334",
"sha256": "016e2055964eb33ca3636dc580e4f8f5923285cfc3597e46ce053bbad84b0611"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "a41a599f97d8d2be4d3c3a5d8de2c334",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 248918,
"upload_time": "2025-02-01T17:55:45",
"upload_time_iso_8601": "2025-02-01T17:55:45.831529Z",
"url": "https://files.pythonhosted.org/packages/7a/3e/a9d83ab73177b24daa6d81e25f9811250edf1a9570a5614cfc08857a9da5/dlt_pendulum-3.0.2-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1096edf1a82b9715a7e66e525f40e91b8a0b32d110729c7053ac692a0b47547",
"md5": "9ee984a41c58a79cc66e8088b5484503",
"sha256": "7c7a0f0e5322f3d0855a3a3887f6b1d1a6d6ed13954140c08c48d603c9b3c37b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9ee984a41c58a79cc66e8088b5484503",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 335123,
"upload_time": "2025-02-01T17:55:48",
"upload_time_iso_8601": "2025-02-01T17:55:48.464978Z",
"url": "https://files.pythonhosted.org/packages/b1/09/6edf1a82b9715a7e66e525f40e91b8a0b32d110729c7053ac692a0b47547/dlt_pendulum-3.0.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80e003c137f76323b9dc1b8070b05ec78223e2f23c305bbb36edf1a60f707daa",
"md5": "661af1653d49bc6a68831ccb00962784",
"sha256": "8151275957ba13a035f775fcb4c4ea8fd0d030150647f5020424ab30db16597b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "661af1653d49bc6a68831ccb00962784",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 323598,
"upload_time": "2025-02-01T17:55:50",
"upload_time_iso_8601": "2025-02-01T17:55:50.254587Z",
"url": "https://files.pythonhosted.org/packages/80/e0/03c137f76323b9dc1b8070b05ec78223e2f23c305bbb36edf1a60f707daa/dlt_pendulum-3.0.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3620b5410c6ae5c5277f210067ca882e5854ee19722b1433c17257f243a919c8",
"md5": "7904e76e076144c9ad2afa5f7bfaaec7",
"sha256": "ca7b33497fe89a8fe01fb2f9983d5418ea2842fbd3c40d9d590a548572844c02"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7904e76e076144c9ad2afa5f7bfaaec7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 337424,
"upload_time": "2025-02-01T17:55:51",
"upload_time_iso_8601": "2025-02-01T17:55:51.728516Z",
"url": "https://files.pythonhosted.org/packages/36/20/b5410c6ae5c5277f210067ca882e5854ee19722b1433c17257f243a919c8/dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47a0ee389c196cd404c8966cea85a478db001cc086c983a0b9952da29d959922",
"md5": "8442441a335ee43fdf968c9e64f009fd",
"sha256": "2c6cdc9e075feea712acddb498e26d0660d99356b9587c540aa6941782de415a"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8442441a335ee43fdf968c9e64f009fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 373110,
"upload_time": "2025-02-01T17:55:54",
"upload_time_iso_8601": "2025-02-01T17:55:54.077760Z",
"url": "https://files.pythonhosted.org/packages/47/a0/ee389c196cd404c8966cea85a478db001cc086c983a0b9952da29d959922/dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5feabca9d1c4fc4d5be53ea8041b5fc34f0c30b1fb4ecafa8996e47bc103d1f",
"md5": "f176b2420ebcf5a3963d9f4120b539b4",
"sha256": "a703edd72df4d446edcea982270ee9c3caba55d7824c1516f194574d005002f0"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f176b2420ebcf5a3963d9f4120b539b4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 429074,
"upload_time": "2025-02-01T17:55:55",
"upload_time_iso_8601": "2025-02-01T17:55:55.615717Z",
"url": "https://files.pythonhosted.org/packages/b5/fe/abca9d1c4fc4d5be53ea8041b5fc34f0c30b1fb4ecafa8996e47bc103d1f/dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "942cc8c626578124ff14d7a0442ab70402c0b4059fef83dbaa6874380f500fa1",
"md5": "38363db8c80a760ee183f066d73edf98",
"sha256": "f6e51eddce1b74f68dbcca5b25c077fb9c05ade96075e1d0879fb4c1069041de"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "38363db8c80a760ee183f066d73edf98",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 349455,
"upload_time": "2025-02-01T17:55:57",
"upload_time_iso_8601": "2025-02-01T17:55:57.043806Z",
"url": "https://files.pythonhosted.org/packages/94/2c/c8c626578124ff14d7a0442ab70402c0b4059fef83dbaa6874380f500fa1/dlt_pendulum-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7df4b041838796772728fe4ea93e43bb45702a72a88c3768fb4c3ecd2b414cb9",
"md5": "73a94a1b118468672b10b963da73d360",
"sha256": "a7ba694566cab9356025eea0e7b376f615464dbfc8fe9c84a4c831839720921f"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "73a94a1b118468672b10b963da73d360",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 515537,
"upload_time": "2025-02-01T17:55:58",
"upload_time_iso_8601": "2025-02-01T17:55:58.500207Z",
"url": "https://files.pythonhosted.org/packages/7d/f4/b041838796772728fe4ea93e43bb45702a72a88c3768fb4c3ecd2b414cb9/dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2b232cc6f3ca252927182e09da2f7bf8de7ea190ea104aec088965094b0f75d",
"md5": "0c6569a47d1787d28d15435f6dcdf349",
"sha256": "fae8176d8da338c50d044110a0eadf8cc9a723e87163d87cf5967ecb08461ac2"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "0c6569a47d1787d28d15435f6dcdf349",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 518456,
"upload_time": "2025-02-01T17:56:00",
"upload_time_iso_8601": "2025-02-01T17:56:00.016209Z",
"url": "https://files.pythonhosted.org/packages/d2/b2/32cc6f3ca252927182e09da2f7bf8de7ea190ea104aec088965094b0f75d/dlt_pendulum-3.0.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08241a38249415322127cb2e7da7869383d8ecb21f63b95b9d4ecfbad2cc62e6",
"md5": "83329f2f328c5e50ee63e19dfcde0a0d",
"sha256": "bf73ac54fbe2807097da987c2f01b7d333dd90dd8978ee2e642cae213c6b7b48"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "83329f2f328c5e50ee63e19dfcde0a0d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 256777,
"upload_time": "2025-02-01T17:56:01",
"upload_time_iso_8601": "2025-02-01T17:56:01.425084Z",
"url": "https://files.pythonhosted.org/packages/08/24/1a38249415322127cb2e7da7869383d8ecb21f63b95b9d4ecfbad2cc62e6/dlt_pendulum-3.0.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "180162aefc7696fac788fceca13a10dbe065cdc9c351aecba62f6a9b7d5307f8",
"md5": "233b0146a82ed2f918b51b9e9ace2f0f",
"sha256": "84de2669352881ae6f5aebf17f109ee5ef4302a7a5807f72e643ea7675dbc54b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "233b0146a82ed2f918b51b9e9ace2f0f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 334745,
"upload_time": "2025-02-01T17:56:02",
"upload_time_iso_8601": "2025-02-01T17:56:02.870583Z",
"url": "https://files.pythonhosted.org/packages/18/01/62aefc7696fac788fceca13a10dbe065cdc9c351aecba62f6a9b7d5307f8/dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48062ad92f9aa0198ba0cb5b410bb4c6ac365cf091bc4627571b27850615adb8",
"md5": "8697231f77be3db201874ec67ceff406",
"sha256": "898b944850fda027dbbbf635757e89220e90ac599a9c240dee01e2b191398ff5"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8697231f77be3db201874ec67ceff406",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 323342,
"upload_time": "2025-02-01T17:56:04",
"upload_time_iso_8601": "2025-02-01T17:56:04.354957Z",
"url": "https://files.pythonhosted.org/packages/48/06/2ad92f9aa0198ba0cb5b410bb4c6ac365cf091bc4627571b27850615adb8/dlt_pendulum-3.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee7698a7eb19b08d853839f727cc4a89169528bedf1f7fb7c77ff37f4d53d1ce",
"md5": "732bb3b7cbd00813770a725a60e6fec0",
"sha256": "ea1335fa358b33dedd0765ab15292d3e6c29c9a02d672a12b2ec766e7a92830c"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "732bb3b7cbd00813770a725a60e6fec0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 337418,
"upload_time": "2025-02-01T17:56:06",
"upload_time_iso_8601": "2025-02-01T17:56:06.480555Z",
"url": "https://files.pythonhosted.org/packages/ee/76/98a7eb19b08d853839f727cc4a89169528bedf1f7fb7c77ff37f4d53d1ce/dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0dfa5c4225d50032a5549db2ac4caaea791b3be7802e677224d9c7229e91350",
"md5": "b194b03050582dfec4576085d59dad81",
"sha256": "389182056f889c5fe551200bcc7f821d3e54e124125af95f7538df0fd7b3052d"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b194b03050582dfec4576085d59dad81",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 349288,
"upload_time": "2025-02-01T17:56:08",
"upload_time_iso_8601": "2025-02-01T17:56:08.009731Z",
"url": "https://files.pythonhosted.org/packages/d0/df/a5c4225d50032a5549db2ac4caaea791b3be7802e677224d9c7229e91350/dlt_pendulum-3.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06540ed389e6314920e85bd9c195187399d4737379526ded2e5d9ff72bd5c35d",
"md5": "812b402c80989c5c643ce64020d28531",
"sha256": "1c65b3e3ec9df89f97c5c6f31e192ec2705e92421b86228d341ce98df119e96d"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "812b402c80989c5c643ce64020d28531",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 515463,
"upload_time": "2025-02-01T17:56:11",
"upload_time_iso_8601": "2025-02-01T17:56:11.618981Z",
"url": "https://files.pythonhosted.org/packages/06/54/0ed389e6314920e85bd9c195187399d4737379526ded2e5d9ff72bd5c35d/dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67f53161fa22f4df23937b183013d4acc4a4321ed33bb1d570e09786551aa1f7",
"md5": "fb8603296fedd3b7e507071bcfeae72c",
"sha256": "3bda319216948917a5ef93c4ea9c86b4a6bdc97c1fdf02daf17a18daec9df218"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fb8603296fedd3b7e507071bcfeae72c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 518367,
"upload_time": "2025-02-01T17:56:13",
"upload_time_iso_8601": "2025-02-01T17:56:13.873829Z",
"url": "https://files.pythonhosted.org/packages/67/f5/3161fa22f4df23937b183013d4acc4a4321ed33bb1d570e09786551aa1f7/dlt_pendulum-3.0.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eab807f05dce706e65a5e3b56c02923e408c380523c4efdad090566e3f64db9d",
"md5": "ba936b3990691e30eb56877c01c773fe",
"sha256": "f693bd8c2f0cab6b2a19166c77054857b571511107585a4e3ea9d0c166f820e2"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ba936b3990691e30eb56877c01c773fe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 256633,
"upload_time": "2025-02-01T17:56:15",
"upload_time_iso_8601": "2025-02-01T17:56:15.317419Z",
"url": "https://files.pythonhosted.org/packages/ea/b8/07f05dce706e65a5e3b56c02923e408c380523c4efdad090566e3f64db9d/dlt_pendulum-3.0.2-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf2384b886db03cbe50aed632ca3b95e7f545ddacc80b9ed3b764e04cc2ba568",
"md5": "7ecd685c15a965ac4d8d533025e98210",
"sha256": "ca5426a96ba5ef02156251350eebab9b4d265b0373b3dc00035d401103c36e6e"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7ecd685c15a965ac4d8d533025e98210",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 335339,
"upload_time": "2025-02-01T17:56:16",
"upload_time_iso_8601": "2025-02-01T17:56:16.842768Z",
"url": "https://files.pythonhosted.org/packages/bf/23/84b886db03cbe50aed632ca3b95e7f545ddacc80b9ed3b764e04cc2ba568/dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d92f23fb7b737f12ccad8bb86ca5ced2adfdf1c04a1db33fc75dd84718d003ce",
"md5": "a3020e648275c812c5a3f0804e2ed56b",
"sha256": "cb960ca1a8320b114f93c3da16c2d6c45372830b56b2624ee51c1bf605d50234"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3020e648275c812c5a3f0804e2ed56b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 323834,
"upload_time": "2025-02-01T17:56:18",
"upload_time_iso_8601": "2025-02-01T17:56:18.236197Z",
"url": "https://files.pythonhosted.org/packages/d9/2f/23fb7b737f12ccad8bb86ca5ced2adfdf1c04a1db33fc75dd84718d003ce/dlt_pendulum-3.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d431051780d7389e278daa8587a63f0dfc31d3819807dce639f4882493a33750",
"md5": "44f0ba70abab2682d724cc5fea13f36f",
"sha256": "c6c3e0abb02f7d7d82d12afac102c83c032d92ade32bcb054d1dfc8bb46153c3"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "44f0ba70abab2682d724cc5fea13f36f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 337786,
"upload_time": "2025-02-01T17:56:20",
"upload_time_iso_8601": "2025-02-01T17:56:20.374493Z",
"url": "https://files.pythonhosted.org/packages/d4/31/051780d7389e278daa8587a63f0dfc31d3819807dce639f4882493a33750/dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "959ac8ed2dc7895e9d74b73649aeabe68cf549ec1c5a3b4364b76bca19585ae6",
"md5": "939dfacca1f949c186132b7c0d7f578e",
"sha256": "ef2009fd3cbe55742cb8e6ae2e13193ead9d29eece4e96f4871d325e5f80df57"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "939dfacca1f949c186132b7c0d7f578e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 349699,
"upload_time": "2025-02-01T17:56:21",
"upload_time_iso_8601": "2025-02-01T17:56:21.919998Z",
"url": "https://files.pythonhosted.org/packages/95/9a/c8ed2dc7895e9d74b73649aeabe68cf549ec1c5a3b4364b76bca19585ae6/dlt_pendulum-3.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "345714f934d1ced1a9cdb711ea9e5e6b202b92ab995dbb87b2caf58ee79c10d9",
"md5": "ca13cfd3c7964bab2713202efc7eb639",
"sha256": "b13e7ccaf2e90a1bd9b022c3087a5be422a5a35ca6deb662ea9100e5d8f18a17"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ca13cfd3c7964bab2713202efc7eb639",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 515707,
"upload_time": "2025-02-01T17:56:24",
"upload_time_iso_8601": "2025-02-01T17:56:24.418795Z",
"url": "https://files.pythonhosted.org/packages/34/57/14f934d1ced1a9cdb711ea9e5e6b202b92ab995dbb87b2caf58ee79c10d9/dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d8ca43dabe8d17c4d74976617880a4bf6d994a8ec04bc56213a7ff4f8862f5a",
"md5": "5cf98e44ddafb08b97d9418b2dee7840",
"sha256": "6e47ea014c41bc2cd64786f2607a64ae9a09ac7226d8ab03438f0677b517499e"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5cf98e44ddafb08b97d9418b2dee7840",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 518846,
"upload_time": "2025-02-01T17:56:26",
"upload_time_iso_8601": "2025-02-01T17:56:26.721172Z",
"url": "https://files.pythonhosted.org/packages/0d/8c/a43dabe8d17c4d74976617880a4bf6d994a8ec04bc56213a7ff4f8862f5a/dlt_pendulum-3.0.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36114922fb2c9c1963417ef5d5d74d72b073b519ae0481104b018431292a0e91",
"md5": "01d612f8cdb5ea874f171a11a5cc63de",
"sha256": "b3236ccce1d00eb7a956cdefdef77cda8c51c281c2642fb9c60f8e9aacc9b69b"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "01d612f8cdb5ea874f171a11a5cc63de",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 256824,
"upload_time": "2025-02-01T17:56:32",
"upload_time_iso_8601": "2025-02-01T17:56:32.063246Z",
"url": "https://files.pythonhosted.org/packages/36/11/4922fb2c9c1963417ef5d5d74d72b073b519ae0481104b018431292a0e91/dlt_pendulum-3.0.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "911bf54ae6b98800044f4c9834fcd65cf4c4caa1f87fc6e83ac6a423353169b0",
"md5": "05862d2a18f60cfbdd243c2721a3c21f",
"sha256": "5d95953c9e7ffaef7a7c97d25e95b854e5aa4b072201dd61c942090cf6347f6f"
},
"downloads": -1,
"filename": "dlt_pendulum-3.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "05862d2a18f60cfbdd243c2721a3c21f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 109848,
"upload_time": "2025-02-01T17:56:34",
"upload_time_iso_8601": "2025-02-01T17:56:34.485343Z",
"url": "https://files.pythonhosted.org/packages/91/1b/f54ae6b98800044f4c9834fcd65cf4c4caa1f87fc6e83ac6a423353169b0/dlt_pendulum-3.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-01 17:54:29",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sdispater",
"github_project": "pendulum",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "dlt-pendulum"
}