cypcap


Namecypcap JSON
Version 0.6.1 PyPI version JSON
download
home_pagehttps://github.com/segevfiner/cypcap
SummaryA Cython based binding for modern libpcap
upload_time2024-10-29 19:52:09
maintainerNone
docs_urlNone
authorSegev Finer
requires_python>=3.6
licenseBSD-3-Clause
keywords libpcap pcap
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            cypcap
======
.. image:: https://img.shields.io/pypi/v/cypcap.svg
   :target: https://pypi.org/project/cypcap/
   :alt: PyPI

.. image:: https://github.com/segevfiner/cypcap/actions/workflows/docs.yml/badge.svg
   :target: https://segevfiner.github.io/cypcap/
   :alt: Docs

.. image:: https://github.com/segevfiner/cypcap/actions/workflows/build-and-test.yml/badge.svg
   :target: https://github.com/segevfiner/cypcap/actions/workflows/build-and-test.yml
   :alt: Build & Test

This package is a Cython based binding for modern libpcap versions, for Python 3.6+, attempting to
be more complete than existing and poorly maintained packages.

`Documentation <https://segevfiner.github.io/cypcap/>`_

Installation
------------
::

    $ pip install cypcap

Python 3.6+ and libpcap 1.8+ is required (Older libpcap versions can be supported if needed).

Build From Source
^^^^^^^^^^^^^^^^^
On Windows, download and extract the `Npcap SDK`_ and set the enviromnet variable ``NPCAP_SDK`` to
its location (You will also need to install Npcap, Wireshark installs it as part of its
installation).

On Linux, install the libpcap development package from your package manager. e.g. For Ubuntu::

    $ sudo apt update && sudo apt install libpcap-dev

.. _`Npcap SDK`: https://nmap.org/npcap/

Quickstart
----------
.. code-block:: python

    import cypcap

    dev = cypcap.findalldevs()[0]  # You should filter the list or let the user choose a device
    with cypcap.create(dev) as pcap:
        pcap.set_snaplen(65536)
        pcap.set_promisc(True)
        pcap.set_timeout(1000)
        pcap.activate()

        for pkthdr, data in pcap:
            if pkthdr is None:
                continue

            print(pkthdr, data)

License
-------
3-Clause BSD license (The same kind of license that libpcap uses).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/segevfiner/cypcap",
    "name": "cypcap",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "libpcap pcap",
    "author": "Segev Finer",
    "author_email": "segev208@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c0/4b/40f8f986dba8507da520b65fefb44e062b1590c03e5917522b8366ff28a6/cypcap-0.6.1.tar.gz",
    "platform": null,
    "description": "cypcap\n======\n.. image:: https://img.shields.io/pypi/v/cypcap.svg\n   :target: https://pypi.org/project/cypcap/\n   :alt: PyPI\n\n.. image:: https://github.com/segevfiner/cypcap/actions/workflows/docs.yml/badge.svg\n   :target: https://segevfiner.github.io/cypcap/\n   :alt: Docs\n\n.. image:: https://github.com/segevfiner/cypcap/actions/workflows/build-and-test.yml/badge.svg\n   :target: https://github.com/segevfiner/cypcap/actions/workflows/build-and-test.yml\n   :alt: Build & Test\n\nThis package is a Cython based binding for modern libpcap versions, for Python 3.6+, attempting to\nbe more complete than existing and poorly maintained packages.\n\n`Documentation <https://segevfiner.github.io/cypcap/>`_\n\nInstallation\n------------\n::\n\n    $ pip install cypcap\n\nPython 3.6+ and libpcap 1.8+ is required (Older libpcap versions can be supported if needed).\n\nBuild From Source\n^^^^^^^^^^^^^^^^^\nOn Windows, download and extract the `Npcap SDK`_ and set the enviromnet variable ``NPCAP_SDK`` to\nits location (You will also need to install Npcap, Wireshark installs it as part of its\ninstallation).\n\nOn Linux, install the libpcap development package from your package manager. e.g. For Ubuntu::\n\n    $ sudo apt update && sudo apt install libpcap-dev\n\n.. _`Npcap SDK`: https://nmap.org/npcap/\n\nQuickstart\n----------\n.. code-block:: python\n\n    import cypcap\n\n    dev = cypcap.findalldevs()[0]  # You should filter the list or let the user choose a device\n    with cypcap.create(dev) as pcap:\n        pcap.set_snaplen(65536)\n        pcap.set_promisc(True)\n        pcap.set_timeout(1000)\n        pcap.activate()\n\n        for pkthdr, data in pcap:\n            if pkthdr is None:\n                continue\n\n            print(pkthdr, data)\n\nLicense\n-------\n3-Clause BSD license (The same kind of license that libpcap uses).\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A Cython based binding for modern libpcap",
    "version": "0.6.1",
    "project_urls": {
        "Documentation": "https://segevfiner.github.io/cypcap/",
        "Homepage": "https://github.com/segevfiner/cypcap",
        "Issue Tracker": "https://github.com/segevfiner/cypcap/issues"
    },
    "split_keywords": [
        "libpcap",
        "pcap"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71c28bd64bf5b88e4788d03406c6d1bd9fe15826855138567e88b9309fb34d9a",
                "md5": "abac91643b022a7f407bda2e794aeedd",
                "sha256": "c5463edf984ea32d8bd446026e7a4e0340c591f0696389fae6debeedf31ac206"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "abac91643b022a7f407bda2e794aeedd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 502848,
            "upload_time": "2024-10-29T19:50:08",
            "upload_time_iso_8601": "2024-10-29T19:50:08.913665Z",
            "url": "https://files.pythonhosted.org/packages/71/c2/8bd64bf5b88e4788d03406c6d1bd9fe15826855138567e88b9309fb34d9a/cypcap-0.6.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62ff4767cc0a77f759d7139fcc61d4157e2ee8c780ce30325cd01ba83fb8b059",
                "md5": "fb2e07129e8e46be6cc06c9fd35f7d6a",
                "sha256": "934e923b9549ce36105c94e7a36fafcb72ba0b42b8f9786f19d50c57c1756a7e"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fb2e07129e8e46be6cc06c9fd35f7d6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1825709,
            "upload_time": "2024-10-29T19:50:14",
            "upload_time_iso_8601": "2024-10-29T19:50:14.247037Z",
            "url": "https://files.pythonhosted.org/packages/62/ff/4767cc0a77f759d7139fcc61d4157e2ee8c780ce30325cd01ba83fb8b059/cypcap-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c1b9cc7d60bd740b41587b25e30862d31d4d38ddd9025417029c1c4e8daf43e",
                "md5": "135dd3e001558261d788bb8ce3e47b16",
                "sha256": "58dcc55f05d03e129c426774fe0183a7545878fab4b595bc2e40d564018bcc50"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "135dd3e001558261d788bb8ce3e47b16",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1905452,
            "upload_time": "2024-10-29T19:50:18",
            "upload_time_iso_8601": "2024-10-29T19:50:18.985094Z",
            "url": "https://files.pythonhosted.org/packages/5c/1b/9cc7d60bd740b41587b25e30862d31d4d38ddd9025417029c1c4e8daf43e/cypcap-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd5a0bb388b51fde16ccf7207222b49bdc05fa91287b34634e97f859d8c784ef",
                "md5": "ce43f6fa4330cbeab95cb44666ab2b0d",
                "sha256": "9abbd1644899319eacfdda97ee14fbfa75eef8a20f593adb3e2dde8443cab3a3"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ce43f6fa4330cbeab95cb44666ab2b0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 187784,
            "upload_time": "2024-10-29T19:50:21",
            "upload_time_iso_8601": "2024-10-29T19:50:21.110879Z",
            "url": "https://files.pythonhosted.org/packages/cd/5a/0bb388b51fde16ccf7207222b49bdc05fa91287b34634e97f859d8c784ef/cypcap-0.6.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "119e2e8183e573906394120f580e2ce96340ea17afb6a55520bf2bd3d958b6ec",
                "md5": "665e36700f86b6b80c5b9dcce9f13479",
                "sha256": "b3348141218cd185070e369ad341181f31a247403f238d6b81a66dce810bcddf"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "665e36700f86b6b80c5b9dcce9f13479",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 215536,
            "upload_time": "2024-10-29T19:50:23",
            "upload_time_iso_8601": "2024-10-29T19:50:23.536307Z",
            "url": "https://files.pythonhosted.org/packages/11/9e/2e8183e573906394120f580e2ce96340ea17afb6a55520bf2bd3d958b6ec/cypcap-0.6.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07bffd3855df4b2886d948e30ece1942eaebea850ced08be1faaa61c57f9ca15",
                "md5": "ab5d2992a31e825a5eaaa93d275b1a97",
                "sha256": "7707a89d5c97ec7049779a975c9d0f3dfbd82735fedb59586030bb7c7950b1b7"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ab5d2992a31e825a5eaaa93d275b1a97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 504594,
            "upload_time": "2024-10-29T19:50:26",
            "upload_time_iso_8601": "2024-10-29T19:50:26.049875Z",
            "url": "https://files.pythonhosted.org/packages/07/bf/fd3855df4b2886d948e30ece1942eaebea850ced08be1faaa61c57f9ca15/cypcap-0.6.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20ec6b679f3d4599eefc047bb170cc05c8f820cd9eefa9b390d4c84c8e733a66",
                "md5": "c307cb29f2b8eeef451d0dbde6ec3364",
                "sha256": "e022e3b66ad2158799961eca2f3e7cfe4a1a4a6ffeb4b36f9f0bf337622eecc3"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c307cb29f2b8eeef451d0dbde6ec3364",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1948371,
            "upload_time": "2024-10-29T19:50:31",
            "upload_time_iso_8601": "2024-10-29T19:50:31.367053Z",
            "url": "https://files.pythonhosted.org/packages/20/ec/6b679f3d4599eefc047bb170cc05c8f820cd9eefa9b390d4c84c8e733a66/cypcap-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eca4fd0bf45b31b6bdd93416ef20e36f120ca3302b667e873c1d20507ec88102",
                "md5": "1288e1b6c6b918cacba0dd1e23a9e717",
                "sha256": "cc3ec22d6cf626708a15dbbab56fd1a751f5cb2fe197f314d62019fd10ce8d27"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1288e1b6c6b918cacba0dd1e23a9e717",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2032318,
            "upload_time": "2024-10-29T19:50:36",
            "upload_time_iso_8601": "2024-10-29T19:50:36.816935Z",
            "url": "https://files.pythonhosted.org/packages/ec/a4/fd0bf45b31b6bdd93416ef20e36f120ca3302b667e873c1d20507ec88102/cypcap-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1c594b815fe55ad92cff8240fe123972f696bc1fab05fe7cd66cf347e2e65b1",
                "md5": "cd390c9ed73c2e246902b25a5cce6156",
                "sha256": "39459c3297b690aeee902f190c61c6afc9c802d3d509dda5de615bcd7b8d575e"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cd390c9ed73c2e246902b25a5cce6156",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 187282,
            "upload_time": "2024-10-29T19:50:38",
            "upload_time_iso_8601": "2024-10-29T19:50:38.381508Z",
            "url": "https://files.pythonhosted.org/packages/f1/c5/94b815fe55ad92cff8240fe123972f696bc1fab05fe7cd66cf347e2e65b1/cypcap-0.6.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc13d65dab8b05ee055c9ef702f5f61be8447d80d1a728050edebd6b90e4e7b4",
                "md5": "012855b8beee52bedd55861975d894dc",
                "sha256": "e1add2d32d7ab87ec7c8849b414ab290130b4f81d1a0a9db4b8c382f28ee9a8f"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "012855b8beee52bedd55861975d894dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 215666,
            "upload_time": "2024-10-29T19:50:40",
            "upload_time_iso_8601": "2024-10-29T19:50:40.310965Z",
            "url": "https://files.pythonhosted.org/packages/cc/13/d65dab8b05ee055c9ef702f5f61be8447d80d1a728050edebd6b90e4e7b4/cypcap-0.6.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "126d134e646b6fa499e87d4f1244b8d11d0977dbe99ba94a15d8ddfd17166cd6",
                "md5": "c6e5692447661076d84281c14e1cda69",
                "sha256": "c82e5893368261938f6ec9b8337d3bf91021d032b80a1461fa5c7946174be7cb"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "c6e5692447661076d84281c14e1cda69",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 492283,
            "upload_time": "2024-10-29T19:50:42",
            "upload_time_iso_8601": "2024-10-29T19:50:42.327830Z",
            "url": "https://files.pythonhosted.org/packages/12/6d/134e646b6fa499e87d4f1244b8d11d0977dbe99ba94a15d8ddfd17166cd6/cypcap-0.6.1-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "300b9a0fa939ac4cc9cccce7082e5ec54317df77b4fcb071aea1336a061b882f",
                "md5": "c21cceeb88bee0b0bb1c3b61e5c7f598",
                "sha256": "e721bd9a52104a07b7c72588cb186af50a0ba41da3f39f506bba7311132b4338"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c21cceeb88bee0b0bb1c3b61e5c7f598",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1892207,
            "upload_time": "2024-10-29T19:50:47",
            "upload_time_iso_8601": "2024-10-29T19:50:47.286585Z",
            "url": "https://files.pythonhosted.org/packages/30/0b/9a0fa939ac4cc9cccce7082e5ec54317df77b4fcb071aea1336a061b882f/cypcap-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b733ccf1c4a1f4f579f7a3b11f3db60adcda6f06a5459e094fd6657694e9ff6",
                "md5": "9cfdebdad3a7509fd28dcadec708531d",
                "sha256": "2d5befeb6d7be597a6ee3b4c4f3fd9f8de688ee4b595887f3c894a1eab144956"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cfdebdad3a7509fd28dcadec708531d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1988244,
            "upload_time": "2024-10-29T19:50:51",
            "upload_time_iso_8601": "2024-10-29T19:50:51.775519Z",
            "url": "https://files.pythonhosted.org/packages/0b/73/3ccf1c4a1f4f579f7a3b11f3db60adcda6f06a5459e094fd6657694e9ff6/cypcap-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed1b84d9d64aedccc340626faf3d37b73871da31025d131771651371d9cdbf32",
                "md5": "e55e6403c97b464dca8f90572739bbe4",
                "sha256": "0947cb8b405bd403f16982905105045ab0434f5daeac1fad08d78127c7277401"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e55e6403c97b464dca8f90572739bbe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 183097,
            "upload_time": "2024-10-29T19:50:53",
            "upload_time_iso_8601": "2024-10-29T19:50:53.361661Z",
            "url": "https://files.pythonhosted.org/packages/ed/1b/84d9d64aedccc340626faf3d37b73871da31025d131771651371d9cdbf32/cypcap-0.6.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "834354195180a19f8d5ca7ca47991886c9b3b197904ddad6384ee13e17cc7994",
                "md5": "250130097a67c67b409700bf21ee69f6",
                "sha256": "23916f4e1f32d0b416cc031b099547b807e685e9073489c8b6f31128292e9692"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "250130097a67c67b409700bf21ee69f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 210679,
            "upload_time": "2024-10-29T19:50:55",
            "upload_time_iso_8601": "2024-10-29T19:50:55.696685Z",
            "url": "https://files.pythonhosted.org/packages/83/43/54195180a19f8d5ca7ca47991886c9b3b197904ddad6384ee13e17cc7994/cypcap-0.6.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7c49b779bb24a198dbf6ff6b30997cb4aa52fb33159ca565459570a987b1dd0",
                "md5": "27f71e1c503f4fa047f67b5fae57d129",
                "sha256": "95fc3c8716c5fbb9829033d794354f6df68a1c2e83cfbf8a31fe060d62350bbe"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "27f71e1c503f4fa047f67b5fae57d129",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 488448,
            "upload_time": "2024-10-29T19:50:57",
            "upload_time_iso_8601": "2024-10-29T19:50:57.756588Z",
            "url": "https://files.pythonhosted.org/packages/b7/c4/9b779bb24a198dbf6ff6b30997cb4aa52fb33159ca565459570a987b1dd0/cypcap-0.6.1-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09369027255abeee54e515fb61a07f851078aa5b5e98b63431e2f158645f20a5",
                "md5": "227175d9f0ad253b8688be5433397e48",
                "sha256": "07f8f5cd3cfb82448becb6169200064e98c0f91fe3f93313f665adce43ca533e"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "227175d9f0ad253b8688be5433397e48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 1885950,
            "upload_time": "2024-10-29T19:51:02",
            "upload_time_iso_8601": "2024-10-29T19:51:02.782987Z",
            "url": "https://files.pythonhosted.org/packages/09/36/9027255abeee54e515fb61a07f851078aa5b5e98b63431e2f158645f20a5/cypcap-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed71c0500cbb89eb96bd39493a49197cccbca028e3f73c3e0104630496708dc2",
                "md5": "8927b35b1f8f2a77211e5b9739165de2",
                "sha256": "5966b96a39e25cb84922603c92000836b54bf9090f6c2566a5ddb05d71664fcf"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8927b35b1f8f2a77211e5b9739165de2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 1984496,
            "upload_time": "2024-10-29T19:51:07",
            "upload_time_iso_8601": "2024-10-29T19:51:07.507324Z",
            "url": "https://files.pythonhosted.org/packages/ed/71/c0500cbb89eb96bd39493a49197cccbca028e3f73c3e0104630496708dc2/cypcap-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d14ff1957db2dd2c8a3c186eff2412ed6dca53778ce9462545034d91435269e2",
                "md5": "893a1da50f02310a639bb16b7d1c735e",
                "sha256": "9eefb01e6340209c9036f82b30313e9e3511bace4e1751dac9654ce12e099f98"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "893a1da50f02310a639bb16b7d1c735e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 181594,
            "upload_time": "2024-10-29T19:51:09",
            "upload_time_iso_8601": "2024-10-29T19:51:09.736494Z",
            "url": "https://files.pythonhosted.org/packages/d1/4f/f1957db2dd2c8a3c186eff2412ed6dca53778ce9462545034d91435269e2/cypcap-0.6.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6128b9fc202e8b41c12b3ea0ea4506d7f4b578f05fc67626f4905ddd4f15b03",
                "md5": "76389c4996f8380dfdfeb29da25d16e3",
                "sha256": "3890503a0cf2b7162914b948a3ed89dfd6d3e3cc96dcad4ccff7dbf83bcf900f"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "76389c4996f8380dfdfeb29da25d16e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 209521,
            "upload_time": "2024-10-29T19:51:11",
            "upload_time_iso_8601": "2024-10-29T19:51:11.193915Z",
            "url": "https://files.pythonhosted.org/packages/d6/12/8b9fc202e8b41c12b3ea0ea4506d7f4b578f05fc67626f4905ddd4f15b03/cypcap-0.6.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74a2521a8cac874ef4ed681e695b4fe38230c390c9edb0b20fca78c2d1a92608",
                "md5": "363078415d52d54584a6294b1954602b",
                "sha256": "81cd099a8b150e61a74033105d8322bde303ed442179b73e64fde0979a586db4"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "363078415d52d54584a6294b1954602b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1691026,
            "upload_time": "2024-10-29T19:51:16",
            "upload_time_iso_8601": "2024-10-29T19:51:16.164024Z",
            "url": "https://files.pythonhosted.org/packages/74/a2/521a8cac874ef4ed681e695b4fe38230c390c9edb0b20fca78c2d1a92608/cypcap-0.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3456699282b40cb9f05740a5a527bb4a06c9ffb7839ec2452a51ad9ab58f60cc",
                "md5": "dabfa8022606d9d0db84678fd13e7a0a",
                "sha256": "06887a5028697aa49e2f923de3ba7278e32ddd61bbc9e56926ba8f9f46d564ce"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dabfa8022606d9d0db84678fd13e7a0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1773290,
            "upload_time": "2024-10-29T19:51:20",
            "upload_time_iso_8601": "2024-10-29T19:51:20.644004Z",
            "url": "https://files.pythonhosted.org/packages/34/56/699282b40cb9f05740a5a527bb4a06c9ffb7839ec2452a51ad9ab58f60cc/cypcap-0.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "daf88b9bd118d23bcfa4b37c161060240a9a31af4f19a94f4a03390c56f91621",
                "md5": "a1a9cfe4a36e8c55273b6ed722e5f6fd",
                "sha256": "703a07f827a90847b3b455b30bcb118d685290d464e55d08a9442e72ea2d4900"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "a1a9cfe4a36e8c55273b6ed722e5f6fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 193625,
            "upload_time": "2024-10-29T19:51:22",
            "upload_time_iso_8601": "2024-10-29T19:51:22.521994Z",
            "url": "https://files.pythonhosted.org/packages/da/f8/8b9bd118d23bcfa4b37c161060240a9a31af4f19a94f4a03390c56f91621/cypcap-0.6.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab25f8c732941677ed15ae6ab576be9f228579f20724cd393b22dca289c7913",
                "md5": "63b4e02dbd1fe857887788161ba3cd97",
                "sha256": "dd300ddf38ef53a78313e3fb280be407c60ac47dc2ac14f90e158799d099be7c"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63b4e02dbd1fe857887788161ba3cd97",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 230659,
            "upload_time": "2024-10-29T19:51:24",
            "upload_time_iso_8601": "2024-10-29T19:51:24.050989Z",
            "url": "https://files.pythonhosted.org/packages/6a/b2/5f8c732941677ed15ae6ab576be9f228579f20724cd393b22dca289c7913/cypcap-0.6.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c6494111c70443cce60c086c5ba11de47561781a7ae2a561bf55068110c219b",
                "md5": "e523dd2984047031f9f8a7ce0d93f501",
                "sha256": "a3976e902a5ffc40fad37699125207a91536c6031cab965d5dac09a9eae59551"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e523dd2984047031f9f8a7ce0d93f501",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1720140,
            "upload_time": "2024-10-29T19:51:28",
            "upload_time_iso_8601": "2024-10-29T19:51:28.112867Z",
            "url": "https://files.pythonhosted.org/packages/0c/64/94111c70443cce60c086c5ba11de47561781a7ae2a561bf55068110c219b/cypcap-0.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0471ce22dccbb49fc23a8623a14998fca8c180fc066a60dcbb0b41cc20c2c500",
                "md5": "a5dd7708872829f7d5e71015458c3ca8",
                "sha256": "17a15cfe7573727f527b65137abc5b1324568cb15da2800b4f73748e8c1d781c"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5dd7708872829f7d5e71015458c3ca8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1807182,
            "upload_time": "2024-10-29T19:51:32",
            "upload_time_iso_8601": "2024-10-29T19:51:32.701760Z",
            "url": "https://files.pythonhosted.org/packages/04/71/ce22dccbb49fc23a8623a14998fca8c180fc066a60dcbb0b41cc20c2c500/cypcap-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afda858fd3349c98b2d049cfa68d536f8a513734192b0bca4a152cc39c6887a4",
                "md5": "538b4959663dda7efac6a13b721563d4",
                "sha256": "39ce1343f3ba7854d9a654d4ddfe856ae6bd063eab9a663e3b8ecfe2395ff899"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "538b4959663dda7efac6a13b721563d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 182765,
            "upload_time": "2024-10-29T19:51:34",
            "upload_time_iso_8601": "2024-10-29T19:51:34.789401Z",
            "url": "https://files.pythonhosted.org/packages/af/da/858fd3349c98b2d049cfa68d536f8a513734192b0bca4a152cc39c6887a4/cypcap-0.6.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2dbca678f2452403d11e539ad2fcb014ba1bdbd1b87ff28054d9105d627cc295",
                "md5": "8e47f4cc0264530f28b5628070f123d2",
                "sha256": "088b7bf655681803bd86f65ae3b9fcefc1bcd2a2be7fbb9d0f4c29b3eaae6d70"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e47f4cc0264530f28b5628070f123d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 210903,
            "upload_time": "2024-10-29T19:51:36",
            "upload_time_iso_8601": "2024-10-29T19:51:36.276126Z",
            "url": "https://files.pythonhosted.org/packages/2d/bc/a678f2452403d11e539ad2fcb014ba1bdbd1b87ff28054d9105d627cc295/cypcap-0.6.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2971523196bda7f940a98d10f6cbf932d6416f573374009a9267d66c571181",
                "md5": "32d46f0b48adc2ab2dcb64189de17fef",
                "sha256": "2e04c747b526c67e275edd9dccf5f4e60ba1d4e8bee6071871b0ec98549682e4"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "32d46f0b48adc2ab2dcb64189de17fef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 500145,
            "upload_time": "2024-10-29T19:51:38",
            "upload_time_iso_8601": "2024-10-29T19:51:38.769296Z",
            "url": "https://files.pythonhosted.org/packages/9a/29/71523196bda7f940a98d10f6cbf932d6416f573374009a9267d66c571181/cypcap-0.6.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5421d80988e240325bd466676cd734b7d7da84505f3374c26a95c3a4747e258",
                "md5": "02122065e014889453569f724023c9cf",
                "sha256": "8ece32013446937c6d41bcf4192f39ebc7b3d07c97b84b3c15e15f42075b2dbf"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "02122065e014889453569f724023c9cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1850409,
            "upload_time": "2024-10-29T19:51:43",
            "upload_time_iso_8601": "2024-10-29T19:51:43.385101Z",
            "url": "https://files.pythonhosted.org/packages/c5/42/1d80988e240325bd466676cd734b7d7da84505f3374c26a95c3a4747e258/cypcap-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac042db10a5e9148cdd3ba33a30b9247091971fec8a880a7a7a1e457bcdb3644",
                "md5": "419bea3e1d00edc9bead0af791210f57",
                "sha256": "12fa5cc18ae32d87b594861d7dc457813799c95172b1c9107d5155fbe4ac589e"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "419bea3e1d00edc9bead0af791210f57",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1936402,
            "upload_time": "2024-10-29T19:51:47",
            "upload_time_iso_8601": "2024-10-29T19:51:47.815819Z",
            "url": "https://files.pythonhosted.org/packages/ac/04/2db10a5e9148cdd3ba33a30b9247091971fec8a880a7a7a1e457bcdb3644/cypcap-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "733b5b201ee8d97bbe1939f35454c2271e2992007def487bfde48cb4976bf950",
                "md5": "0c95932c6b461d0a61b25c157ae18690",
                "sha256": "48b38bdd1f63d7db50c487c27ca64ac68f92841fe59a61041479bcb0acf144b7"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "0c95932c6b461d0a61b25c157ae18690",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 189535,
            "upload_time": "2024-10-29T19:51:49",
            "upload_time_iso_8601": "2024-10-29T19:51:49.621548Z",
            "url": "https://files.pythonhosted.org/packages/73/3b/5b201ee8d97bbe1939f35454c2271e2992007def487bfde48cb4976bf950/cypcap-0.6.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8033203cf56d935fd75735121bc6bb13eb6a48d66f7686c864d5f6b678f3632f",
                "md5": "ae0ad974a19d773c6efe7bfc11af504e",
                "sha256": "f18ee481b25e62df473b11d222542228102b14691b959031cf439335f7f7f5e8"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae0ad974a19d773c6efe7bfc11af504e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 217852,
            "upload_time": "2024-10-29T19:51:52",
            "upload_time_iso_8601": "2024-10-29T19:51:52.189283Z",
            "url": "https://files.pythonhosted.org/packages/80/33/203cf56d935fd75735121bc6bb13eb6a48d66f7686c864d5f6b678f3632f/cypcap-0.6.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c68f63a7293a288dfc71cbafcb1881381bbc3c9065ad7fba53811348f3abb060",
                "md5": "dbf2f2b70cf6f48f68a3292ab9ae3e37",
                "sha256": "b16e8d37029cb2b15a88faaebd32b1fdffdc2a35e8d0d96b0196505f2c15ab8f"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dbf2f2b70cf6f48f68a3292ab9ae3e37",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 503072,
            "upload_time": "2024-10-29T19:51:54",
            "upload_time_iso_8601": "2024-10-29T19:51:54.688371Z",
            "url": "https://files.pythonhosted.org/packages/c6/8f/63a7293a288dfc71cbafcb1881381bbc3c9065ad7fba53811348f3abb060/cypcap-0.6.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a84c2a59a24c5dc15ff5a2bdb215e29991a0e550d614606b83fa9e4ae030c08",
                "md5": "9e3bfeda77405cd11a212ac59c3b04fe",
                "sha256": "d35cc499f4b1aa2274811d3938b1a81bfa96b659f3b056317ea7f712c6c159a3"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9e3bfeda77405cd11a212ac59c3b04fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1827494,
            "upload_time": "2024-10-29T19:51:59",
            "upload_time_iso_8601": "2024-10-29T19:51:59.534335Z",
            "url": "https://files.pythonhosted.org/packages/4a/84/c2a59a24c5dc15ff5a2bdb215e29991a0e550d614606b83fa9e4ae030c08/cypcap-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4c6f6f6d2a6233dae6b7324a0a0cc050ffb284ff7025523363a9fc5b976860",
                "md5": "b37d51ef384c29429983c54736baf2e3",
                "sha256": "fae4a59d1dbd441b7b04ed5b3773f952d4e978ea664085057217570a59d8325b"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b37d51ef384c29429983c54736baf2e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1907989,
            "upload_time": "2024-10-29T19:52:03",
            "upload_time_iso_8601": "2024-10-29T19:52:03.876884Z",
            "url": "https://files.pythonhosted.org/packages/7f/4c/6f6f6d2a6233dae6b7324a0a0cc050ffb284ff7025523363a9fc5b976860/cypcap-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aa58da99131eefc4d99f2bf2e0d2eb420d4714125c202177f015cdfb0941b0b",
                "md5": "6665143cefc7d09615d2d2bff4c479da",
                "sha256": "08b257e68f0ca8d77da67cdc8441be7a816e8d3dcf2f4440db65131d2ddfc3af"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6665143cefc7d09615d2d2bff4c479da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 187921,
            "upload_time": "2024-10-29T19:52:06",
            "upload_time_iso_8601": "2024-10-29T19:52:06.322467Z",
            "url": "https://files.pythonhosted.org/packages/2a/a5/8da99131eefc4d99f2bf2e0d2eb420d4714125c202177f015cdfb0941b0b/cypcap-0.6.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad82dd0ba47bf72d45273b89fa14001af9cfac4a846d1b57182bb1b0fa2d3262",
                "md5": "5af1ca904fb0fe331c7f319b10bd55f5",
                "sha256": "5a277737d9aa61ad7c10463ebabd6aada23e5f3cb1e11504a5768f9a72c36e86"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5af1ca904fb0fe331c7f319b10bd55f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 215552,
            "upload_time": "2024-10-29T19:52:07",
            "upload_time_iso_8601": "2024-10-29T19:52:07.807745Z",
            "url": "https://files.pythonhosted.org/packages/ad/82/dd0ba47bf72d45273b89fa14001af9cfac4a846d1b57182bb1b0fa2d3262/cypcap-0.6.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c04b40f8f986dba8507da520b65fefb44e062b1590c03e5917522b8366ff28a6",
                "md5": "47d58514e561e45b7fcb4813614c01ba",
                "sha256": "3f8acb42114043bb69043bfe85920f07cdfd9958850cbef061696800adeffce5"
            },
            "downloads": -1,
            "filename": "cypcap-0.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "47d58514e561e45b7fcb4813614c01ba",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 356764,
            "upload_time": "2024-10-29T19:52:09",
            "upload_time_iso_8601": "2024-10-29T19:52:09.786624Z",
            "url": "https://files.pythonhosted.org/packages/c0/4b/40f8f986dba8507da520b65fefb44e062b1590c03e5917522b8366ff28a6/cypcap-0.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-29 19:52:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "segevfiner",
    "github_project": "cypcap",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "cypcap"
}
        
Elapsed time: 0.67820s