dukpy


Namedukpy JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/amol-/dukpy
SummarySimple JavaScript interpreter for Python
upload_time2024-02-15 20:26:34
maintainer
docs_urlNone
authorAlessandro Molina
requires_python
licenseMIT
keywords javascript compiler babeljs jsx coffeescript typescript
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            dukpy
=====

.. image:: https://github.com/amol-/dukpy/actions/workflows/run-tests.yml/badge.svg
    :target: https://github.com/amol-/dukpy/actions/workflows/run-tests.yml

.. image:: https://coveralls.io/repos/amol-/dukpy/badge.png?branch=master
    :target: https://coveralls.io/r/amol-/dukpy?branch=master

.. image:: https://img.shields.io/pypi/v/dukpy.svg
   :target: https://pypi.org/p/dukpy


DukPy is a simple javascript interpreter for Python built on top of
duktape engine **without any external dependency**.
It comes with a bunch of common transpilers built-in for convenience:

    - *CoffeeScript*
    - *BabelJS*
    - *TypeScript*
    - *JSX*
    - *LESS*

CoffeeScript Compiler
---------------------

Using the coffeescript compiler is as easy as running:

.. code:: python

    >>> import dukpy
    >>> dukpy.coffee_compile('''
    ...     fill = (container, liquid = "coffee") ->
    ...         "Filling the #{container} with #{liquid}..."
    ... ''')
    '(function() {\n  var fill;\n\n  fill = function*(container, liquid) {\n    if (liquid == null) {\n      liquid = "coffee";\n    }\n    return "Filling the " + container + " with " + liquid + "...";\n  };\n\n}).call(this);\n'

TypeScript Transpiler
---------------------

The TypeScript compiler can be used through the
``dukpy.typescript_compile`` function:

.. code:: python

    >>> import dukpy
    >>> dukpy.typescript_compile('''
    ... class Greeter {
    ...     constructor(public greeting: string) { }
    ...     greet() {
    ...         return "<h1>" + this.greeting + "</h1>";
    ...     }
    ... };
    ...
    ... var greeter = new Greeter("Hello, world!");
    ... ''')
    'var Greeter = (function () {\n    function Greeter(greeting) {\n        this.greeting = greeting;\n    }\n    Greeter.prototype.greet = function () {\n        return "<h1>" + this.greeting + "</h1>";\n    };\n    return Greeter;\n})();\n;\nvar greeter = new Greeter("Hello, world!");\n'

Currently the compiler has built-in options and doesn't accept additional ones,

The DukPY based TypeScript compiler also provides a WebAssets (
http://webassets.readthedocs.org/en/latest/ ) filter to automatically
compile TypeScript code in your assets pipeline.  You register this filter as
``typescript`` within WebAssets using:

.. code:: python

    from webassets.filter import register_filter
    from dukpy.webassets import TypeScript

    register_filter(TypeScript)

Which makes the filter available with the ``typescript`` name.

**NOTE:** When using the TypeScript compiler for code that needs to run
in the browser, make sure to add
https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.24/system.js
dependency. As ``import`` statements are resolved using SystemJS.

EcmaScript6 BabelJS Transpiler
------------------------------

To compile ES6 code to ES5 for everyday usage you can use
``dukpy.babel_compile``:

.. code:: python

    >>> import dukpy
    >>> dukpy.babel_compile('''
    ... class Point {
    ...     constructor(x, y) {
    ...             this.x = x;
    ...         this.y = y;
    ...         }
    ...         toString() {
    ...             return '(' + this.x + ', ' + this.y + ')';
    ...         }
    ... }
    ... ''')
    '"use strict";\n\nvar _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };\n\nvar _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };\n\nvar Point = (function () {\n    function Point(x, y) {\n        _classCallCheck(this, Point);\n\n        this.x = x;\n        this.y = y;\n    }\n\n    _prototypeProperties(Point, null, {\n        toString: {\n            value: function toString() {\n                return "(" + this.x + ", " + this.y + ")";\n            },\n            writable: true,\n            configurable: true\n        }\n    });\n\n    return Point;\n})();\n'

You  can pass `options`__ to the BabelJS compiler just as keywords on
the call to ``babel_compile()``.

__ http://babeljs.io/docs/usage/options/

The DukPY based BabelJS compiler also provides a WebAssets (
http://webassets.readthedocs.org/en/latest/ ) filter to automatically
compile ES6 code in your assets pipeline.  You register this filter as
``babeljs`` within WebAssets using:

.. code:: python

    from webassets.filter import register_filter
    from dukpy.webassets import BabelJS

    register_filter(BabelJS)

Which makes the filter available with the ``babeljs`` name.
Only supported filter option is currently `BABEL_MODULES_LOADER` with value
``systemjs`` or ``umd`` to specify that compiled code should use SystemJS
or UMD instead of CommonJS for modules.

**NOTE:** When using the BabelJS compiler for code that needs to run
in the browser, make sure to add
https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js
dependency.

JSX to React Transpiling
------------------------

DukPy provides a built-in compiler from JSX to React, this is available as
``dukpy.jsx_compile``:

.. code:: python

    >>> import dukpy
    >>> dukpy.jsx_compile('var react_hello = <h1>Hello, world!</h1>;')
    u'"use strict";\n\nvar react_hello = React.createElement(\n  "h1",\n  null,\n  "Hello, world!"\n);'

The DukPY based JSX compiler also provides a WebAssets (
http://webassets.readthedocs.org/en/latest/ ) filter to automatically
compile JSX+ES6 code in your assets pipeline.  You register this filter as
``babeljsx`` within WebAssets using:

.. code:: python

    from webassets.filter import register_filter
    from dukpy.webassets import BabelJSX

    register_filter(BabelJSX)

Which makes the filter available with the ``babeljsx`` name.
This filter supports the same options as the babel one.

Less Transpiling
----------------

DukPy provides a built-in distribution of the less compiler available
through `dukpy.less_compile`:

.. code:: python

    >>> import dukpy
    >>> dukpy.less_compile('.class { width: (1 + 1) }')
    '.class {\n  width: 2;\n}\n'


The DukPY based LESS compiler also provides a WebAssets (
http://webassets.readthedocs.org/en/latest/ ) filter to automatically
compile LESS code in your assets pipeline.  You register this filter as
``lessc`` within WebAssets using:

.. code:: python

    from webassets.filter import register_filter
    from dukpy.webassets import CompileLess

    register_filter(CompileLess)

Which makes the filter available with the ``lessc`` name.


Using the JavaScript Interpreter
--------------------------------

Using dukpy is as simple as calling the ``dukpy.evaljs`` function with
the javascript code:

.. code:: python

    >>> import dukpy
    >>> dukpy.evaljs("var o = {'value': 5}; o['value'] += 3; o")
    {'value': 8}


The ``evaljs`` function executes the javascript and returns the
resulting value as far as it is possible to encode it in JSON.

If execution fails a ``dukpy.JSRuntimeError`` exception is raised
with the failure reason.

Passing Arguments
~~~~~~~~~~~~~~~~~

Any argument passed to ``evaljs`` is available in JavaScript inside
the ``dukpy`` object in javascript. It must be possible to encode
the arguments using JSON for them to be available in Javascript:

.. code:: python

    >>> import dukpy
    >>>
    >>> def sum3(value):
    ...     return dukpy.evaljs("dukpy['value'] + 3", value=value)
    ...
    >>> sum3(7)
    10

Running Multiple Scripts
~~~~~~~~~~~~~~~~~~~~~~~~

The ``evaljs`` function supports providing multiple source codes to
be executed in the same context.

Multiple script can be passed in a list or tuple:

.. code:: python

    >>> import dukpy
    >>> dukpy.evaljs(["var o = {'value': 5}",
    ...               "o['value'] += 3",
    ...               "o"])
    {'value': 8}

This is useful when your code requires dependencies to work,
as you can load the dependency and then your code.

This is actually how the coffeescript compiler is implemented
by DukPy itself:

.. code:: python

    def coffee_compile(source):
        with open(COFFEE_COMPILER, 'r') as coffeescript_js:
            return evaljs((coffeescript_js.read(), 'CoffeeScript.compile(dukpy.coffeecode)'),
                          coffeecode=source)

Using a persistent JavaScript Interpreter
-----------------------------------------

The ``evaljs`` function creates a new interpreter on each call,
this is usually convenient and avoid errors due to dirt global variables
or unexpected execution status.

In some cases you might want to run code that has a slow bootstrap, so
it's convenient to reuse the same interpreter between two different calls
so that the bootstrap cost has already been paid during the first execution.

This can be achieved by using the ``dukpy.JSInterpreter`` object.

Creating a ``dukpy.JSInterpreter`` permits to evaluate code inside that interpreter
and multiple ``eval`` calls will share the same interpreter and global status:


.. code:: python

    >>> import dukpy
    >>> interpreter = dukpy.JSInterpreter()
    >>> interpreter.evaljs("var o = {'value': 5}; o")
    {u'value': 5}
    >>> interpreter.evaljs("o.value += 1; o")
    {u'value': 6}

Loading modules with require
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

When using the ``dukpy.JSInterpreter`` object it is possible to use
the ``require('modulename')`` instruction to load a module inside javascript.

Modules are looked up in all directories registered with
``dukpy.JSInterpreter.loader.register_path``:

.. code:: python

    >>> import dukpy
    >>> jsi = dukpy.JSInterpreter()
    >>> jsi.loader.register_path('./js_modules')
    >>> jsi.evaljs("isEmpty = require('fbjs/lib/isEmpty'); isEmpty([1])")
    False

Installing packages from npmjs.org
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

When using the persistent javascript interpreter it is also possible to install packages
from *npmjs.org* through the ``dukpy.install_jspackage`` function:

.. code:: python

    >>> import dukpy
    >>> jsi = dukpy.JSInterpreter()
    >>> dukpy.install_jspackage('promise', None, './js_modules')
    Packages going to be installed: promise->7.1.1, asap->2.0.3
    Fetching https://registry.npmjs.org/promise/-/promise-7.1.1.tgz..........................
    Fetching https://registry.npmjs.org/asap/-/asap-2.0.3.tgz............
    Installing promise in ./js_modules Done!

The same functionality is also provided by the ``dukpy-install`` shell command::

    $ dukpy-install -d ./js_modules promise
    Packages going to be installed: promise->7.1.1, asap->2.0.3
    Fetching https://registry.npmjs.org/promise/-/promise-7.1.1.tgz..........................
    Fetching https://registry.npmjs.org/asap/-/asap-2.0.3.tgz............
    Installing promise in ./js_modules Done!

Please note that currently `install_jspackage` is not able to resolve conflicting
dependencies.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/amol-/dukpy",
    "name": "dukpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "javascript compiler babeljs jsx coffeescript typescript",
    "author": "Alessandro Molina",
    "author_email": "alessandro@molina.fyi",
    "download_url": "https://files.pythonhosted.org/packages/b0/14/f4625eafe17b4034fedfe0a42fa4236f9ae8d9ce033d3f9aaf2fc0f74664/dukpy-0.3.1.tar.gz",
    "platform": null,
    "description": "dukpy\n=====\n\n.. image:: https://github.com/amol-/dukpy/actions/workflows/run-tests.yml/badge.svg\n    :target: https://github.com/amol-/dukpy/actions/workflows/run-tests.yml\n\n.. image:: https://coveralls.io/repos/amol-/dukpy/badge.png?branch=master\n    :target: https://coveralls.io/r/amol-/dukpy?branch=master\n\n.. image:: https://img.shields.io/pypi/v/dukpy.svg\n   :target: https://pypi.org/p/dukpy\n\n\nDukPy is a simple javascript interpreter for Python built on top of\nduktape engine **without any external dependency**.\nIt comes with a bunch of common transpilers built-in for convenience:\n\n    - *CoffeeScript*\n    - *BabelJS*\n    - *TypeScript*\n    - *JSX*\n    - *LESS*\n\nCoffeeScript Compiler\n---------------------\n\nUsing the coffeescript compiler is as easy as running:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.coffee_compile('''\n    ...     fill = (container, liquid = \"coffee\") ->\n    ...         \"Filling the #{container} with #{liquid}...\"\n    ... ''')\n    '(function() {\\n  var fill;\\n\\n  fill = function*(container, liquid) {\\n    if (liquid == null) {\\n      liquid = \"coffee\";\\n    }\\n    return \"Filling the \" + container + \" with \" + liquid + \"...\";\\n  };\\n\\n}).call(this);\\n'\n\nTypeScript Transpiler\n---------------------\n\nThe TypeScript compiler can be used through the\n``dukpy.typescript_compile`` function:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.typescript_compile('''\n    ... class Greeter {\n    ...     constructor(public greeting: string) { }\n    ...     greet() {\n    ...         return \"<h1>\" + this.greeting + \"</h1>\";\n    ...     }\n    ... };\n    ...\n    ... var greeter = new Greeter(\"Hello, world!\");\n    ... ''')\n    'var Greeter = (function () {\\n    function Greeter(greeting) {\\n        this.greeting = greeting;\\n    }\\n    Greeter.prototype.greet = function () {\\n        return \"<h1>\" + this.greeting + \"</h1>\";\\n    };\\n    return Greeter;\\n})();\\n;\\nvar greeter = new Greeter(\"Hello, world!\");\\n'\n\nCurrently the compiler has built-in options and doesn't accept additional ones,\n\nThe DukPY based TypeScript compiler also provides a WebAssets (\nhttp://webassets.readthedocs.org/en/latest/ ) filter to automatically\ncompile TypeScript code in your assets pipeline.  You register this filter as\n``typescript`` within WebAssets using:\n\n.. code:: python\n\n    from webassets.filter import register_filter\n    from dukpy.webassets import TypeScript\n\n    register_filter(TypeScript)\n\nWhich makes the filter available with the ``typescript`` name.\n\n**NOTE:** When using the TypeScript compiler for code that needs to run\nin the browser, make sure to add\nhttps://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.24/system.js\ndependency. As ``import`` statements are resolved using SystemJS.\n\nEcmaScript6 BabelJS Transpiler\n------------------------------\n\nTo compile ES6 code to ES5 for everyday usage you can use\n``dukpy.babel_compile``:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.babel_compile('''\n    ... class Point {\n    ...     constructor(x, y) {\n    ...             this.x = x;\n    ...         this.y = y;\n    ...         }\n    ...         toString() {\n    ...             return '(' + this.x + ', ' + this.y + ')';\n    ...         }\n    ... }\n    ... ''')\n    '\"use strict\";\\n\\nvar _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };\\n\\nvar _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } };\\n\\nvar Point = (function () {\\n    function Point(x, y) {\\n        _classCallCheck(this, Point);\\n\\n        this.x = x;\\n        this.y = y;\\n    }\\n\\n    _prototypeProperties(Point, null, {\\n        toString: {\\n            value: function toString() {\\n                return \"(\" + this.x + \", \" + this.y + \")\";\\n            },\\n            writable: true,\\n            configurable: true\\n        }\\n    });\\n\\n    return Point;\\n})();\\n'\n\nYou  can pass `options`__ to the BabelJS compiler just as keywords on\nthe call to ``babel_compile()``.\n\n__ http://babeljs.io/docs/usage/options/\n\nThe DukPY based BabelJS compiler also provides a WebAssets (\nhttp://webassets.readthedocs.org/en/latest/ ) filter to automatically\ncompile ES6 code in your assets pipeline.  You register this filter as\n``babeljs`` within WebAssets using:\n\n.. code:: python\n\n    from webassets.filter import register_filter\n    from dukpy.webassets import BabelJS\n\n    register_filter(BabelJS)\n\nWhich makes the filter available with the ``babeljs`` name.\nOnly supported filter option is currently `BABEL_MODULES_LOADER` with value\n``systemjs`` or ``umd`` to specify that compiled code should use SystemJS\nor UMD instead of CommonJS for modules.\n\n**NOTE:** When using the BabelJS compiler for code that needs to run\nin the browser, make sure to add\nhttps://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js\ndependency.\n\nJSX to React Transpiling\n------------------------\n\nDukPy provides a built-in compiler from JSX to React, this is available as\n``dukpy.jsx_compile``:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.jsx_compile('var react_hello = <h1>Hello, world!</h1>;')\n    u'\"use strict\";\\n\\nvar react_hello = React.createElement(\\n  \"h1\",\\n  null,\\n  \"Hello, world!\"\\n);'\n\nThe DukPY based JSX compiler also provides a WebAssets (\nhttp://webassets.readthedocs.org/en/latest/ ) filter to automatically\ncompile JSX+ES6 code in your assets pipeline.  You register this filter as\n``babeljsx`` within WebAssets using:\n\n.. code:: python\n\n    from webassets.filter import register_filter\n    from dukpy.webassets import BabelJSX\n\n    register_filter(BabelJSX)\n\nWhich makes the filter available with the ``babeljsx`` name.\nThis filter supports the same options as the babel one.\n\nLess Transpiling\n----------------\n\nDukPy provides a built-in distribution of the less compiler available\nthrough `dukpy.less_compile`:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.less_compile('.class { width: (1 + 1) }')\n    '.class {\\n  width: 2;\\n}\\n'\n\n\nThe DukPY based LESS compiler also provides a WebAssets (\nhttp://webassets.readthedocs.org/en/latest/ ) filter to automatically\ncompile LESS code in your assets pipeline.  You register this filter as\n``lessc`` within WebAssets using:\n\n.. code:: python\n\n    from webassets.filter import register_filter\n    from dukpy.webassets import CompileLess\n\n    register_filter(CompileLess)\n\nWhich makes the filter available with the ``lessc`` name.\n\n\nUsing the JavaScript Interpreter\n--------------------------------\n\nUsing dukpy is as simple as calling the ``dukpy.evaljs`` function with\nthe javascript code:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.evaljs(\"var o = {'value': 5}; o['value'] += 3; o\")\n    {'value': 8}\n\n\nThe ``evaljs`` function executes the javascript and returns the\nresulting value as far as it is possible to encode it in JSON.\n\nIf execution fails a ``dukpy.JSRuntimeError`` exception is raised\nwith the failure reason.\n\nPassing Arguments\n~~~~~~~~~~~~~~~~~\n\nAny argument passed to ``evaljs`` is available in JavaScript inside\nthe ``dukpy`` object in javascript. It must be possible to encode\nthe arguments using JSON for them to be available in Javascript:\n\n.. code:: python\n\n    >>> import dukpy\n    >>>\n    >>> def sum3(value):\n    ...     return dukpy.evaljs(\"dukpy['value'] + 3\", value=value)\n    ...\n    >>> sum3(7)\n    10\n\nRunning Multiple Scripts\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe ``evaljs`` function supports providing multiple source codes to\nbe executed in the same context.\n\nMultiple script can be passed in a list or tuple:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> dukpy.evaljs([\"var o = {'value': 5}\",\n    ...               \"o['value'] += 3\",\n    ...               \"o\"])\n    {'value': 8}\n\nThis is useful when your code requires dependencies to work,\nas you can load the dependency and then your code.\n\nThis is actually how the coffeescript compiler is implemented\nby DukPy itself:\n\n.. code:: python\n\n    def coffee_compile(source):\n        with open(COFFEE_COMPILER, 'r') as coffeescript_js:\n            return evaljs((coffeescript_js.read(), 'CoffeeScript.compile(dukpy.coffeecode)'),\n                          coffeecode=source)\n\nUsing a persistent JavaScript Interpreter\n-----------------------------------------\n\nThe ``evaljs`` function creates a new interpreter on each call,\nthis is usually convenient and avoid errors due to dirt global variables\nor unexpected execution status.\n\nIn some cases you might want to run code that has a slow bootstrap, so\nit's convenient to reuse the same interpreter between two different calls\nso that the bootstrap cost has already been paid during the first execution.\n\nThis can be achieved by using the ``dukpy.JSInterpreter`` object.\n\nCreating a ``dukpy.JSInterpreter`` permits to evaluate code inside that interpreter\nand multiple ``eval`` calls will share the same interpreter and global status:\n\n\n.. code:: python\n\n    >>> import dukpy\n    >>> interpreter = dukpy.JSInterpreter()\n    >>> interpreter.evaljs(\"var o = {'value': 5}; o\")\n    {u'value': 5}\n    >>> interpreter.evaljs(\"o.value += 1; o\")\n    {u'value': 6}\n\nLoading modules with require\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen using the ``dukpy.JSInterpreter`` object it is possible to use\nthe ``require('modulename')`` instruction to load a module inside javascript.\n\nModules are looked up in all directories registered with\n``dukpy.JSInterpreter.loader.register_path``:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> jsi = dukpy.JSInterpreter()\n    >>> jsi.loader.register_path('./js_modules')\n    >>> jsi.evaljs(\"isEmpty = require('fbjs/lib/isEmpty'); isEmpty([1])\")\n    False\n\nInstalling packages from npmjs.org\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen using the persistent javascript interpreter it is also possible to install packages\nfrom *npmjs.org* through the ``dukpy.install_jspackage`` function:\n\n.. code:: python\n\n    >>> import dukpy\n    >>> jsi = dukpy.JSInterpreter()\n    >>> dukpy.install_jspackage('promise', None, './js_modules')\n    Packages going to be installed: promise->7.1.1, asap->2.0.3\n    Fetching https://registry.npmjs.org/promise/-/promise-7.1.1.tgz..........................\n    Fetching https://registry.npmjs.org/asap/-/asap-2.0.3.tgz............\n    Installing promise in ./js_modules Done!\n\nThe same functionality is also provided by the ``dukpy-install`` shell command::\n\n    $ dukpy-install -d ./js_modules promise\n    Packages going to be installed: promise->7.1.1, asap->2.0.3\n    Fetching https://registry.npmjs.org/promise/-/promise-7.1.1.tgz..........................\n    Fetching https://registry.npmjs.org/asap/-/asap-2.0.3.tgz............\n    Installing promise in ./js_modules Done!\n\nPlease note that currently `install_jspackage` is not able to resolve conflicting\ndependencies.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple JavaScript interpreter for Python",
    "version": "0.3.1",
    "project_urls": {
        "CI: AppVeyor": "https://ci.appveyor.com/project/amol-/dukpy",
        "CI: Travis": "https://travis-ci.org/amol-/dukpy",
        "GitHub: issues": "https://github.com/amol-/dukpy/issues",
        "GitHub: repo": "https://github.com/amol-/dukpy",
        "Homepage": "https://github.com/amol-/dukpy"
    },
    "split_keywords": [
        "javascript",
        "compiler",
        "babeljs",
        "jsx",
        "coffeescript",
        "typescript"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d17b77a32eff84d33bd27341a583e02e8805ce1fabe595b5daa6a8a825dd6844",
                "md5": "f0290e27bb9a31761d84c9133b39e9ed",
                "sha256": "3e391575dc13e01481eeeba6fd58186ef465df88d6f89c3a7ee6527968b5e797"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0290e27bb9a31761d84c9133b39e9ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1366787,
            "upload_time": "2024-02-15T20:22:53",
            "upload_time_iso_8601": "2024-02-15T20:22:53.626798Z",
            "url": "https://files.pythonhosted.org/packages/d1/7b/77a32eff84d33bd27341a583e02e8805ce1fabe595b5daa6a8a825dd6844/dukpy-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c16ae36da4e05c3d29db05e530cc6a451e4618b3dcd4dff547627287b74af4f",
                "md5": "88929d094eb75623154862effd936bf3",
                "sha256": "736aeeb175d6e4f042f1ddff8f8b5588ae27527578ac3355d210a377b20a8696"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "88929d094eb75623154862effd936bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1338249,
            "upload_time": "2024-02-15T20:22:58",
            "upload_time_iso_8601": "2024-02-15T20:22:58.425070Z",
            "url": "https://files.pythonhosted.org/packages/9c/16/ae36da4e05c3d29db05e530cc6a451e4618b3dcd4dff547627287b74af4f/dukpy-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dd84ec6099b7d9e2301a1656cf00510477fbc0149c3230469a3db9667802fed",
                "md5": "b17f254ed38f880d919877f7cb9f0da0",
                "sha256": "e04c461b8e493e95e4a81ea266b64dc30388baa1003409931c66769d11b3d468"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b17f254ed38f880d919877f7cb9f0da0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2462741,
            "upload_time": "2024-02-15T20:23:06",
            "upload_time_iso_8601": "2024-02-15T20:23:06.555546Z",
            "url": "https://files.pythonhosted.org/packages/5d/d8/4ec6099b7d9e2301a1656cf00510477fbc0149c3230469a3db9667802fed/dukpy-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f08e84c7a41f35701fe54556f0968972a8e813409cd4e28b72c5c25e2a7a86dd",
                "md5": "d51241f909aeeee637d70da4f2fb798d",
                "sha256": "fbeb35a6c3be2c584bfc1d330b7718be0b1d62d5e85f596e60669f126ad7e6a7"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d51241f909aeeee637d70da4f2fb798d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2417324,
            "upload_time": "2024-02-15T20:23:09",
            "upload_time_iso_8601": "2024-02-15T20:23:09.527866Z",
            "url": "https://files.pythonhosted.org/packages/f0/8e/84c7a41f35701fe54556f0968972a8e813409cd4e28b72c5c25e2a7a86dd/dukpy-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d785c5518bd7188d1fc395a1a30a27a189b54605582563d03fd46128c97c08ce",
                "md5": "d6352b5011dd4776b122b8e6461cd732",
                "sha256": "4e72a07a07ef8b3a8ff2759dc3659209e1fc82def8c04278806a4188907a63da"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d6352b5011dd4776b122b8e6461cd732",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2450350,
            "upload_time": "2024-02-15T20:23:12",
            "upload_time_iso_8601": "2024-02-15T20:23:12.138474Z",
            "url": "https://files.pythonhosted.org/packages/d7/85/c5518bd7188d1fc395a1a30a27a189b54605582563d03fd46128c97c08ce/dukpy-0.3.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71ef9d2c8e6c85dd0e6cb1f84799a7b62448217e6ab8c04ccbc8cc981c558c6b",
                "md5": "8d0255fbe4e55a146c4a299fff994aa8",
                "sha256": "1a79e5a480c402b61227384dc340f0c76dddb802cb07378d3acbe3fcf2f8b0bd"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d0255fbe4e55a146c4a299fff994aa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2485173,
            "upload_time": "2024-02-15T20:23:14",
            "upload_time_iso_8601": "2024-02-15T20:23:14.812341Z",
            "url": "https://files.pythonhosted.org/packages/71/ef/9d2c8e6c85dd0e6cb1f84799a7b62448217e6ab8c04ccbc8cc981c558c6b/dukpy-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0e583f5adf42e76fb571b8e03b53054f081ddd28337251e11b56e80a94d810a",
                "md5": "f0488b61748cf6ac6b2c3334b7921633",
                "sha256": "5713a0b44136cd2c64b1bdc4257d904c7040eb96cc58e138b90f2d049d82d265"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f0488b61748cf6ac6b2c3334b7921633",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1256522,
            "upload_time": "2024-02-15T20:23:16",
            "upload_time_iso_8601": "2024-02-15T20:23:16.931973Z",
            "url": "https://files.pythonhosted.org/packages/e0/e5/83f5adf42e76fb571b8e03b53054f081ddd28337251e11b56e80a94d810a/dukpy-0.3.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61b017ecabc2dede92f2628266fe9e035ac6e1c3cf578135581fdf225784deaa",
                "md5": "eb75e3483556042a27ed405839569197",
                "sha256": "9bd1bf1bec4d5c40efd33e008444bcdf9541a266b27bc6c2fce6f89e51ecaa9e"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb75e3483556042a27ed405839569197",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1295184,
            "upload_time": "2024-02-15T20:23:19",
            "upload_time_iso_8601": "2024-02-15T20:23:19.039860Z",
            "url": "https://files.pythonhosted.org/packages/61/b0/17ecabc2dede92f2628266fe9e035ac6e1c3cf578135581fdf225784deaa/dukpy-0.3.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c2d69d5e370dcce1d64a96dd15d56aa65dbf73382f7b609e03d9e75875f0e9f",
                "md5": "193af453483e942d07e0e7a8e7567f68",
                "sha256": "ed14de64e549b28865b780de1deadc8a680502fb20e362e37f8abc7b4a3ea644"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "193af453483e942d07e0e7a8e7567f68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1366789,
            "upload_time": "2024-02-15T20:23:21",
            "upload_time_iso_8601": "2024-02-15T20:23:21.154487Z",
            "url": "https://files.pythonhosted.org/packages/5c/2d/69d5e370dcce1d64a96dd15d56aa65dbf73382f7b609e03d9e75875f0e9f/dukpy-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cf27a151393ada07b131cbc70951a5a109adeb8f5298667305de837f04ff3a8",
                "md5": "93e7a0f9db50a38df963a98629ae056a",
                "sha256": "af025590c6758988a950a98b81366a66a5ab4d99af93f93f46c8c6e114677d59"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "93e7a0f9db50a38df963a98629ae056a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1338252,
            "upload_time": "2024-02-15T20:23:24",
            "upload_time_iso_8601": "2024-02-15T20:23:24.160478Z",
            "url": "https://files.pythonhosted.org/packages/1c/f2/7a151393ada07b131cbc70951a5a109adeb8f5298667305de837f04ff3a8/dukpy-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaf01115ba1427e0da11ef0df39a8c142f463a393ed1801d85df152e3995e448",
                "md5": "b3c300b76db26a2276cbb6a81879d66c",
                "sha256": "bd2fec7c564a62aab38355438b52fccd28d35859d18510a1ab70d069889b48e1"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3c300b76db26a2276cbb6a81879d66c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2462782,
            "upload_time": "2024-02-15T20:23:26",
            "upload_time_iso_8601": "2024-02-15T20:23:26.611696Z",
            "url": "https://files.pythonhosted.org/packages/aa/f0/1115ba1427e0da11ef0df39a8c142f463a393ed1801d85df152e3995e448/dukpy-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33bc1c65f1b293cac7649ec9a4d53a8ed85c0555d0f4f2f5944b4432583578f0",
                "md5": "52d1b90f83d45285d84aa6900e8884ff",
                "sha256": "dca84f9cbd5b94ce101fc7db64e47c7701e9954f48a2f8aaa64394af885385d4"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "52d1b90f83d45285d84aa6900e8884ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2417596,
            "upload_time": "2024-02-15T20:23:29",
            "upload_time_iso_8601": "2024-02-15T20:23:29.174088Z",
            "url": "https://files.pythonhosted.org/packages/33/bc/1c65f1b293cac7649ec9a4d53a8ed85c0555d0f4f2f5944b4432583578f0/dukpy-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b744e6897cb93149d9d911f9b329f78ad4675d36d1d42ff9121e206a0a49f1e4",
                "md5": "5338d40946eb485f00bca5cb4c785e4e",
                "sha256": "253489f8856ab1af94d1c982052a5441b253c1a5a721ff29d33b65f1b8c27988"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5338d40946eb485f00bca5cb4c785e4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2451378,
            "upload_time": "2024-02-15T20:23:32",
            "upload_time_iso_8601": "2024-02-15T20:23:32.141828Z",
            "url": "https://files.pythonhosted.org/packages/b7/44/e6897cb93149d9d911f9b329f78ad4675d36d1d42ff9121e206a0a49f1e4/dukpy-0.3.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f261e64ce3200ac49dcba696e1308bf68c96856da8f136bef0a6fdf3c22d7852",
                "md5": "6c4132cb0b9f2b3aa0eae162baa201bf",
                "sha256": "83a3014d707c587a18f33c1f3f87bb872278e090f4877ec78919cffcda07a774"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c4132cb0b9f2b3aa0eae162baa201bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2486485,
            "upload_time": "2024-02-15T20:23:34",
            "upload_time_iso_8601": "2024-02-15T20:23:34.326756Z",
            "url": "https://files.pythonhosted.org/packages/f2/61/e64ce3200ac49dcba696e1308bf68c96856da8f136bef0a6fdf3c22d7852/dukpy-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "470931e060857f3037770960aab152b0c688af07e53a0fda839e186e315f3f5d",
                "md5": "497b1f51d15bc4584fc411a33caa9d1a",
                "sha256": "3f661a25997b981c6afd650ce0cd109b9d9665ba4b667fc0f2c876b5ca7d4cab"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "497b1f51d15bc4584fc411a33caa9d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1256578,
            "upload_time": "2024-02-15T20:23:36",
            "upload_time_iso_8601": "2024-02-15T20:23:36.545042Z",
            "url": "https://files.pythonhosted.org/packages/47/09/31e060857f3037770960aab152b0c688af07e53a0fda839e186e315f3f5d/dukpy-0.3.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be0055811009b139551475c7b8449340d78697ccaf62a7261b567bbd7e110f5e",
                "md5": "2d6f0345bfc19c04e68c8b047b9c03f4",
                "sha256": "2a62b4c7ecfe4223c8be588f50fb1b6a3f72b9eda12ad9aa3ef84efffb3e3b02"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2d6f0345bfc19c04e68c8b047b9c03f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1295201,
            "upload_time": "2024-02-15T20:23:39",
            "upload_time_iso_8601": "2024-02-15T20:23:39.465022Z",
            "url": "https://files.pythonhosted.org/packages/be/00/55811009b139551475c7b8449340d78697ccaf62a7261b567bbd7e110f5e/dukpy-0.3.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c9eff90d2d1184044af144d33d15fb0689ba905f0a98b6fd69d5d8915024157",
                "md5": "d1e9b9529eb313e9b03b1624b52d3852",
                "sha256": "9823d4a66e094f3cd722022e65601a7a560642250c4c033f4df5ee62b95043c6"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1e9b9529eb313e9b03b1624b52d3852",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1366815,
            "upload_time": "2024-02-15T20:23:41",
            "upload_time_iso_8601": "2024-02-15T20:23:41.461179Z",
            "url": "https://files.pythonhosted.org/packages/0c/9e/ff90d2d1184044af144d33d15fb0689ba905f0a98b6fd69d5d8915024157/dukpy-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "150562236f89054120de207e10222de220b6b931ac4ea8d3a95e39a1620b8a26",
                "md5": "597b03f3356e9491b582432266e9c185",
                "sha256": "f9500f910c0e50ec98763e7ff3c2e553f40c1f1513301e8a1b42005ccc5ac548"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "597b03f3356e9491b582432266e9c185",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1338248,
            "upload_time": "2024-02-15T20:23:43",
            "upload_time_iso_8601": "2024-02-15T20:23:43.737019Z",
            "url": "https://files.pythonhosted.org/packages/15/05/62236f89054120de207e10222de220b6b931ac4ea8d3a95e39a1620b8a26/dukpy-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4ef38a98e91fb5cf60f8a984f00a74b289ced7edb543dc1b05b6957c6738c0",
                "md5": "2d30aa24b48add2711f1baa26e4a104d",
                "sha256": "76783b8a5d0e6e046542365926fc89152f5c77926ee443d84db80546e1a910fd"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d30aa24b48add2711f1baa26e4a104d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2463167,
            "upload_time": "2024-02-15T20:23:46",
            "upload_time_iso_8601": "2024-02-15T20:23:46.998447Z",
            "url": "https://files.pythonhosted.org/packages/7f/4e/f38a98e91fb5cf60f8a984f00a74b289ced7edb543dc1b05b6957c6738c0/dukpy-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de6853c6a747b0c0c2bca0f88e3134d5634b027dec0fc35364f8b158135dbbaa",
                "md5": "022a4ad06b5448e03edfbdc8b3fec448",
                "sha256": "2bcc8b740f696c11d771e3967cc30257925f420ac4585abc2dc758886fc1d0aa"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "022a4ad06b5448e03edfbdc8b3fec448",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2419495,
            "upload_time": "2024-02-15T20:23:49",
            "upload_time_iso_8601": "2024-02-15T20:23:49.587344Z",
            "url": "https://files.pythonhosted.org/packages/de/68/53c6a747b0c0c2bca0f88e3134d5634b027dec0fc35364f8b158135dbbaa/dukpy-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a926536d75f52e4a4dca2cfe3930b12211a14fa1a97f807697ade358dc3fe338",
                "md5": "2fc6fbe19402e610487fe55a5ddb204a",
                "sha256": "3f6e92a2899e0219bb5698523a13896143a5ffed3a9eaf38f5f34df91855f01f"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2fc6fbe19402e610487fe55a5ddb204a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2450515,
            "upload_time": "2024-02-15T20:23:52",
            "upload_time_iso_8601": "2024-02-15T20:23:52.070384Z",
            "url": "https://files.pythonhosted.org/packages/a9/26/536d75f52e4a4dca2cfe3930b12211a14fa1a97f807697ade358dc3fe338/dukpy-0.3.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1509c7c58db947be4e8abc9e496ff3b6c0d0ecdc0f2a4afdbff276957c254606",
                "md5": "fe1ec42cb6b7159b3a72d730fcb54c03",
                "sha256": "d81d5ee0a9d3343e6135992a2b59cc626ee00427d56432583a51784a3e74d61f"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe1ec42cb6b7159b3a72d730fcb54c03",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2486245,
            "upload_time": "2024-02-15T20:23:55",
            "upload_time_iso_8601": "2024-02-15T20:23:55.156244Z",
            "url": "https://files.pythonhosted.org/packages/15/09/c7c58db947be4e8abc9e496ff3b6c0d0ecdc0f2a4afdbff276957c254606/dukpy-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3a7757807f2e4f4d6d2d09c9d122dd2e93f9e0a03ac98b21fe2be8b0291b2e",
                "md5": "01a50812c36b4637dfe3521630d0c2d2",
                "sha256": "e8c6e54519457ad3d248bb776353819e636d7fefad1cc994a0c7b472539dadbf"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "01a50812c36b4637dfe3521630d0c2d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1256626,
            "upload_time": "2024-02-15T20:23:58",
            "upload_time_iso_8601": "2024-02-15T20:23:58.550261Z",
            "url": "https://files.pythonhosted.org/packages/ce/3a/7757807f2e4f4d6d2d09c9d122dd2e93f9e0a03ac98b21fe2be8b0291b2e/dukpy-0.3.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b53e4906800994974d77ba24c963025e101d5df7f5c5c71b461befd8b542067",
                "md5": "a04797748d441069b7fbc8dfeaf42f24",
                "sha256": "7b1769caedf38e746c02a89f96ffa6091da84370bed7768e58b97e1466b2eaa9"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a04797748d441069b7fbc8dfeaf42f24",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1295201,
            "upload_time": "2024-02-15T20:24:00",
            "upload_time_iso_8601": "2024-02-15T20:24:00.845170Z",
            "url": "https://files.pythonhosted.org/packages/6b/53/e4906800994974d77ba24c963025e101d5df7f5c5c71b461befd8b542067/dukpy-0.3.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b84efa1a1265874329924edb0a334eb471d4403c61b612d0adf88e3eb9ef498",
                "md5": "210a4d0d449335c579f9ab5fc8e7f21d",
                "sha256": "e13ddb47c2c31e6b66f232d26b6a574a498229a3571fbd4d3a459ebb14b87b36"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "210a4d0d449335c579f9ab5fc8e7f21d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1364609,
            "upload_time": "2024-02-15T20:24:03",
            "upload_time_iso_8601": "2024-02-15T20:24:03.135562Z",
            "url": "https://files.pythonhosted.org/packages/2b/84/efa1a1265874329924edb0a334eb471d4403c61b612d0adf88e3eb9ef498/dukpy-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "618d9fece220fc2da177a445063b58029708c98bd9e0a7afe6bda16c5f765e29",
                "md5": "9e44251972b5ede0e9717099fff735ca",
                "sha256": "d853863b9ab515b1c3108001b3d93a0a6d31d88f08f22b472c068b90659fccee"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e44251972b5ede0e9717099fff735ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2461310,
            "upload_time": "2024-02-15T20:24:05",
            "upload_time_iso_8601": "2024-02-15T20:24:05.801558Z",
            "url": "https://files.pythonhosted.org/packages/61/8d/9fece220fc2da177a445063b58029708c98bd9e0a7afe6bda16c5f765e29/dukpy-0.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d1fc14d5fcba101ad92a206251161d6c472749481ef5cf59feacdadf3e22586",
                "md5": "643c11c71455c76ee21eafedf3309274",
                "sha256": "6c6a96241a433adc4fda9de9824bfab8d1831f7576d2ec8853a71a662ecc07ee"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "643c11c71455c76ee21eafedf3309274",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2415271,
            "upload_time": "2024-02-15T20:24:08",
            "upload_time_iso_8601": "2024-02-15T20:24:08.327052Z",
            "url": "https://files.pythonhosted.org/packages/8d/1f/c14d5fcba101ad92a206251161d6c472749481ef5cf59feacdadf3e22586/dukpy-0.3.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "034bdfbad9f44af698b083d9350eacfd3adc2d95a4f438d3399c59a101c8c422",
                "md5": "7a8d8bde95d77594a3095cbbccdf2935",
                "sha256": "6eb5101b5567b81aad303bf71a52a36cc5687bb04ee8850ab0b49a5b22ac7108"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7a8d8bde95d77594a3095cbbccdf2935",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2447301,
            "upload_time": "2024-02-15T20:24:10",
            "upload_time_iso_8601": "2024-02-15T20:24:10.873686Z",
            "url": "https://files.pythonhosted.org/packages/03/4b/dfbad9f44af698b083d9350eacfd3adc2d95a4f438d3399c59a101c8c422/dukpy-0.3.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e84ee7012163e33cc32db4526b0303af38a55c8a8f13131b6de8d44871b1894",
                "md5": "81cd1b87d583453fddf0caf96744257e",
                "sha256": "7c3dfabb9aadf79a53642570ebe0ab1775f3097c145acb267a7aaf26d1d5021e"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81cd1b87d583453fddf0caf96744257e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2481831,
            "upload_time": "2024-02-15T20:24:13",
            "upload_time_iso_8601": "2024-02-15T20:24:13.606437Z",
            "url": "https://files.pythonhosted.org/packages/4e/84/ee7012163e33cc32db4526b0303af38a55c8a8f13131b6de8d44871b1894/dukpy-0.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de85f2053ca3bb178deba299051c34aa381437d11b7c9eeb7bc884bcb7d3efd8",
                "md5": "b23ad26f34bbf06efef445e6b51a5363",
                "sha256": "37c3bad0aa6d9ab3f2d9e76611f510c59e74cc9b87f4aaeb3f05353c1f4d190d"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "b23ad26f34bbf06efef445e6b51a5363",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1280443,
            "upload_time": "2024-02-15T20:24:15",
            "upload_time_iso_8601": "2024-02-15T20:24:15.996139Z",
            "url": "https://files.pythonhosted.org/packages/de/85/f2053ca3bb178deba299051c34aa381437d11b7c9eeb7bc884bcb7d3efd8/dukpy-0.3.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "071aa5801b3db7c6ef741d08339b43fd971b6b9376076809bcbada678711931d",
                "md5": "94a86fe7c1bd879c7d54c77e7b3a4cc8",
                "sha256": "0e9d1f7be1f0e037e80587b1d55e6e9107c7d8955299fb9c6e2215a45d8f5039"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "94a86fe7c1bd879c7d54c77e7b3a4cc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1324198,
            "upload_time": "2024-02-15T20:24:18",
            "upload_time_iso_8601": "2024-02-15T20:24:18.649104Z",
            "url": "https://files.pythonhosted.org/packages/07/1a/a5801b3db7c6ef741d08339b43fd971b6b9376076809bcbada678711931d/dukpy-0.3.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da6131d888d28dadaee81942676da66f5743644a6a2c526f017f383028482a8b",
                "md5": "24d914d0255ca05af8fd8ea66365a21b",
                "sha256": "9b85bae3405e45ec472662d4d322d1f0ad7ad78310c92dcad4b7ae4de8349cef"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24d914d0255ca05af8fd8ea66365a21b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1366748,
            "upload_time": "2024-02-15T20:24:20",
            "upload_time_iso_8601": "2024-02-15T20:24:20.995818Z",
            "url": "https://files.pythonhosted.org/packages/da/61/31d888d28dadaee81942676da66f5743644a6a2c526f017f383028482a8b/dukpy-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d487b9a0f9eceda24a3b61fed7cbbe512dccfac302fb3678a4b4d11b2ece06e",
                "md5": "4a0f1d18d20625a0de06a48dea5580bf",
                "sha256": "2dc24577fca03a246e23b3b7bf1f4423321a99395aa4a98597f37aed69e034c5"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a0f1d18d20625a0de06a48dea5580bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2462310,
            "upload_time": "2024-02-15T20:24:23",
            "upload_time_iso_8601": "2024-02-15T20:24:23.770695Z",
            "url": "https://files.pythonhosted.org/packages/1d/48/7b9a0f9eceda24a3b61fed7cbbe512dccfac302fb3678a4b4d11b2ece06e/dukpy-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12086058b4128657f45a33efc123db9b33afa78695bd1ae571226fe2e55be6d4",
                "md5": "eb8caa04f51f038727b91d9d9d352484",
                "sha256": "102c2ccccf5ce59eecce2202c0c2822b6710b40505cdffbd6fe00d3ae32f3e0b"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eb8caa04f51f038727b91d9d9d352484",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2417351,
            "upload_time": "2024-02-15T20:24:27",
            "upload_time_iso_8601": "2024-02-15T20:24:27.619324Z",
            "url": "https://files.pythonhosted.org/packages/12/08/6058b4128657f45a33efc123db9b33afa78695bd1ae571226fe2e55be6d4/dukpy-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fb08456f679d6e6c2918ca430284fb01213caad8d35661a46b669c0f3b734ad",
                "md5": "3634223e5444fc0f62fcaaa4e097e9ef",
                "sha256": "89fd6c89c0a6bbd6b2aae572a6f45e3fd2944208a8fef27be80be387e97e8094"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3634223e5444fc0f62fcaaa4e097e9ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2450944,
            "upload_time": "2024-02-15T20:24:31",
            "upload_time_iso_8601": "2024-02-15T20:24:31.415935Z",
            "url": "https://files.pythonhosted.org/packages/3f/b0/8456f679d6e6c2918ca430284fb01213caad8d35661a46b669c0f3b734ad/dukpy-0.3.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d3db7da41b34701eb740291926572cf40a7b751e03739bc685d37aa79a9d8ce",
                "md5": "4d3e0fee34f8ed10076d9ebf7bb3bcbe",
                "sha256": "98b1bd4d25fb8e6c3ee82ce3343e7c5a0d2cf42ef4541fd1fb390a7d8c1e498c"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d3e0fee34f8ed10076d9ebf7bb3bcbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2486114,
            "upload_time": "2024-02-15T20:24:36",
            "upload_time_iso_8601": "2024-02-15T20:24:36.051138Z",
            "url": "https://files.pythonhosted.org/packages/6d/3d/b7da41b34701eb740291926572cf40a7b751e03739bc685d37aa79a9d8ce/dukpy-0.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddcafa3cc60182e1db0b0c2cb34393d6b85b13eaaf0901e5aa2fd57780c27842",
                "md5": "11616f9bfa03ceffb63a9243a2395916",
                "sha256": "7f9ee5b42819d49b469bf782b09ac98a55e440d887ff8caf7a0866bdfea7e849"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "11616f9bfa03ceffb63a9243a2395916",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1256530,
            "upload_time": "2024-02-15T20:24:38",
            "upload_time_iso_8601": "2024-02-15T20:24:38.286015Z",
            "url": "https://files.pythonhosted.org/packages/dd/ca/fa3cc60182e1db0b0c2cb34393d6b85b13eaaf0901e5aa2fd57780c27842/dukpy-0.3.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "980bc93fdb13bc10c19a07cef8c6c83adbab9aa9905fbe7714ee3d6239925ba3",
                "md5": "69be1010f27d443e98604f8fec12a5c3",
                "sha256": "4a82abacad05fb2b8b12e7c08db95c4d8c9e38e066e64956af6c340fa209f3f1"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "69be1010f27d443e98604f8fec12a5c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1295163,
            "upload_time": "2024-02-15T20:24:41",
            "upload_time_iso_8601": "2024-02-15T20:24:41.559783Z",
            "url": "https://files.pythonhosted.org/packages/98/0b/c93fdb13bc10c19a07cef8c6c83adbab9aa9905fbe7714ee3d6239925ba3/dukpy-0.3.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09d482857ce84ee416a63d6d9c02907a1db0c5853bf714d5d98f1bed10ce675c",
                "md5": "27e314c8bb57af87f907ebb7107d9de9",
                "sha256": "5c466df028856314d1b75f8f032def8fee58ae39a14cea904ec79fbba5152f0a"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27e314c8bb57af87f907ebb7107d9de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1366784,
            "upload_time": "2024-02-15T20:24:44",
            "upload_time_iso_8601": "2024-02-15T20:24:44.211595Z",
            "url": "https://files.pythonhosted.org/packages/09/d4/82857ce84ee416a63d6d9c02907a1db0c5853bf714d5d98f1bed10ce675c/dukpy-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "360b77895f9c26b81aa3027d8df9e07ac5fd48ca599348d438d2a6da6ea264f9",
                "md5": "d869d87c239c63e2a379555c3ed48dcd",
                "sha256": "177f2a6155152b0b8958d407f73deee56b049e206c56acb88a79116a90d9bfea"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d869d87c239c63e2a379555c3ed48dcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1338245,
            "upload_time": "2024-02-15T20:24:47",
            "upload_time_iso_8601": "2024-02-15T20:24:47.460488Z",
            "url": "https://files.pythonhosted.org/packages/36/0b/77895f9c26b81aa3027d8df9e07ac5fd48ca599348d438d2a6da6ea264f9/dukpy-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc23a8c6d91e617abe5a7243c88664875ef2a495533b452a4d3c3c184ac49269",
                "md5": "72338c605e00669924f929d1bc6f1b12",
                "sha256": "bdf9a2f7511c8bbf059d0a43dc97e50dd07f68b99eb3349223c72d888079140b"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72338c605e00669924f929d1bc6f1b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2463156,
            "upload_time": "2024-02-15T20:24:50",
            "upload_time_iso_8601": "2024-02-15T20:24:50.829688Z",
            "url": "https://files.pythonhosted.org/packages/dc/23/a8c6d91e617abe5a7243c88664875ef2a495533b452a4d3c3c184ac49269/dukpy-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34fc0bd9a00093b5a436e0d67bc0af332c97bcb980ca4be27345d904f1eb8f3b",
                "md5": "77b7a5139808f1b7405e1406dd11c05c",
                "sha256": "85f25b5771f5c83edbe8a3db3ea4df0009bef1b8a7dbb9650af29bdbe5f214be"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "77b7a5139808f1b7405e1406dd11c05c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2418291,
            "upload_time": "2024-02-15T20:24:54",
            "upload_time_iso_8601": "2024-02-15T20:24:54.586351Z",
            "url": "https://files.pythonhosted.org/packages/34/fc/0bd9a00093b5a436e0d67bc0af332c97bcb980ca4be27345d904f1eb8f3b/dukpy-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0efd75d4eb729abbb1a7442c31db6846bb9cdcc5b23c6ecd409021346d95d3aa",
                "md5": "89cd5eb5bc502a2fc1bc879e4c7be7f5",
                "sha256": "9f573fea1f632787ca0ecb4143367bbe9e0d083dfd012a1f93b21f831c2866de"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "89cd5eb5bc502a2fc1bc879e4c7be7f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2450404,
            "upload_time": "2024-02-15T20:24:58",
            "upload_time_iso_8601": "2024-02-15T20:24:58.096713Z",
            "url": "https://files.pythonhosted.org/packages/0e/fd/75d4eb729abbb1a7442c31db6846bb9cdcc5b23c6ecd409021346d95d3aa/dukpy-0.3.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2e200990a4234788ab66d15f233a6b318ee9534477846d3eb7aaa6d3efec507",
                "md5": "ff26d84cf4d7d3ec406f90cf826c31d2",
                "sha256": "c418f5e893e48eba7fdab584582c3ce1d9517ce069948efe62bee160d71d4541"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff26d84cf4d7d3ec406f90cf826c31d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2485344,
            "upload_time": "2024-02-15T20:25:01",
            "upload_time_iso_8601": "2024-02-15T20:25:01.386841Z",
            "url": "https://files.pythonhosted.org/packages/e2/e2/00990a4234788ab66d15f233a6b318ee9534477846d3eb7aaa6d3efec507/dukpy-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19c74e66b84394ee4f36e67583a2af8a27e46c03ff24df646e195ab1fb9f6cb4",
                "md5": "91fb8316fa50536c76852223e058bef8",
                "sha256": "38f3c6ac6855c3800064327e238408a10845a0c1b7c1103511e422168761342a"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "91fb8316fa50536c76852223e058bef8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1256537,
            "upload_time": "2024-02-15T20:25:04",
            "upload_time_iso_8601": "2024-02-15T20:25:04.906095Z",
            "url": "https://files.pythonhosted.org/packages/19/c7/4e66b84394ee4f36e67583a2af8a27e46c03ff24df646e195ab1fb9f6cb4/dukpy-0.3.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "634cbbcd484facefc79cb890addd120a87fe19bf85b737f03c05a162b2f5703e",
                "md5": "667664d32ba20fe68b039dc587010bec",
                "sha256": "821b5a1ae04475d1c49d5b1e32a0ae916555003e23064b3269a40547df4caeca"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "667664d32ba20fe68b039dc587010bec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1295147,
            "upload_time": "2024-02-15T20:25:08",
            "upload_time_iso_8601": "2024-02-15T20:25:08.267644Z",
            "url": "https://files.pythonhosted.org/packages/63/4c/bbcd484facefc79cb890addd120a87fe19bf85b737f03c05a162b2f5703e/dukpy-0.3.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a08891f9f0c420855f7367e1bb43af2cca4fb80dd70862b476ee1bb780b76a51",
                "md5": "03177f7aff558206de66bc7a68ffb094",
                "sha256": "79aa08abf3800e26846c9f4e5dfdc6314816c409409ff381b45b418a6b01d3c0"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03177f7aff558206de66bc7a68ffb094",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1366781,
            "upload_time": "2024-02-15T20:25:10",
            "upload_time_iso_8601": "2024-02-15T20:25:10.950104Z",
            "url": "https://files.pythonhosted.org/packages/a0/88/91f9f0c420855f7367e1bb43af2cca4fb80dd70862b476ee1bb780b76a51/dukpy-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf4049ac574f98a88f2dd72b168359effc9438ec57610a3da6d600105243e5d",
                "md5": "3e9ef41df06cbb55649eb924419adb87",
                "sha256": "4d031cac2bbab34133a84fbbcbdc417b1f5ac54d7a0b8f1e6795b9f7e5f4ac01"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e9ef41df06cbb55649eb924419adb87",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1338246,
            "upload_time": "2024-02-15T20:25:13",
            "upload_time_iso_8601": "2024-02-15T20:25:13.432167Z",
            "url": "https://files.pythonhosted.org/packages/cd/f4/049ac574f98a88f2dd72b168359effc9438ec57610a3da6d600105243e5d/dukpy-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c213e1cbeb3adacdc38a20047d1d4721f03074a06e05b1ff020de5d77b06f6b",
                "md5": "dd2c7b15a303cdbc9a82316d6b620b57",
                "sha256": "87cea82433fc23533e4373c5f6b4c1f90203488850e1f3551024a4382cb5fedf"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd2c7b15a303cdbc9a82316d6b620b57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2462565,
            "upload_time": "2024-02-15T20:25:15",
            "upload_time_iso_8601": "2024-02-15T20:25:15.918925Z",
            "url": "https://files.pythonhosted.org/packages/4c/21/3e1cbeb3adacdc38a20047d1d4721f03074a06e05b1ff020de5d77b06f6b/dukpy-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fedae7c5e1588c858aae3ed76540fcd8c457adafa8d7a9fe01cfc0244609e809",
                "md5": "a0d90423a01b8259e37fa804a50900ca",
                "sha256": "b2c33776f954a8edbf03b1862703eee6ca7c9df0ea8bef18254c8962b8b53739"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a0d90423a01b8259e37fa804a50900ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2416988,
            "upload_time": "2024-02-15T20:25:19",
            "upload_time_iso_8601": "2024-02-15T20:25:19.497508Z",
            "url": "https://files.pythonhosted.org/packages/fe/da/e7c5e1588c858aae3ed76540fcd8c457adafa8d7a9fe01cfc0244609e809/dukpy-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ddf3c7c3375723863fd3d1e67358ae1977798a8d6735833d0afd3558d97ecd",
                "md5": "a4b55abe00942070f01daf26a496e754",
                "sha256": "da73ffaa1e3145f61c5efeb52bbd5b55dcf456a3dcaea141269fa7f272c3f69b"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a4b55abe00942070f01daf26a496e754",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2450076,
            "upload_time": "2024-02-15T20:25:22",
            "upload_time_iso_8601": "2024-02-15T20:25:22.387539Z",
            "url": "https://files.pythonhosted.org/packages/e6/dd/f3c7c3375723863fd3d1e67358ae1977798a8d6735833d0afd3558d97ecd/dukpy-0.3.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f67d3845d4932fa4308a090c55928a4f00fbe863be6aa5c93278ef6e0c4ab17",
                "md5": "74885f32d99ae8acc85521d57e6bb22e",
                "sha256": "a7349ed2c6933563b0eabe34b0ef4bf769ff0dfce049e4a04ee054976b7293d7"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74885f32d99ae8acc85521d57e6bb22e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2484968,
            "upload_time": "2024-02-15T20:25:25",
            "upload_time_iso_8601": "2024-02-15T20:25:25.612887Z",
            "url": "https://files.pythonhosted.org/packages/9f/67/d3845d4932fa4308a090c55928a4f00fbe863be6aa5c93278ef6e0c4ab17/dukpy-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a87eaa82252fb0192ade924bc02e2fdb62bd49a95bbed0edaefb4096384701fb",
                "md5": "284eeaf1062e408d534cad35900a5ec3",
                "sha256": "f8cd5e1b8a0422887e94edf4a487b43c37fde22fb619acd926a54044d70703f5"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "284eeaf1062e408d534cad35900a5ec3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1256511,
            "upload_time": "2024-02-15T20:25:28",
            "upload_time_iso_8601": "2024-02-15T20:25:28.294189Z",
            "url": "https://files.pythonhosted.org/packages/a8/7e/aa82252fb0192ade924bc02e2fdb62bd49a95bbed0edaefb4096384701fb/dukpy-0.3.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fe6bffba94dc89ace3d591b89929fedfe9608899a4471cc968a08efdad73772",
                "md5": "040222bbf0602758c62c5ad9d86b0cda",
                "sha256": "b76a123d120ef576bdc5b1ed443012d72d9689188341971d51dc8ca6dfff4b48"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "040222bbf0602758c62c5ad9d86b0cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1295175,
            "upload_time": "2024-02-15T20:25:30",
            "upload_time_iso_8601": "2024-02-15T20:25:30.799498Z",
            "url": "https://files.pythonhosted.org/packages/1f/e6/bffba94dc89ace3d591b89929fedfe9608899a4471cc968a08efdad73772/dukpy-0.3.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30224b2e9ed2bb8ccf9c85f40d15ef314fefd8be73ad492d55785de500fcdbd3",
                "md5": "f14e71e42ae7eb3e32f7db149037a89e",
                "sha256": "49950a1b1f41ae44f386a0d6593b326bb10f75f270c27a5505cf6bdd48087a4e"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f14e71e42ae7eb3e32f7db149037a89e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1325107,
            "upload_time": "2024-02-15T20:25:33",
            "upload_time_iso_8601": "2024-02-15T20:25:33.933611Z",
            "url": "https://files.pythonhosted.org/packages/30/22/4b2e9ed2bb8ccf9c85f40d15ef314fefd8be73ad492d55785de500fcdbd3/dukpy-0.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c26b33ead2fc4e6e3e4347c01a1073a200ebd3231d3d78848d7e84daf9aefd06",
                "md5": "d7921e06e1cfdd9b9147e3aa87a70da3",
                "sha256": "bfc9039ad6f1c943fc04051fc6d4efd084c8d2f43f3c1b6900193c47a236b8b4"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d7921e06e1cfdd9b9147e3aa87a70da3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1302041,
            "upload_time": "2024-02-15T20:25:36",
            "upload_time_iso_8601": "2024-02-15T20:25:36.345546Z",
            "url": "https://files.pythonhosted.org/packages/c2/6b/33ead2fc4e6e3e4347c01a1073a200ebd3231d3d78848d7e84daf9aefd06/dukpy-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5015451c5a7dd444246448629bbb83adee4e2c91fa4fabd7f114020c29e28e9b",
                "md5": "45ba505d03eb61c1faad0f11b0842b8a",
                "sha256": "9a8c3caca7574cd2834250bf0818b437f41a61e0c1c2ed63fd19a35ba339eccc"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45ba505d03eb61c1faad0f11b0842b8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1297900,
            "upload_time": "2024-02-15T20:25:38",
            "upload_time_iso_8601": "2024-02-15T20:25:38.596963Z",
            "url": "https://files.pythonhosted.org/packages/50/15/451c5a7dd444246448629bbb83adee4e2c91fa4fabd7f114020c29e28e9b/dukpy-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0aee1c37ca58cd08efffa676d8f43b0257604c0462fb543b5ee1b3b531295446",
                "md5": "51f29908c19cf4d84c66151d7a263114",
                "sha256": "90225fda4da0eb3535a8b253e3aa2f17c6502fd3d3d41c3e2819010153186200"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51f29908c19cf4d84c66151d7a263114",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1319434,
            "upload_time": "2024-02-15T20:25:42",
            "upload_time_iso_8601": "2024-02-15T20:25:42.015505Z",
            "url": "https://files.pythonhosted.org/packages/0a/ee/1c37ca58cd08efffa676d8f43b0257604c0462fb543b5ee1b3b531295446/dukpy-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "895e76f45b119603bf9fafd05aa4b82a8463fa280f80dfe09e6e0224c98efae2",
                "md5": "9db8dee6bc8b902ed3a5ea3cd9f5c956",
                "sha256": "2e8fa3e9248e916fd5bfcae24aebd35193714018412feb7a3ed81a1ab5432f3c"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9db8dee6bc8b902ed3a5ea3cd9f5c956",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1295232,
            "upload_time": "2024-02-15T20:25:45",
            "upload_time_iso_8601": "2024-02-15T20:25:45.725454Z",
            "url": "https://files.pythonhosted.org/packages/89/5e/76f45b119603bf9fafd05aa4b82a8463fa280f80dfe09e6e0224c98efae2/dukpy-0.3.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4ccb0ab2ef5cd1778200bc9ce86d5a7dc26ad41db04d627f2bda055dda7bb48",
                "md5": "4ead2fb752a27a4d76191dde7fa1b7f2",
                "sha256": "c7f81db573f284fa89cb7a2bca758c37f95a4627cf4a7c95427d3e2e0dfc70e0"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ead2fb752a27a4d76191dde7fa1b7f2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1325088,
            "upload_time": "2024-02-15T20:25:48",
            "upload_time_iso_8601": "2024-02-15T20:25:48.003043Z",
            "url": "https://files.pythonhosted.org/packages/d4/cc/b0ab2ef5cd1778200bc9ce86d5a7dc26ad41db04d627f2bda055dda7bb48/dukpy-0.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6acf4a9e325d76b33621cc4f5671f8d1f33358fe049ea95c6fd7f953336ef169",
                "md5": "4c5893e6e3b0baad1c8875129f8b14c7",
                "sha256": "5dc32c1631d9015b2f907afd402ad40a2d6580a80ebbc54b2f5499ec203df658"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c5893e6e3b0baad1c8875129f8b14c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1300079,
            "upload_time": "2024-02-15T20:25:51",
            "upload_time_iso_8601": "2024-02-15T20:25:51.443778Z",
            "url": "https://files.pythonhosted.org/packages/6a/cf/4a9e325d76b33621cc4f5671f8d1f33358fe049ea95c6fd7f953336ef169/dukpy-0.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5045e7bf88ed365d8924854640068aec611dc335149d4f74b6410f4036cca06b",
                "md5": "94ead7f9e48dda18536bb66c6abe767b",
                "sha256": "f16b27541612f9706a3199dd523bcfc9fec98f4af499c767f87ae28a6e5a491c"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "94ead7f9e48dda18536bb66c6abe767b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1321600,
            "upload_time": "2024-02-15T20:25:54",
            "upload_time_iso_8601": "2024-02-15T20:25:54.208964Z",
            "url": "https://files.pythonhosted.org/packages/50/45/e7bf88ed365d8924854640068aec611dc335149d4f74b6410f4036cca06b/dukpy-0.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3bcf0063cbccc179e5f38dff97bb9b09c8f25ef53baa1a50ee29a3da862f4b",
                "md5": "ca6b61cb3af385542647bcf1c8b4344a",
                "sha256": "976b2ebc1b8358df2cfa3dc2f9cd06fc02a14a2d03b8d387a9d4dcb8e10acc70"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca6b61cb3af385542647bcf1c8b4344a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1295182,
            "upload_time": "2024-02-15T20:25:57",
            "upload_time_iso_8601": "2024-02-15T20:25:57.136517Z",
            "url": "https://files.pythonhosted.org/packages/ce/3b/cf0063cbccc179e5f38dff97bb9b09c8f25ef53baa1a50ee29a3da862f4b/dukpy-0.3.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "617b074e3860f766ee845a02a5748fd01afc44cea9c4bcbe745840d95d57f241",
                "md5": "35abc3476c80cb7aa20de79bc9841b04",
                "sha256": "854f46c15f7c74115f685ff8f4450013ff1d9b5a0d831fa864df0653ec19fd04"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35abc3476c80cb7aa20de79bc9841b04",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1325090,
            "upload_time": "2024-02-15T20:26:00",
            "upload_time_iso_8601": "2024-02-15T20:26:00.594139Z",
            "url": "https://files.pythonhosted.org/packages/61/7b/074e3860f766ee845a02a5748fd01afc44cea9c4bcbe745840d95d57f241/dukpy-0.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38547d7567c3c6c1aa9330531480a7fd033c7a3849a226f8cb42ecae2c2eb201",
                "md5": "902dfc607522c6f619fff2305ba3123c",
                "sha256": "0cd4dd5215357f619535909914524a08ebd326b1a2be1ad50b80f58876416a31"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "902dfc607522c6f619fff2305ba3123c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1302031,
            "upload_time": "2024-02-15T20:26:03",
            "upload_time_iso_8601": "2024-02-15T20:26:03.363462Z",
            "url": "https://files.pythonhosted.org/packages/38/54/7d7567c3c6c1aa9330531480a7fd033c7a3849a226f8cb42ecae2c2eb201/dukpy-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da4a66db57eb82fb787e2e09df365d9310b351c225391a5ce9fef52453f61341",
                "md5": "d03af945bb05af45852757cb50263c2d",
                "sha256": "26bb731b6070e956f9adc1398decab088bb54196e1586e31fd0f36644641f30f"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d03af945bb05af45852757cb50263c2d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1297894,
            "upload_time": "2024-02-15T20:26:06",
            "upload_time_iso_8601": "2024-02-15T20:26:06.758812Z",
            "url": "https://files.pythonhosted.org/packages/da/4a/66db57eb82fb787e2e09df365d9310b351c225391a5ce9fef52453f61341/dukpy-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0161c806d977dc5d822d2a109e3686181c55338a5b53a017bf4588bcbb9f965c",
                "md5": "0a431a910e5246440c305ab57b116d6f",
                "sha256": "01a81053d74e6c19b4aac8863503e163efed1ea6609a786e1ea961d09628b4ea"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0a431a910e5246440c305ab57b116d6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1319426,
            "upload_time": "2024-02-15T20:26:09",
            "upload_time_iso_8601": "2024-02-15T20:26:09.327907Z",
            "url": "https://files.pythonhosted.org/packages/01/61/c806d977dc5d822d2a109e3686181c55338a5b53a017bf4588bcbb9f965c/dukpy-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b2da01444f6a1daf5f41f68f2a715437e6a0fe31a3bd50c8cef9bf9b99053bf",
                "md5": "bb93307e56e27241792f293687fb51a9",
                "sha256": "87cce61d3c32d21b0b3465ae4803ceb49fe33f4889b2d4455d4180a29dea4d6b"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb93307e56e27241792f293687fb51a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1295179,
            "upload_time": "2024-02-15T20:26:12",
            "upload_time_iso_8601": "2024-02-15T20:26:12.888267Z",
            "url": "https://files.pythonhosted.org/packages/3b/2d/a01444f6a1daf5f41f68f2a715437e6a0fe31a3bd50c8cef9bf9b99053bf/dukpy-0.3.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef788a130cee395b03e8fcef9a4c8e4edc2e4c9b986f52ca099fe2b72876702a",
                "md5": "c4fa8608e03267af548793d89d2eedc5",
                "sha256": "9eb454744df59b18bbbd2d22a2bf1b6bed9aea1069f75c0bfc5d35b30d3ef734"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4fa8608e03267af548793d89d2eedc5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1325099,
            "upload_time": "2024-02-15T20:26:17",
            "upload_time_iso_8601": "2024-02-15T20:26:17.370087Z",
            "url": "https://files.pythonhosted.org/packages/ef/78/8a130cee395b03e8fcef9a4c8e4edc2e4c9b986f52ca099fe2b72876702a/dukpy-0.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e43141f780ec96728fef5d4a1cf76cdb2bfbc8fdb69a7ee21282e4a0b4310171",
                "md5": "9a8b86fb4743926d85cbfa447a600d7d",
                "sha256": "418b8b23e63329c70de7a68ee1826e6cacb8492a5f39978eb4683c9cfb2a377a"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a8b86fb4743926d85cbfa447a600d7d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1302035,
            "upload_time": "2024-02-15T20:26:21",
            "upload_time_iso_8601": "2024-02-15T20:26:21.606174Z",
            "url": "https://files.pythonhosted.org/packages/e4/31/41f780ec96728fef5d4a1cf76cdb2bfbc8fdb69a7ee21282e4a0b4310171/dukpy-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c13ae68a9bcd54f81ae5e32d3ef857cb88b42c08a2ad08908f9eeb17b43389ae",
                "md5": "9fb7b8272e4de362687df36f47e30a65",
                "sha256": "c7d0ef32116ef35b3d80613177a39306f9223397b8a1630e6c97135e7158521e"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fb7b8272e4de362687df36f47e30a65",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1297895,
            "upload_time": "2024-02-15T20:26:25",
            "upload_time_iso_8601": "2024-02-15T20:26:25.599133Z",
            "url": "https://files.pythonhosted.org/packages/c1/3a/e68a9bcd54f81ae5e32d3ef857cb88b42c08a2ad08908f9eeb17b43389ae/dukpy-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94be721c95ea4cb4d316d799ad08c91eb03132e8495d4c4fc6beba3b70ffbec5",
                "md5": "3d3c8bf4f2386ba641f6a566c535b690",
                "sha256": "e7ef6470979b5d2b154a731e8734f126e2e4a404df15ebc141156347b207d702"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3d3c8bf4f2386ba641f6a566c535b690",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1319431,
            "upload_time": "2024-02-15T20:26:27",
            "upload_time_iso_8601": "2024-02-15T20:26:27.958835Z",
            "url": "https://files.pythonhosted.org/packages/94/be/721c95ea4cb4d316d799ad08c91eb03132e8495d4c4fc6beba3b70ffbec5/dukpy-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2a2bd2c6e30b54a0381c2617114edbf96f6b53ffbffc5a7c1798bb790ef93b2",
                "md5": "ac2ac4dd46b15dbcbc08a094f9bbad52",
                "sha256": "e5159b04a112a9cb1d759234862d1ec96d9b41dbc865232277c59e04da7e4bc8"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac2ac4dd46b15dbcbc08a094f9bbad52",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1295197,
            "upload_time": "2024-02-15T20:26:30",
            "upload_time_iso_8601": "2024-02-15T20:26:30.808103Z",
            "url": "https://files.pythonhosted.org/packages/f2/a2/bd2c6e30b54a0381c2617114edbf96f6b53ffbffc5a7c1798bb790ef93b2/dukpy-0.3.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b014f4625eafe17b4034fedfe0a42fa4236f9ae8d9ce033d3f9aaf2fc0f74664",
                "md5": "07bd419da193da0bbd082ce182d04338",
                "sha256": "e935ca7583d3e7b3364099bd1444f66da9dccbb66ff7262cda27aab3c25e0b6b"
            },
            "downloads": -1,
            "filename": "dukpy-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "07bd419da193da0bbd082ce182d04338",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1981125,
            "upload_time": "2024-02-15T20:26:34",
            "upload_time_iso_8601": "2024-02-15T20:26:34.287503Z",
            "url": "https://files.pythonhosted.org/packages/b0/14/f4625eafe17b4034fedfe0a42fa4236f9ae8d9ce033d3f9aaf2fc0f74664/dukpy-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-15 20:26:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amol-",
    "github_project": "dukpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dukpy"
}
        
Elapsed time: 0.18776s