pycw-fn


Namepycw-fn JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2023-10-16 10:58:58
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords piecewise function math science
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `pycw_fn` - efficient piecewise functions in Python

This package is a Python wrapper around the `pcw_fn` Rust crate built using maturin. It supports arbitrary piecewise functions on the real line.

# Example

This example constructs a few piecewise functions, does some basic arithmetic with them and finally plots them:

```python
import numpy as np
import matplotlib.pyplot as plt
from numpy.polynomial import Polynomial
from pycw_fn import PcwFn

g_0 = PcwFn.from_funcs_and_jumps(
    [
        Polynomial([1, 5, -10], window=np.array([-1., 1.]),
                   domain=np.array([-1., 1.])),
        Polynomial([0, 10, -20, 10], window=np.array([-1., 1.]),
                   domain=np.array([-1., 1.])),
    ],
    [
        0.5,
    ],
)


g_1 = PcwFn.from_funcs_and_jumps(
    [
        Polynomial([0.4*a**2, -4*a, 10], window=np.array([-1., 1.]),
                   domain=np.array([-1., 1.])) for a in range(6)
    ],
    [
        0.1,
        0.3,
        0.5,
        0.7,
        0.9,
    ],
)

b_2 = Polynomial([1/10, -4, 40])
g_2 = PcwFn.from_funcs_and_jumps(
    [b_2(Polynomial([-0.1*a, 1])) for a in range(10)],
    np.linspace(0.1, 1, num=9, endpoint=False),
)

g = g_0 + 5 * g_2

ts = np.linspace(0, 1, num=1000)
ys = g(ts)
plt.plot(ts, ys)
plt.show()

```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pycw-fn",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "piecewise function,math,science",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/2e/3e/ff7c2f3e04ac9a30cf17e88c808c327e393de220ff470fddcad884c12691/pycw_fn-0.1.2.tar.gz",
    "platform": null,
    "description": "# `pycw_fn` - efficient piecewise functions in Python\n\nThis package is a Python wrapper around the `pcw_fn` Rust crate built using maturin. It supports arbitrary piecewise functions on the real line.\n\n# Example\n\nThis example constructs a few piecewise functions, does some basic arithmetic with them and finally plots them:\n\n```python\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom numpy.polynomial import Polynomial\nfrom pycw_fn import PcwFn\n\ng_0 = PcwFn.from_funcs_and_jumps(\n    [\n        Polynomial([1, 5, -10], window=np.array([-1., 1.]),\n                   domain=np.array([-1., 1.])),\n        Polynomial([0, 10, -20, 10], window=np.array([-1., 1.]),\n                   domain=np.array([-1., 1.])),\n    ],\n    [\n        0.5,\n    ],\n)\n\n\ng_1 = PcwFn.from_funcs_and_jumps(\n    [\n        Polynomial([0.4*a**2, -4*a, 10], window=np.array([-1., 1.]),\n                   domain=np.array([-1., 1.])) for a in range(6)\n    ],\n    [\n        0.1,\n        0.3,\n        0.5,\n        0.7,\n        0.9,\n    ],\n)\n\nb_2 = Polynomial([1/10, -4, 40])\ng_2 = PcwFn.from_funcs_and_jumps(\n    [b_2(Polynomial([-0.1*a, 1])) for a in range(10)],\n    np.linspace(0.1, 1, num=9, endpoint=False),\n)\n\ng = g_0 + 5 * g_2\n\nts = np.linspace(0, 1, num=1000)\nys = g(ts)\nplt.plot(ts, ys)\nplt.show()\n\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "0.1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/SV-97/pycw_fn/issues",
        "Homepage": "https://github.com/SV-97/pycw_fn"
    },
    "split_keywords": [
        "piecewise function",
        "math",
        "science"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94c96190a5d8179f7d1d284ec36c60da107027c02866dc7e95a23aaa955f1efe",
                "md5": "b3cabee249802f1403cba63006e22192",
                "sha256": "e7585c6e748005e52463620f0db958113bb690db20bbd3856b96cd5d6831a833"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3cabee249802f1403cba63006e22192",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 291503,
            "upload_time": "2023-10-16T10:55:47",
            "upload_time_iso_8601": "2023-10-16T10:55:47.894021Z",
            "url": "https://files.pythonhosted.org/packages/94/c9/6190a5d8179f7d1d284ec36c60da107027c02866dc7e95a23aaa955f1efe/pycw_fn-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "397dfa23a338cd6ae1b7dd4ba9c7ae49c9b10bfe42a1c022ffb5437f2c48a2b9",
                "md5": "0b7ae1e43aac5fec8188e87586397b9e",
                "sha256": "683bd45382fb6e466d2060488c36fe8d2e64f0fe6e7d101496cf32f50bfad7a8"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0b7ae1e43aac5fec8188e87586397b9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 285072,
            "upload_time": "2023-10-16T10:55:50",
            "upload_time_iso_8601": "2023-10-16T10:55:50.220352Z",
            "url": "https://files.pythonhosted.org/packages/39/7d/fa23a338cd6ae1b7dd4ba9c7ae49c9b10bfe42a1c022ffb5437f2c48a2b9/pycw_fn-0.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f261046febb4896b79b210543fa0903d8563137e4175fed24d298ea4a26677d5",
                "md5": "f021c8a503ccb22b9fe110772a908c77",
                "sha256": "d6dd7ebcf2a107994f73f4f86c77dce3b2cf1d1abb49f8dc1d94d59fea88bafb"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f021c8a503ccb22b9fe110772a908c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1174763,
            "upload_time": "2023-10-16T10:55:52",
            "upload_time_iso_8601": "2023-10-16T10:55:52.775760Z",
            "url": "https://files.pythonhosted.org/packages/f2/61/046febb4896b79b210543fa0903d8563137e4175fed24d298ea4a26677d5/pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79d26c780cf440ba788b544bbc51feeaefe52e86426ee79e306dbcd136b77c55",
                "md5": "ca936b725609efd2c94a59555c6c1767",
                "sha256": "1d82431091e9e4f67f9bfee2034da2df7db5a11211720b81b0e453672968b96c"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ca936b725609efd2c94a59555c6c1767",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1178957,
            "upload_time": "2023-10-16T10:55:56",
            "upload_time_iso_8601": "2023-10-16T10:55:56.131252Z",
            "url": "https://files.pythonhosted.org/packages/79/d2/6c780cf440ba788b544bbc51feeaefe52e86426ee79e306dbcd136b77c55/pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "063fa53d0dfe34cb1acb1e6b9d55538eab265b842262f0bdd5162a5a3b6284ae",
                "md5": "47b5c095f6d3c12f63e4df55f942fb8c",
                "sha256": "573986b6a8a31d7a921c989fd9c3776f223074660ccf9ed0d238cada96ae524a"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47b5c095f6d3c12f63e4df55f942fb8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1291132,
            "upload_time": "2023-10-16T10:55:59",
            "upload_time_iso_8601": "2023-10-16T10:55:59.664279Z",
            "url": "https://files.pythonhosted.org/packages/06/3f/a53d0dfe34cb1acb1e6b9d55538eab265b842262f0bdd5162a5a3b6284ae/pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63d263f8f9787cc6617524354118a3f5a911a0b4b6a6c534a1a121365797b4cb",
                "md5": "702e2395a7460d130ebc4e306161e927",
                "sha256": "b7fefef7798583a90db1356bfdf04cc5957fe10b993378abba7a0879930fbc19"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "702e2395a7460d130ebc4e306161e927",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1348236,
            "upload_time": "2023-10-16T10:56:02",
            "upload_time_iso_8601": "2023-10-16T10:56:02.865059Z",
            "url": "https://files.pythonhosted.org/packages/63/d2/63f8f9787cc6617524354118a3f5a911a0b4b6a6c534a1a121365797b4cb/pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3381152c75f6b3b4fecead1d539aa43b394bd621e6ef29d9972f1bcf0b0f3dbe",
                "md5": "5b8b66c77851217ab524ecde50d0f5f6",
                "sha256": "0c105210ff7ce253b40cfdb5f7a8e17ab80a25fc18e4ffdfa7f3b3846d1228f0"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b8b66c77851217ab524ecde50d0f5f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1181758,
            "upload_time": "2023-10-16T10:56:06",
            "upload_time_iso_8601": "2023-10-16T10:56:06.170463Z",
            "url": "https://files.pythonhosted.org/packages/33/81/152c75f6b3b4fecead1d539aa43b394bd621e6ef29d9972f1bcf0b0f3dbe/pycw_fn-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "011b6241cb52948139767b1bb49a62254250b62a08d1c5bbd44ab88c46137d68",
                "md5": "90b6ae9e1a39a25b13c435ff8e4a6ccd",
                "sha256": "5d35e69a9fe4b778841761d82854b86d94ba19f0ba2a1ba769bade12041315bf"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "90b6ae9e1a39a25b13c435ff8e4a6ccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1201411,
            "upload_time": "2023-10-16T10:56:08",
            "upload_time_iso_8601": "2023-10-16T10:56:08.665793Z",
            "url": "https://files.pythonhosted.org/packages/01/1b/6241cb52948139767b1bb49a62254250b62a08d1c5bbd44ab88c46137d68/pycw_fn-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58b0d5ee83b8ef72fbba8e4d9c50e33066baa8eaba01740160f80a6612be70cf",
                "md5": "6062f6217690bddd817c7f588cc78fe7",
                "sha256": "2efbd85808bcf7e4c63390d873a1af026187f2afd0bdb0e53d9ba7e12aa83f97"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6062f6217690bddd817c7f588cc78fe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 143072,
            "upload_time": "2023-10-16T10:56:10",
            "upload_time_iso_8601": "2023-10-16T10:56:10.682371Z",
            "url": "https://files.pythonhosted.org/packages/58/b0/d5ee83b8ef72fbba8e4d9c50e33066baa8eaba01740160f80a6612be70cf/pycw_fn-0.1.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59fd47271262a9f38b284a5cea7a86ffe393c7f035145eedcf7fc8eeed095aba",
                "md5": "3ed2c89739d711be7b1322661028d917",
                "sha256": "2c0cebd7d406144966246edcea7d0c1e5258247002283c322b3aa99b9b0fa1ec"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ed2c89739d711be7b1322661028d917",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 150865,
            "upload_time": "2023-10-16T10:56:12",
            "upload_time_iso_8601": "2023-10-16T10:56:12.624988Z",
            "url": "https://files.pythonhosted.org/packages/59/fd/47271262a9f38b284a5cea7a86ffe393c7f035145eedcf7fc8eeed095aba/pycw_fn-0.1.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "848fd9d3a45c6749d491429a27ccecb7920441c762f6d5ad676eb5679ce58863",
                "md5": "7f0364329aa131e07de35c2b16c5cbe3",
                "sha256": "81d91978d0fff5517e31244dce3c367f0c0e8013ab0d4db0ab7c948c989f2e41"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f0364329aa131e07de35c2b16c5cbe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 291508,
            "upload_time": "2023-10-16T10:56:15",
            "upload_time_iso_8601": "2023-10-16T10:56:15.110943Z",
            "url": "https://files.pythonhosted.org/packages/84/8f/d9d3a45c6749d491429a27ccecb7920441c762f6d5ad676eb5679ce58863/pycw_fn-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5301374b090e34925314bb1f373716a29225252a91ef981b599962b644fc35a6",
                "md5": "ceea747f776ba1b20584317c70f85f34",
                "sha256": "ce1ce98c831c75a47137a9a5e00c37c4acf5d5b254d5053cbfe184b6832b6609"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ceea747f776ba1b20584317c70f85f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 285071,
            "upload_time": "2023-10-16T10:56:17",
            "upload_time_iso_8601": "2023-10-16T10:56:17.608544Z",
            "url": "https://files.pythonhosted.org/packages/53/01/374b090e34925314bb1f373716a29225252a91ef981b599962b644fc35a6/pycw_fn-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d52d71ccc65dfc044a6d2af714a1c9ff975259a63c390e6d606b4cfdbe8adb21",
                "md5": "3c0da59581ba17d58608733d56a49674",
                "sha256": "c46057cb12ae6c23c4c40863de3d4375c59b11673be43874f7678dfdc0713935"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c0da59581ba17d58608733d56a49674",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1174762,
            "upload_time": "2023-10-16T10:56:20",
            "upload_time_iso_8601": "2023-10-16T10:56:20.386808Z",
            "url": "https://files.pythonhosted.org/packages/d5/2d/71ccc65dfc044a6d2af714a1c9ff975259a63c390e6d606b4cfdbe8adb21/pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8d7ab1e4aafa223b7fb66bae35616696eecf6db7c834c5871ba552363746af2",
                "md5": "97b2e393ec5d5258f61ed9fe87f6cb35",
                "sha256": "6de5d8805206244fe1746b01750d98a765922c5370fa68ee0157cfe2ca861c89"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "97b2e393ec5d5258f61ed9fe87f6cb35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1178955,
            "upload_time": "2023-10-16T10:56:23",
            "upload_time_iso_8601": "2023-10-16T10:56:23.433115Z",
            "url": "https://files.pythonhosted.org/packages/e8/d7/ab1e4aafa223b7fb66bae35616696eecf6db7c834c5871ba552363746af2/pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7069779b9fcfb42da1b908c67a39c0d1d4207b650c1a9f898873c32263bb26df",
                "md5": "c7ae615b99d5c78aa7daf6d35501e1ce",
                "sha256": "87439a8fac0da02299ae124cbbfacbb7644870a46094098b8adfef8de6bfb4cc"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c7ae615b99d5c78aa7daf6d35501e1ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1291131,
            "upload_time": "2023-10-16T10:56:26",
            "upload_time_iso_8601": "2023-10-16T10:56:26.319671Z",
            "url": "https://files.pythonhosted.org/packages/70/69/779b9fcfb42da1b908c67a39c0d1d4207b650c1a9f898873c32263bb26df/pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ebaea21927eb9228298e398d59996ba6fb035fc00cba5201a7af901f934afc99",
                "md5": "e6d4543478fd91a92190be34408fa2a8",
                "sha256": "c58be1c3f4c66dea45575e069b570f1a13a75690a25f3db921ce8c33fee916b3"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e6d4543478fd91a92190be34408fa2a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1348236,
            "upload_time": "2023-10-16T10:56:29",
            "upload_time_iso_8601": "2023-10-16T10:56:29.337844Z",
            "url": "https://files.pythonhosted.org/packages/eb/ae/a21927eb9228298e398d59996ba6fb035fc00cba5201a7af901f934afc99/pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dad8d6db8f11629827fc328470e27029fbded24a772fe21cbddd811fc84a5e5",
                "md5": "3d5547b0ff473b67eb0f3c5ddffa9766",
                "sha256": "64b46f920b5b02cc9e8b00e69154644dfd2f7241ca0c0345421fc9373896468c"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d5547b0ff473b67eb0f3c5ddffa9766",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1181757,
            "upload_time": "2023-10-16T10:56:32",
            "upload_time_iso_8601": "2023-10-16T10:56:32.526439Z",
            "url": "https://files.pythonhosted.org/packages/2d/ad/8d6db8f11629827fc328470e27029fbded24a772fe21cbddd811fc84a5e5/pycw_fn-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54a5fc763b6b60b113b15919e180aa706bd2c27bbac2945cfa038cdbf5fcee88",
                "md5": "e607768e83cc446c6cd3e2a05502dce6",
                "sha256": "31419888ab0a0bcc26d9be7235b8a4bd557845457f9e29613dd5ac8f2b69bc75"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e607768e83cc446c6cd3e2a05502dce6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1201413,
            "upload_time": "2023-10-16T10:56:35",
            "upload_time_iso_8601": "2023-10-16T10:56:35.465128Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/fc763b6b60b113b15919e180aa706bd2c27bbac2945cfa038cdbf5fcee88/pycw_fn-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "382f72740ff0636fc08a4fc3a73e08489315885bd9a156d0a09331c04e1c6806",
                "md5": "14713598bbbbad007f5202c43ba250ea",
                "sha256": "152490ed67123e9030b2dbf2b21aba039baa5c0974751702a1e6449ec274394e"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "14713598bbbbad007f5202c43ba250ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 143082,
            "upload_time": "2023-10-16T10:56:37",
            "upload_time_iso_8601": "2023-10-16T10:56:37.973945Z",
            "url": "https://files.pythonhosted.org/packages/38/2f/72740ff0636fc08a4fc3a73e08489315885bd9a156d0a09331c04e1c6806/pycw_fn-0.1.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d680a94bce0b28e5927be07c71b724c73b31deae573ca5aa46faebb21aafd71",
                "md5": "203a14e4ce1dd36a1779229c637c772c",
                "sha256": "efbf9dda8181b24511c571b4b2742f5a542450345fbf3a9ba50e03961e0ff2f4"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "203a14e4ce1dd36a1779229c637c772c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 150872,
            "upload_time": "2023-10-16T10:56:40",
            "upload_time_iso_8601": "2023-10-16T10:56:40.266881Z",
            "url": "https://files.pythonhosted.org/packages/0d/68/0a94bce0b28e5927be07c71b724c73b31deae573ca5aa46faebb21aafd71/pycw_fn-0.1.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cbf01c5aaf424fd6f012628b6679ae6bb57ea67de3b6ab955c657b092c496c2",
                "md5": "ecb4ac5b784856b6c90bf032d5ad0b6c",
                "sha256": "0c4280c08e43302c108c9fa1ce41e9f08c677e55a664eae4d53edc0c461c32d7"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ecb4ac5b784856b6c90bf032d5ad0b6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1174663,
            "upload_time": "2023-10-16T10:56:43",
            "upload_time_iso_8601": "2023-10-16T10:56:43.289911Z",
            "url": "https://files.pythonhosted.org/packages/7c/bf/01c5aaf424fd6f012628b6679ae6bb57ea67de3b6ab955c657b092c496c2/pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "497e8747d3708d174cd5d10c2e807da15a315a57ff9023ba94eebc9cee26dc09",
                "md5": "fcd6b5b9544eb7da868e09bdf57d819a",
                "sha256": "8024475b759858e41dd69be241a7fe85c2e9c63ffb938d16fb34b8797de59085"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fcd6b5b9544eb7da868e09bdf57d819a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1290941,
            "upload_time": "2023-10-16T10:56:45",
            "upload_time_iso_8601": "2023-10-16T10:56:45.948267Z",
            "url": "https://files.pythonhosted.org/packages/49/7e/8747d3708d174cd5d10c2e807da15a315a57ff9023ba94eebc9cee26dc09/pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edaf576e2c1f0402035d66b2d2ba083d5afe0eda4fe99b30f2eaf4b80d3ebcde",
                "md5": "8b0ce0a49fe3d73bd432e7cc667712b4",
                "sha256": "ca12b4e693d86d79d3c18b1bf9b41dafb99afbf7ada87be3dccd534e3be4e71b"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8b0ce0a49fe3d73bd432e7cc667712b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1349375,
            "upload_time": "2023-10-16T10:56:49",
            "upload_time_iso_8601": "2023-10-16T10:56:49.490911Z",
            "url": "https://files.pythonhosted.org/packages/ed/af/576e2c1f0402035d66b2d2ba083d5afe0eda4fe99b30f2eaf4b80d3ebcde/pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14cc6c4a1c5795458284b9190293d7bb8869c740c03c5186e33bddb9e08dfc6e",
                "md5": "cf87bbb8920771ae2fa1901937d0237c",
                "sha256": "1a5f597975a2639e10c908e55bc220ac3945c66cac87870821a2d8d993ff682f"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf87bbb8920771ae2fa1901937d0237c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1181497,
            "upload_time": "2023-10-16T10:56:52",
            "upload_time_iso_8601": "2023-10-16T10:56:52.163445Z",
            "url": "https://files.pythonhosted.org/packages/14/cc/6c4a1c5795458284b9190293d7bb8869c740c03c5186e33bddb9e08dfc6e/pycw_fn-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66322e1eb39896b94ec5f71cda88820ab46077fc50babbe8591b35c28be4be77",
                "md5": "e86743791f4de7f20eea77ff3c144536",
                "sha256": "880b97b813a358d9cfc123670550a9a291dc8d7ee83ae1b29c4f1563490134d5"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e86743791f4de7f20eea77ff3c144536",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1199251,
            "upload_time": "2023-10-16T10:56:54",
            "upload_time_iso_8601": "2023-10-16T10:56:54.914616Z",
            "url": "https://files.pythonhosted.org/packages/66/32/2e1eb39896b94ec5f71cda88820ab46077fc50babbe8591b35c28be4be77/pycw_fn-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07763df8197eace890c49da2c494f02d9de406cd2fcec83196d207957bdebc90",
                "md5": "4c693bb66c4b90d38b50bcc6f68b68ec",
                "sha256": "569828bde4eed0a895d7c8ac75d7df3642a9a844218161bd57c33922e82a8508"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c693bb66c4b90d38b50bcc6f68b68ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1174358,
            "upload_time": "2023-10-16T10:56:57",
            "upload_time_iso_8601": "2023-10-16T10:56:57.667113Z",
            "url": "https://files.pythonhosted.org/packages/07/76/3df8197eace890c49da2c494f02d9de406cd2fcec83196d207957bdebc90/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8849c108b5e47cfc0a22c957331c64af77a4a8caaebeabf9c533c4dfc4291543",
                "md5": "89a30f157dca1c5866e1ab0bcae6768f",
                "sha256": "13211ff15c0730873779ec1fb74114aeb54c75d03d3f9ae54f930c4d8ef75446"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "89a30f157dca1c5866e1ab0bcae6768f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1178062,
            "upload_time": "2023-10-16T10:57:00",
            "upload_time_iso_8601": "2023-10-16T10:57:00.231929Z",
            "url": "https://files.pythonhosted.org/packages/88/49/c108b5e47cfc0a22c957331c64af77a4a8caaebeabf9c533c4dfc4291543/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33b6da43363b4b483e55702b9cc010f7252e230ccd30cad0e5ebab92d2940543",
                "md5": "f551438a22149843e11ca545456fb9db",
                "sha256": "59d0eb1ed344519a85672d890a45241ddf8c6defd807af7005230f19c09aa44c"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f551438a22149843e11ca545456fb9db",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1289078,
            "upload_time": "2023-10-16T10:57:03",
            "upload_time_iso_8601": "2023-10-16T10:57:03.073082Z",
            "url": "https://files.pythonhosted.org/packages/33/b6/da43363b4b483e55702b9cc010f7252e230ccd30cad0e5ebab92d2940543/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddc16c75ec86cbfe47c1d2280e3e50f02fadfcc4ef579f59bd44a080ee6e1d4c",
                "md5": "fc33dc7b22c79997028750746ad25b74",
                "sha256": "15517d3095e11740263276b05d6072975574eeb697189e9b95631633c98f0c51"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fc33dc7b22c79997028750746ad25b74",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1346872,
            "upload_time": "2023-10-16T10:57:05",
            "upload_time_iso_8601": "2023-10-16T10:57:05.798041Z",
            "url": "https://files.pythonhosted.org/packages/dd/c1/6c75ec86cbfe47c1d2280e3e50f02fadfcc4ef579f59bd44a080ee6e1d4c/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a249285530abd2c57c9f8afa1e34b7b4e5873a53d7a304c77925d65858c54ddc",
                "md5": "f79a455d34f527b29efe70723103ad50",
                "sha256": "62e03f01edaddc21a4c14c17afa72ee34aa18c0b7a8c97f4b09f53f7cdb7834e"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f79a455d34f527b29efe70723103ad50",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1181349,
            "upload_time": "2023-10-16T10:57:09",
            "upload_time_iso_8601": "2023-10-16T10:57:09.071563Z",
            "url": "https://files.pythonhosted.org/packages/a2/49/285530abd2c57c9f8afa1e34b7b4e5873a53d7a304c77925d65858c54ddc/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab6881980ba6c085313daa87a786126ca730e6e163a9f7dc769a7571a7be234e",
                "md5": "57a9cfa5683991b62670561f59af60fa",
                "sha256": "cd13106a905b0de55f02b91afd4ad19f1f3e1299b3952e0cd80eafed99bada46"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "57a9cfa5683991b62670561f59af60fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1199755,
            "upload_time": "2023-10-16T10:57:11",
            "upload_time_iso_8601": "2023-10-16T10:57:11.851057Z",
            "url": "https://files.pythonhosted.org/packages/ab/68/81980ba6c085313daa87a786126ca730e6e163a9f7dc769a7571a7be234e/pycw_fn-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5106912b72334cee43e7a3cacae6848efcdeeab880bd507bdad1204b824cf322",
                "md5": "35ae7f9a99a9d90873ac4d7dbb5e42ca",
                "sha256": "3601581459e0a1aefa29ca6bfd67fd0822ac86d8078039df77a01fbb215ce312"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "35ae7f9a99a9d90873ac4d7dbb5e42ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 143860,
            "upload_time": "2023-10-16T10:57:13",
            "upload_time_iso_8601": "2023-10-16T10:57:13.929554Z",
            "url": "https://files.pythonhosted.org/packages/51/06/912b72334cee43e7a3cacae6848efcdeeab880bd507bdad1204b824cf322/pycw_fn-0.1.2-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6531970ddc5671f669d1bffac9e0ccf15ea73efd96498a24dea0e607e0b3c603",
                "md5": "4ca48084ce950cd625d9ccaf1a6c325d",
                "sha256": "ce96555998004cc20625213772aae7d5f1a57f345dafb3d938b691a96eeca26d"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ca48084ce950cd625d9ccaf1a6c325d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 150138,
            "upload_time": "2023-10-16T10:57:16",
            "upload_time_iso_8601": "2023-10-16T10:57:16.259375Z",
            "url": "https://files.pythonhosted.org/packages/65/31/970ddc5671f669d1bffac9e0ccf15ea73efd96498a24dea0e607e0b3c603/pycw_fn-0.1.2-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ed65ec1e797bf4062a1e5b4aaae75ab22e380277d4ed31e8248b2eb2a6012c7",
                "md5": "4926d8d7218a61610637a6f321badd50",
                "sha256": "7a0b783747bda6a0913a80e9cb01f130f270228f0ab853acd3f8d054f29b97c2"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4926d8d7218a61610637a6f321badd50",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1174467,
            "upload_time": "2023-10-16T10:57:18",
            "upload_time_iso_8601": "2023-10-16T10:57:18.864892Z",
            "url": "https://files.pythonhosted.org/packages/6e/d6/5ec1e797bf4062a1e5b4aaae75ab22e380277d4ed31e8248b2eb2a6012c7/pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eceec432d90b25ae65df1c936b7301455c974496a47bf8d3fba973f9141393c6",
                "md5": "10f048fe5a598394e1e4742ff8bff6fc",
                "sha256": "09b7d025c18c208acb7620c8032479b1cde14b59bf86348c0593b825d93a24c1"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "10f048fe5a598394e1e4742ff8bff6fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1178309,
            "upload_time": "2023-10-16T10:57:21",
            "upload_time_iso_8601": "2023-10-16T10:57:21.698291Z",
            "url": "https://files.pythonhosted.org/packages/ec/ee/c432d90b25ae65df1c936b7301455c974496a47bf8d3fba973f9141393c6/pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0b464a5f1ce5e1cb953781a4573ca3194e65fde789c6ace7acc321f8d4d68c3",
                "md5": "3ffc5be2c1569b1f69627810bb7c40f0",
                "sha256": "77732514cb1dc541e06a0d84b5495bad3d8f4ad0201ad841378fc83af7d70fec"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3ffc5be2c1569b1f69627810bb7c40f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1290228,
            "upload_time": "2023-10-16T10:57:24",
            "upload_time_iso_8601": "2023-10-16T10:57:24.875419Z",
            "url": "https://files.pythonhosted.org/packages/f0/b4/64a5f1ce5e1cb953781a4573ca3194e65fde789c6ace7acc321f8d4d68c3/pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fe4c30b1a7b1f3afb2593f22995803289eeebc9505068bb8e38b5cddbe71c73",
                "md5": "b1e09f92e7fb509aa58c4234fe2d5a62",
                "sha256": "0e01c0e39abb155f444203e83c12f962fda1145000e6ef12daf3267aac2caba4"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b1e09f92e7fb509aa58c4234fe2d5a62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1347754,
            "upload_time": "2023-10-16T10:57:27",
            "upload_time_iso_8601": "2023-10-16T10:57:27.867297Z",
            "url": "https://files.pythonhosted.org/packages/0f/e4/c30b1a7b1f3afb2593f22995803289eeebc9505068bb8e38b5cddbe71c73/pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e35f16bbe4a3e41181c10c652853d90303612d95027b552364a5f7d19b7d1081",
                "md5": "fae93586833bd77a631fa6be9aae6bb3",
                "sha256": "7cc5b7eafd0758b1336318fc541bbbb19571ee1fa8699156220449f3fcbc60c4"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fae93586833bd77a631fa6be9aae6bb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1181134,
            "upload_time": "2023-10-16T10:57:30",
            "upload_time_iso_8601": "2023-10-16T10:57:30.564108Z",
            "url": "https://files.pythonhosted.org/packages/e3/5f/16bbe4a3e41181c10c652853d90303612d95027b552364a5f7d19b7d1081/pycw_fn-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca2d85d3a8f32b1845264c98a2fcc1bda9debdace200fac101d527f5f9bca11d",
                "md5": "a27430f9950cf65a8b6d1fd9c4316c46",
                "sha256": "a34ef6ba89df5848eedbf476668de99a14accdce713a5e7561ade50f9f82c199"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a27430f9950cf65a8b6d1fd9c4316c46",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1200239,
            "upload_time": "2023-10-16T10:57:33",
            "upload_time_iso_8601": "2023-10-16T10:57:33.831542Z",
            "url": "https://files.pythonhosted.org/packages/ca/2d/85d3a8f32b1845264c98a2fcc1bda9debdace200fac101d527f5f9bca11d/pycw_fn-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3de9c63c615f48581cab1ce3a70440b4f5bcde333bd53dc2af0f72bfc9835f84",
                "md5": "d2354473160059550861ced364e73b11",
                "sha256": "3d841d12067002eb0f58ec6198272797eaa0ee442a9b02d08cd4a02f292fe272"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d2354473160059550861ced364e73b11",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 143752,
            "upload_time": "2023-10-16T10:57:36",
            "upload_time_iso_8601": "2023-10-16T10:57:36.068124Z",
            "url": "https://files.pythonhosted.org/packages/3d/e9/c63c615f48581cab1ce3a70440b4f5bcde333bd53dc2af0f72bfc9835f84/pycw_fn-0.1.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b06a19a4c5ab478c3e7384626b0e1d1f3b8838a51384011d6a713b5ee3fb907",
                "md5": "586e38cf96cc391c6a56001d06a3a078",
                "sha256": "a1478208e9dded926dd906e84fd05fa1b42d2e2b5b06780e91c4fc64cfa37504"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "586e38cf96cc391c6a56001d06a3a078",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 151040,
            "upload_time": "2023-10-16T10:57:38",
            "upload_time_iso_8601": "2023-10-16T10:57:38.120816Z",
            "url": "https://files.pythonhosted.org/packages/8b/06/a19a4c5ab478c3e7384626b0e1d1f3b8838a51384011d6a713b5ee3fb907/pycw_fn-0.1.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "432369d2236d9506e55551a58d015d62fc772a539afc20130d7484f5953bf2ff",
                "md5": "0d717d115db4714da6d23d08b444285b",
                "sha256": "a8622c305133d9dcc7469ec9f81aa759da5b88c339e9f949e880bdbe5fac7b75"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d717d115db4714da6d23d08b444285b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1174736,
            "upload_time": "2023-10-16T10:57:40",
            "upload_time_iso_8601": "2023-10-16T10:57:40.863461Z",
            "url": "https://files.pythonhosted.org/packages/43/23/69d2236d9506e55551a58d015d62fc772a539afc20130d7484f5953bf2ff/pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce2194a7c555c749c552cd79593aab20b0b6512daed9d9561dc149add399b29a",
                "md5": "3055dc4336eebcb6cdcd5a9af50c56e7",
                "sha256": "3b67e3cf4a622b14b2a7284f33d2755f3a539ef5578ccb390c9f03711138c12d"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3055dc4336eebcb6cdcd5a9af50c56e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1180624,
            "upload_time": "2023-10-16T10:57:44",
            "upload_time_iso_8601": "2023-10-16T10:57:44.429167Z",
            "url": "https://files.pythonhosted.org/packages/ce/21/94a7c555c749c552cd79593aab20b0b6512daed9d9561dc149add399b29a/pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b7f7a389b9dc95e2362783ade23459571540c037c2547807d1a238d1b5d364f",
                "md5": "0a81d46ada997b19847077fa6735d239",
                "sha256": "88fc5781d246ae316ab6230fc8c17591cf9acfcee9a5ab548afd2b46327dbde8"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0a81d46ada997b19847077fa6735d239",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1291651,
            "upload_time": "2023-10-16T10:57:47",
            "upload_time_iso_8601": "2023-10-16T10:57:47.265601Z",
            "url": "https://files.pythonhosted.org/packages/1b/7f/7a389b9dc95e2362783ade23459571540c037c2547807d1a238d1b5d364f/pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43b966aba04dda8f59614d24c3be0fdeeec07e4a06d6c99984dda235a14bca5b",
                "md5": "4f6e8146227b14faf05829bdbca26bb7",
                "sha256": "f6aeaff305f066b21532c9c71301918013ca1113431252b20552af75a593769a"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4f6e8146227b14faf05829bdbca26bb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1349910,
            "upload_time": "2023-10-16T10:57:50",
            "upload_time_iso_8601": "2023-10-16T10:57:50.492938Z",
            "url": "https://files.pythonhosted.org/packages/43/b9/66aba04dda8f59614d24c3be0fdeeec07e4a06d6c99984dda235a14bca5b/pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "093aec08914fd6be0b1fe0a9514d864d586600d3778e9e406e85fbfb81a62379",
                "md5": "b3dc5585383b122463aee2df74a2bccd",
                "sha256": "dcda4b7d3888243bd4773f1aaf3172eee01a72f7b877248334a384258353f89d"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3dc5585383b122463aee2df74a2bccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1181614,
            "upload_time": "2023-10-16T10:57:53",
            "upload_time_iso_8601": "2023-10-16T10:57:53.156152Z",
            "url": "https://files.pythonhosted.org/packages/09/3a/ec08914fd6be0b1fe0a9514d864d586600d3778e9e406e85fbfb81a62379/pycw_fn-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c859b5e120180b805362ebb74bae3e0a39728e1878089ee6b4d590c9cb5ceb2e",
                "md5": "8713aaab95e14c4658955bedaeb6e7b6",
                "sha256": "2cf45dfb2cfd26d28eadfd6309b8ee282a3276c2750758cbc6344fa6ab8f69b9"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8713aaab95e14c4658955bedaeb6e7b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1200779,
            "upload_time": "2023-10-16T10:57:55",
            "upload_time_iso_8601": "2023-10-16T10:57:55.800189Z",
            "url": "https://files.pythonhosted.org/packages/c8/59/b5e120180b805362ebb74bae3e0a39728e1878089ee6b4d590c9cb5ceb2e/pycw_fn-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a7725ca8454549669bd7505643d740f1a1c9007869f794e9cc2c44ac14ce8c7",
                "md5": "3142068eb016c320e9fa93450d840043",
                "sha256": "f6add962ac019cd24abfa2b8905bb2cb1101e17f91a1b3c5650e436caaf137d3"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3142068eb016c320e9fa93450d840043",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 143271,
            "upload_time": "2023-10-16T10:57:57",
            "upload_time_iso_8601": "2023-10-16T10:57:57.885039Z",
            "url": "https://files.pythonhosted.org/packages/0a/77/25ca8454549669bd7505643d740f1a1c9007869f794e9cc2c44ac14ce8c7/pycw_fn-0.1.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "406973f93cee1e4fb6e137a7672f71fed126d4c856dd70d8c4bc058b309578fd",
                "md5": "fb86634b060f7cce70838be0bd4f43c8",
                "sha256": "28945ef0bc2d30d03a522ce738719cc55864fe53bf2cc315b446224c5e3c5be1"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fb86634b060f7cce70838be0bd4f43c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 150580,
            "upload_time": "2023-10-16T10:57:59",
            "upload_time_iso_8601": "2023-10-16T10:57:59.695457Z",
            "url": "https://files.pythonhosted.org/packages/40/69/73f93cee1e4fb6e137a7672f71fed126d4c856dd70d8c4bc058b309578fd/pycw_fn-0.1.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3dc4e1edd4df0e21d2b19ce7be3da0b5ba0c66420123f0c93e0d38820cb30727",
                "md5": "d1a4b81f5282f41e7d2e9cfced387e67",
                "sha256": "4a2cb2bef48e76b3cf9b59084c31458d7fae4f041c66e1c8d6e4a5f0d37ada4e"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1a4b81f5282f41e7d2e9cfced387e67",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1181126,
            "upload_time": "2023-10-16T10:58:02",
            "upload_time_iso_8601": "2023-10-16T10:58:02.698126Z",
            "url": "https://files.pythonhosted.org/packages/3d/c4/e1edd4df0e21d2b19ce7be3da0b5ba0c66420123f0c93e0d38820cb30727/pycw_fn-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29a3541705715592634e60cc5bbb8deee3971f5e89c9f3d847f3b9aac9057e54",
                "md5": "5686bccffaee294765e2c4f5ac8ce17f",
                "sha256": "1fa441080bdb3616bc41800b0fade70d94dc7b03867670391f76ab47b373fc09"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5686bccffaee294765e2c4f5ac8ce17f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1200006,
            "upload_time": "2023-10-16T10:58:05",
            "upload_time_iso_8601": "2023-10-16T10:58:05.577039Z",
            "url": "https://files.pythonhosted.org/packages/29/a3/541705715592634e60cc5bbb8deee3971f5e89c9f3d847f3b9aac9057e54/pycw_fn-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86130fb575adf1681e5b8fe9db68db19dbd645bd4a643011a76925a3808bfcb5",
                "md5": "85899fa65183ce1c1a7b86d281b66ff4",
                "sha256": "8b9ffe383ca5d0f33439e118e9f7150ac9e5678a03ec8d1b9616b71312f7d4d1"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "85899fa65183ce1c1a7b86d281b66ff4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1177054,
            "upload_time": "2023-10-16T10:58:08",
            "upload_time_iso_8601": "2023-10-16T10:58:08.222540Z",
            "url": "https://files.pythonhosted.org/packages/86/13/0fb575adf1681e5b8fe9db68db19dbd645bd4a643011a76925a3808bfcb5/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b40ade82dca8ff261faae24ac22a8f2dd3dbf70bbb26cd3dc5acd6090605df42",
                "md5": "d3205a3a002d29a09db6c7e4603cea0c",
                "sha256": "03386fea4a81c3329148ddc9087c2851b858df264dd055bb8edd55a9d527f14b"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d3205a3a002d29a09db6c7e4603cea0c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1182265,
            "upload_time": "2023-10-16T10:58:11",
            "upload_time_iso_8601": "2023-10-16T10:58:11.424520Z",
            "url": "https://files.pythonhosted.org/packages/b4/0a/de82dca8ff261faae24ac22a8f2dd3dbf70bbb26cd3dc5acd6090605df42/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66ee8c8deb369ad20c7e2f0b255b6db49fe8cca5609593290bf5ef768d7325c2",
                "md5": "6463e548dd0326c7bc427285b365fb44",
                "sha256": "abb5c0b60f29620e10db4a0b534f6d476197eb3c40b6e6f85426ed4b735d59ea"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6463e548dd0326c7bc427285b365fb44",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1294775,
            "upload_time": "2023-10-16T10:58:14",
            "upload_time_iso_8601": "2023-10-16T10:58:14.775448Z",
            "url": "https://files.pythonhosted.org/packages/66/ee/8c8deb369ad20c7e2f0b255b6db49fe8cca5609593290bf5ef768d7325c2/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f36572664ceb1cfc303425f1a05e55a088af3d02947cc73475636bfdbc94ed2",
                "md5": "384f8e0e0c698ee35c71547b3c311ea4",
                "sha256": "a1778161ca5a412527ddad3870e3dcd46f77d82ff254dd79eea27a9799fe4da0"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "384f8e0e0c698ee35c71547b3c311ea4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1354593,
            "upload_time": "2023-10-16T10:58:17",
            "upload_time_iso_8601": "2023-10-16T10:58:17.424020Z",
            "url": "https://files.pythonhosted.org/packages/4f/36/572664ceb1cfc303425f1a05e55a088af3d02947cc73475636bfdbc94ed2/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ef91706f9951fbfe8ab82e6f8492ac3bddfd091225fa75f4d2991ae7bb29b1f",
                "md5": "10e9ee5f93de66425c6da07fe4ee567c",
                "sha256": "352d3d04497a7f56ef6463dd45155d8be8b7966ef07be8bc987da66e395a6b25"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10e9ee5f93de66425c6da07fe4ee567c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1184433,
            "upload_time": "2023-10-16T10:58:20",
            "upload_time_iso_8601": "2023-10-16T10:58:20.303917Z",
            "url": "https://files.pythonhosted.org/packages/3e/f9/1706f9951fbfe8ab82e6f8492ac3bddfd091225fa75f4d2991ae7bb29b1f/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b33dd894a9bc1be24cc03852083dd65cc586720c68c85b321a935ccbb3d0e03f",
                "md5": "71789ff6974bd105434c2c2345d9c2d5",
                "sha256": "e8465f09eb13af7b2bbe111e5a6ebe372b5e89a9cd3304bb972a4d36edef7e31"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "71789ff6974bd105434c2c2345d9c2d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1203108,
            "upload_time": "2023-10-16T10:58:22",
            "upload_time_iso_8601": "2023-10-16T10:58:22.936638Z",
            "url": "https://files.pythonhosted.org/packages/b3/3d/d894a9bc1be24cc03852083dd65cc586720c68c85b321a935ccbb3d0e03f/pycw_fn-0.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5da61c50e21e80b61fe7f02f564aa2864b6aedb3dc4dc1cc328b0774ff8bf3e8",
                "md5": "bfa96480cad5a52a7812664af4454f00",
                "sha256": "40a1f97544667e18cad52e8f9b7a8c74d8c2c5ec26f6cae42bdf83526d2e8d67"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bfa96480cad5a52a7812664af4454f00",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1175389,
            "upload_time": "2023-10-16T10:58:25",
            "upload_time_iso_8601": "2023-10-16T10:58:25.439100Z",
            "url": "https://files.pythonhosted.org/packages/5d/a6/1c50e21e80b61fe7f02f564aa2864b6aedb3dc4dc1cc328b0774ff8bf3e8/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "677163a6ba59675308331531b4b4f3b9e219bc7459f4f7d6928ec3760901e9d6",
                "md5": "9cf2fdbc6324c544f646b811fe5df69d",
                "sha256": "663c3021b6f2b1dc67fccbb9ee3bc8b0cd0f0224d13b76a8116c6ef85f1d0a99"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9cf2fdbc6324c544f646b811fe5df69d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1178870,
            "upload_time": "2023-10-16T10:58:28",
            "upload_time_iso_8601": "2023-10-16T10:58:28.409645Z",
            "url": "https://files.pythonhosted.org/packages/67/71/63a6ba59675308331531b4b4f3b9e219bc7459f4f7d6928ec3760901e9d6/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "494b686971a5f9a05d01d0d9ca20f5a41eda6193cee411805ef20ea8b63eb4d8",
                "md5": "77d82ae90b5e8051331615c05d92a09d",
                "sha256": "adf127907cc16f482736ea9acf042637fda9666901f7dece12adb8ea0cfa194f"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "77d82ae90b5e8051331615c05d92a09d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1292805,
            "upload_time": "2023-10-16T10:58:31",
            "upload_time_iso_8601": "2023-10-16T10:58:31.377334Z",
            "url": "https://files.pythonhosted.org/packages/49/4b/686971a5f9a05d01d0d9ca20f5a41eda6193cee411805ef20ea8b63eb4d8/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44e3ccef71868c15a5322f779b41654378b2feb8c839543ecd0abc3a9e804e2a",
                "md5": "a857e2514c2a9f46b53dca995b8bf54f",
                "sha256": "a9fd76a4692ceb017708673d44416924ecd4cd87e2b4765c9169347ecbea9724"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a857e2514c2a9f46b53dca995b8bf54f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1351217,
            "upload_time": "2023-10-16T10:58:34",
            "upload_time_iso_8601": "2023-10-16T10:58:34.191837Z",
            "url": "https://files.pythonhosted.org/packages/44/e3/ccef71868c15a5322f779b41654378b2feb8c839543ecd0abc3a9e804e2a/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "723348849d07138aa3d78c8faa1d8ad8c86dc3595df7e29d488afa512c81e44b",
                "md5": "6f9e4fe96ef4e4beb375d9bc2c6e7f2a",
                "sha256": "f46c6def6e6f5ae2fcbc0b66409837456efb284427b21a5598650db2b66305ee"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f9e4fe96ef4e4beb375d9bc2c6e7f2a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1181876,
            "upload_time": "2023-10-16T10:58:36",
            "upload_time_iso_8601": "2023-10-16T10:58:36.953900Z",
            "url": "https://files.pythonhosted.org/packages/72/33/48849d07138aa3d78c8faa1d8ad8c86dc3595df7e29d488afa512c81e44b/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a638a38844d44d3720f67fa81f87f0888d5560a51a280a0d298b1059a9e16c94",
                "md5": "edc5698fd2d376e14d4d0302176db7be",
                "sha256": "dc882e297b3e4e0d699bc3d14dd490ceb8a6375eacc45df2a2ae64aeda68b457"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "edc5698fd2d376e14d4d0302176db7be",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1201584,
            "upload_time": "2023-10-16T10:58:39",
            "upload_time_iso_8601": "2023-10-16T10:58:39.692808Z",
            "url": "https://files.pythonhosted.org/packages/a6/38/a38844d44d3720f67fa81f87f0888d5560a51a280a0d298b1059a9e16c94/pycw_fn-0.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17da8561318b187300418368ca2e6e849f6bf6251de9264910123a032c97aa0e",
                "md5": "a784ce2c4d0254653c187187b8383d10",
                "sha256": "51c00266d22c2802561a82a3d6b94d728dfbd54b5f77cb3259a53be7d12ed9b3"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a784ce2c4d0254653c187187b8383d10",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1174866,
            "upload_time": "2023-10-16T10:58:42",
            "upload_time_iso_8601": "2023-10-16T10:58:42.280384Z",
            "url": "https://files.pythonhosted.org/packages/17/da/8561318b187300418368ca2e6e849f6bf6251de9264910123a032c97aa0e/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a882aac141a759472f2f870c743dba87c2be15d5d76697df3bc2e0b406c47b88",
                "md5": "942fdaccfa3d2b1a1da1317f531e05c5",
                "sha256": "1b9d60c961598cfa8e5ae0c7d3000db4d06c697c6c918b41cd4542ebf3eec7e1"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "942fdaccfa3d2b1a1da1317f531e05c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1180596,
            "upload_time": "2023-10-16T10:58:44",
            "upload_time_iso_8601": "2023-10-16T10:58:44.973542Z",
            "url": "https://files.pythonhosted.org/packages/a8/82/aac141a759472f2f870c743dba87c2be15d5d76697df3bc2e0b406c47b88/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "792cea29f3d7ad783921b5b4ed329acb0b61e0f7db1a3805fc55130b9759cdff",
                "md5": "328b5ea3ca9fa6a432a653542fea9cde",
                "sha256": "34836addc632e946b767a7a5df04dc403c6f67da2a52621ab64eca41bb76f174"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "328b5ea3ca9fa6a432a653542fea9cde",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1292310,
            "upload_time": "2023-10-16T10:58:47",
            "upload_time_iso_8601": "2023-10-16T10:58:47.926972Z",
            "url": "https://files.pythonhosted.org/packages/79/2c/ea29f3d7ad783921b5b4ed329acb0b61e0f7db1a3805fc55130b9759cdff/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "283ee41c15251c72d6fac3745a86b5241a36856e3cfc5249d16020f99656edb0",
                "md5": "44be3881f4cbb1cfd059228bcdb53a8c",
                "sha256": "00cd4a688a4dabb83c3d314fed50faf7067393af06befa27a655983db76b4cb5"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "44be3881f4cbb1cfd059228bcdb53a8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1348799,
            "upload_time": "2023-10-16T10:58:50",
            "upload_time_iso_8601": "2023-10-16T10:58:50.755051Z",
            "url": "https://files.pythonhosted.org/packages/28/3e/e41c15251c72d6fac3745a86b5241a36856e3cfc5249d16020f99656edb0/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04261d3d3c9a694e2924a7f68b4c4fbd1bcf37e8f63655125982a1aa9081e1c2",
                "md5": "be7e8701a01f4391dbb97b76debe1062",
                "sha256": "31f07665292dd29be006aada7f868116356c24e7bb10332958175c7cf36b6a66"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be7e8701a01f4391dbb97b76debe1062",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1181073,
            "upload_time": "2023-10-16T10:58:53",
            "upload_time_iso_8601": "2023-10-16T10:58:53.810928Z",
            "url": "https://files.pythonhosted.org/packages/04/26/1d3d3c9a694e2924a7f68b4c4fbd1bcf37e8f63655125982a1aa9081e1c2/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fcffe93a85c730b681f5638e69cb94bdc6ec396b6352f70079359337b2e7cf6",
                "md5": "238c794c65e2c68964ae8a636ad68e13",
                "sha256": "75366adaeed83fb8150f7615cfef223f9d8106a9cd8b616199ac7c3c4fecd507"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "238c794c65e2c68964ae8a636ad68e13",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1199753,
            "upload_time": "2023-10-16T10:58:56",
            "upload_time_iso_8601": "2023-10-16T10:58:56.681583Z",
            "url": "https://files.pythonhosted.org/packages/4f/cf/fe93a85c730b681f5638e69cb94bdc6ec396b6352f70079359337b2e7cf6/pycw_fn-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e3eff7c2f3e04ac9a30cf17e88c808c327e393de220ff470fddcad884c12691",
                "md5": "b997722008d8484335d190128cb5a95e",
                "sha256": "4fcad693d7323c41000b5c945335d173274621306249bc44c5d4df05dcb01c17"
            },
            "downloads": -1,
            "filename": "pycw_fn-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b997722008d8484335d190128cb5a95e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6660,
            "upload_time": "2023-10-16T10:58:58",
            "upload_time_iso_8601": "2023-10-16T10:58:58.711642Z",
            "url": "https://files.pythonhosted.org/packages/2e/3e/ff7c2f3e04ac9a30cf17e88c808c327e393de220ff470fddcad884c12691/pycw_fn-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-16 10:58:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SV-97",
    "github_project": "pycw_fn",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pycw-fn"
}
        
Elapsed time: 0.12947s