quicksectx


Namequicksectx JSON
Version 0.4.0 PyPI version JSON
download
home_pagehttps://github.com/jianlins/quicksectx
SummaryQuicksect is a fast python / cython implementation of interval search.
upload_time2024-10-12 06:17:36
maintainerNone
docs_urlNone
authorBrent Pedersen,Jianlin Shi
requires_python>=3.8
licenseThe MIT License (MIT) Copyright (c) 2016 Brent Pedersen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords quicksectx interval search interval tree
VCS
bugtrack_url
requirements Cython
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Quicksect
=========

Description
-----------


Quicksect is a fast python / cython implementation of interval search based on the pure python version in 
`bx-python <http://bx-python.trac.bx.psu.edu/>`__ 
I pulled it out, optimized and converted to cython and James Taylor has incoporated it back into bx-python
with his improvements.

I have brought this project back from the dead because I want a fast, simple, no-dependencies Interval
tree.

(https://github.com/brentp/quicksect)

Extended with removal operations and allows pretty print to display tree structure (By Jianlin)


License is MIT.

Installation
------------

    pip install quicksectx

Use
---

To use extended quicksect(quicksectx):

    >>> from quicksectx import IntervalNode, IntervalTree, Interval
    >>> tree = IntervalTree()
    >>> tree.add(1, 3, 100)
    >>> tree.add(3, 7, 110)
    >>> tree.add(2, 5, 120)
    >>> tree.add(4, 6, 130)
    >>> print(tree.pretty_print())
    Inv(1, 3, d=100)
    r:  Inv(3, 7, d=110)
    l:    Inv(2, 5, d=120)
    r:    Inv(4, 6, d=130)
    >>> print(tree.find(Interval(2, 5)))
    [Inv(1, 3, d=100), Inv(3, 7, d=110), Inv(2, 5, d=120), Inv(4, 6, d=130)]
    >>> tree.remove(Interval(2, 5))
    >>> print(tree.find(Interval(2, 5)))
    [Inv(1, 3, d=100), Inv(3, 7, d=110), Inv(4, 6, d=130)]
    

To use traditional quicksect, you can still using the same syntax:

    >>> from quicksect import IntervalNode, Interval, IntervalTree

Most common use will be via IntervalTree:

    >>> tree = IntervalTree()
    >>> tree.add(23, 45)
    >>> tree.add(55, 66)
    >>> tree.search(46, 47)
    []
    >>> tree.search(44, 56)
    [Interval(55, 66), Interval(23, 45)]

    >>> tree.insert(Interval(88, 444, 'a'))
    >>> res = tree.find(Interval(99, 100, 'b'))
    >>> res
    [Interval(88, 444)]
    >>> res[0].start, res[0].end, res[0].data
    (88, 444, 'a')

Thats pretty much everything you need to know about the tree.


Test
----

$ python setup.py test

Low-Level
+++++++++

In some cases, users may want to utilize the lower-level interface that accesses
the nodes of the tree:

    >>> inter = IntervalNode(Interval(22, 33))
    >>> inter = inter.insert(Interval(44, 55))
    >>> inter.intersect(24, 26)
    [Interval(22, 33)]

    >>> inter.left(Interval(34, 35), n=1)
    [Interval(22, 33)]

    >>> inter.right(Interval(34, 35), n=1)
    [Interval(44, 55)]


Since 0.3.7, you can use python's native pickle to pickle an IntervalTree object. For details, check 
`test_serialization.py <https://github.com/jianlins/quicksectx/blob/master/tests/test_serialization.py>`__

For Dev
-------

Now the version specification has been integrated with setup.py and pyproject.toml. To update versions, only need to change the __version__ in `quicksectx/__init__.py <https://github.com/jianlins/quicksectx/blob/master/quicksectx/__init__.py>`__

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jianlins/quicksectx",
    "name": "quicksectx",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "quicksectx, interval search, interval tree",
    "author": "Brent Pedersen,Jianlin Shi",
    "author_email": "Jianlin <jianlinshi.cn@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/40/af/f890ee37cb2801e548aaa7479073427cf0586a414564eaba13c76647c9fe/quicksectx-0.4.0.tar.gz",
    "platform": null,
    "description": "Quicksect\n=========\n\nDescription\n-----------\n\n\nQuicksect is a fast python / cython implementation of interval search based on the pure python version in \n`bx-python <http://bx-python.trac.bx.psu.edu/>`__ \nI pulled it out, optimized and converted to cython and James Taylor has incoporated it back into bx-python\nwith his improvements.\n\nI have brought this project back from the dead because I want a fast, simple, no-dependencies Interval\ntree.\n\n(https://github.com/brentp/quicksect)\n\nExtended with removal operations and allows pretty print to display tree structure (By Jianlin)\n\n\nLicense is MIT.\n\nInstallation\n------------\n\n    pip install quicksectx\n\nUse\n---\n\nTo use extended quicksect(quicksectx):\n\n    >>> from quicksectx import IntervalNode, IntervalTree, Interval\n    >>> tree = IntervalTree()\n    >>> tree.add(1, 3, 100)\n    >>> tree.add(3, 7, 110)\n    >>> tree.add(2, 5, 120)\n    >>> tree.add(4, 6, 130)\n    >>> print(tree.pretty_print())\n    Inv(1, 3, d=100)\n    r:  Inv(3, 7, d=110)\n    l:    Inv(2, 5, d=120)\n    r:    Inv(4, 6, d=130)\n    >>> print(tree.find(Interval(2, 5)))\n    [Inv(1, 3, d=100), Inv(3, 7, d=110), Inv(2, 5, d=120), Inv(4, 6, d=130)]\n    >>> tree.remove(Interval(2, 5))\n    >>> print(tree.find(Interval(2, 5)))\n    [Inv(1, 3, d=100), Inv(3, 7, d=110), Inv(4, 6, d=130)]\n    \n\nTo use traditional quicksect, you can still using the same syntax:\n\n    >>> from quicksect import IntervalNode, Interval, IntervalTree\n\nMost common use will be via IntervalTree:\n\n    >>> tree = IntervalTree()\n    >>> tree.add(23, 45)\n    >>> tree.add(55, 66)\n    >>> tree.search(46, 47)\n    []\n    >>> tree.search(44, 56)\n    [Interval(55, 66), Interval(23, 45)]\n\n    >>> tree.insert(Interval(88, 444, 'a'))\n    >>> res = tree.find(Interval(99, 100, 'b'))\n    >>> res\n    [Interval(88, 444)]\n    >>> res[0].start, res[0].end, res[0].data\n    (88, 444, 'a')\n\nThats pretty much everything you need to know about the tree.\n\n\nTest\n----\n\n$ python setup.py test\n\nLow-Level\n+++++++++\n\nIn some cases, users may want to utilize the lower-level interface that accesses\nthe nodes of the tree:\n\n    >>> inter = IntervalNode(Interval(22, 33))\n    >>> inter = inter.insert(Interval(44, 55))\n    >>> inter.intersect(24, 26)\n    [Interval(22, 33)]\n\n    >>> inter.left(Interval(34, 35), n=1)\n    [Interval(22, 33)]\n\n    >>> inter.right(Interval(34, 35), n=1)\n    [Interval(44, 55)]\n\n\nSince 0.3.7, you can use python's native pickle to pickle an IntervalTree object. For details, check \n`test_serialization.py <https://github.com/jianlins/quicksectx/blob/master/tests/test_serialization.py>`__\n\nFor Dev\n-------\n\nNow the version specification has been integrated with setup.py and pyproject.toml. To update versions, only need to change the __version__ in `quicksectx/__init__.py <https://github.com/jianlins/quicksectx/blob/master/quicksectx/__init__.py>`__\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT) Copyright (c) 2016 Brent Pedersen  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Quicksect is a fast python / cython implementation of interval search.",
    "version": "0.4.0",
    "project_urls": {
        "Homepage": "https://github.com/jianlins/quicksectx",
        "Source": "https://github.com/jianlins/quicksectx"
    },
    "split_keywords": [
        "quicksectx",
        " interval search",
        " interval tree"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67d60d03bf14032a3c162cdc1044df313086e1d8048914506d5f7156588d07f1",
                "md5": "a3d973f380b9ebce822ec5948355522c",
                "sha256": "2800f23a6d89bea42f9bd0f3ee589818cd6769333e2dd139bb73e9eba2dac295"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a3d973f380b9ebce822ec5948355522c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 504884,
            "upload_time": "2024-10-12T06:17:12",
            "upload_time_iso_8601": "2024-10-12T06:17:12.924199Z",
            "url": "https://files.pythonhosted.org/packages/67/d6/0d03bf14032a3c162cdc1044df313086e1d8048914506d5f7156588d07f1/quicksectx-0.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e90560089ad762b82d67d7bf05e39e10d5da05ccb1f3e0ba3df1a9ef2c91f81f",
                "md5": "b6cc93200a7a81840538d4614abad13b",
                "sha256": "8a9b1d936bc90199c0591974a1282d913a937cfe2f50e0ca235746c96f34e23c"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6cc93200a7a81840538d4614abad13b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1035989,
            "upload_time": "2024-10-12T06:17:14",
            "upload_time_iso_8601": "2024-10-12T06:17:14.725752Z",
            "url": "https://files.pythonhosted.org/packages/e9/05/60089ad762b82d67d7bf05e39e10d5da05ccb1f3e0ba3df1a9ef2c91f81f/quicksectx-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4c9e01386e44eb06aa65707a1fc47020e65a1666c03363ac738778afba83b84",
                "md5": "7095231bc04c28866a028b532b31dab9",
                "sha256": "dd73fd822e50d7a938a9296098e73e6bd8c61d4ade14c18c5ca0457d30130dcf"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7095231bc04c28866a028b532b31dab9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 356083,
            "upload_time": "2024-10-12T06:17:16",
            "upload_time_iso_8601": "2024-10-12T06:17:16.930773Z",
            "url": "https://files.pythonhosted.org/packages/a4/c9/e01386e44eb06aa65707a1fc47020e65a1666c03363ac738778afba83b84/quicksectx-0.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2f82c07b96f891091defc28fdfab794942a8966e9ee83113173fdb4a0b742d0",
                "md5": "1d38badd69ef00a942e7308eeb8e9e77",
                "sha256": "d40aaec345f47192b2c9e2e1235835560a85a3aed5b61b661e8e74c5cecaca33"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1d38badd69ef00a942e7308eeb8e9e77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 505774,
            "upload_time": "2024-10-12T06:17:18",
            "upload_time_iso_8601": "2024-10-12T06:17:18.021718Z",
            "url": "https://files.pythonhosted.org/packages/a2/f8/2c07b96f891091defc28fdfab794942a8966e9ee83113173fdb4a0b742d0/quicksectx-0.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89a9a20978b3128220eb9ba07999667a9201bbf1a7196f18f23770309cac4c48",
                "md5": "5da3da978f93ca41fda3a9f8437ab06d",
                "sha256": "68fc1af2027ffdf72ff6b77a446d28f01161b523a94879748cf6e589c30d8ada"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5da3da978f93ca41fda3a9f8437ab06d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1079350,
            "upload_time": "2024-10-12T06:17:19",
            "upload_time_iso_8601": "2024-10-12T06:17:19.599224Z",
            "url": "https://files.pythonhosted.org/packages/89/a9/a20978b3128220eb9ba07999667a9201bbf1a7196f18f23770309cac4c48/quicksectx-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cab73dd75210323c0729b810f9a4f6cefad207512ae2f2b0d36c07da9d5d684d",
                "md5": "571e05b79d30685ccd791684bd8cbaf5",
                "sha256": "cec691ca82e914ce79fc790bac4d715677c6015c38b52d2e10d0afef5533e028"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "571e05b79d30685ccd791684bd8cbaf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 356396,
            "upload_time": "2024-10-12T06:17:21",
            "upload_time_iso_8601": "2024-10-12T06:17:21.240367Z",
            "url": "https://files.pythonhosted.org/packages/ca/b7/3dd75210323c0729b810f9a4f6cefad207512ae2f2b0d36c07da9d5d684d/quicksectx-0.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c8bbd38db6a6e8dfc1f477631ed8aad0704dedd59017bdbed0d9eebe5f74e5c",
                "md5": "1ac61c7fe4979316dd3f57ea0b175259",
                "sha256": "1a673f6d34e160671a2cb6e7a0efde6696aa4f61914764e2188e32f5675e5c01"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "1ac61c7fe4979316dd3f57ea0b175259",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 505476,
            "upload_time": "2024-10-12T06:17:22",
            "upload_time_iso_8601": "2024-10-12T06:17:22.804964Z",
            "url": "https://files.pythonhosted.org/packages/9c/8b/bd38db6a6e8dfc1f477631ed8aad0704dedd59017bdbed0d9eebe5f74e5c/quicksectx-0.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce8bb78668747d96c0f40f50988320c6a43024b7fe64df96aea8d0c30420adb5",
                "md5": "dcd9c698412875917c251d5cd070129e",
                "sha256": "607694b64eda1a4ac90f7de9db9989ca7246fda5f1d2d2025e4e81210a54e8e6"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcd9c698412875917c251d5cd070129e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1071342,
            "upload_time": "2024-10-12T06:17:24",
            "upload_time_iso_8601": "2024-10-12T06:17:24.503765Z",
            "url": "https://files.pythonhosted.org/packages/ce/8b/b78668747d96c0f40f50988320c6a43024b7fe64df96aea8d0c30420adb5/quicksectx-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e24fc47ddc2238bcd101a0f9da7ede0594cfc1a07499039497fb1132575744c",
                "md5": "7e87811243f2bef6b3451fa7d5039e2a",
                "sha256": "cb0466e5d5ed80e81560a90bc8cf40de4777c13f62a11852840e02351675c366"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e87811243f2bef6b3451fa7d5039e2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 356894,
            "upload_time": "2024-10-12T06:17:26",
            "upload_time_iso_8601": "2024-10-12T06:17:26.493082Z",
            "url": "https://files.pythonhosted.org/packages/4e/24/fc47ddc2238bcd101a0f9da7ede0594cfc1a07499039497fb1132575744c/quicksectx-0.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "363ec9c266981504954cfedfa32af20a1e9643fa25f017e6679849410ddea485",
                "md5": "7199bcc8bc5ae8151546006ef159521b",
                "sha256": "ba25fb2a893192f2fb77c79d5c4617880b4a4b630ffc2a1bb30a329c68ac3626"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7199bcc8bc5ae8151546006ef159521b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 506409,
            "upload_time": "2024-10-12T06:17:27",
            "upload_time_iso_8601": "2024-10-12T06:17:27.973851Z",
            "url": "https://files.pythonhosted.org/packages/36/3e/c9c266981504954cfedfa32af20a1e9643fa25f017e6679849410ddea485/quicksectx-0.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5330d6e7004ccf62f6944a4fd3a69a16b6bd46db5d6456d5527044a3ce378fc",
                "md5": "c23bd41ca13000bee259b229dfb98b31",
                "sha256": "260a6bf40ab5f812e4b679153e8bd24cd16906a9e302afb830aa2cbf798cd56d"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c23bd41ca13000bee259b229dfb98b31",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1049917,
            "upload_time": "2024-10-12T06:17:30",
            "upload_time_iso_8601": "2024-10-12T06:17:30.562071Z",
            "url": "https://files.pythonhosted.org/packages/d5/33/0d6e7004ccf62f6944a4fd3a69a16b6bd46db5d6456d5527044a3ce378fc/quicksectx-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fee7caa580f7b79cedeac884ff6463d3f9451ee0315e17b4e36cd51db9a5b7c0",
                "md5": "9eda4968733ca93a445630b31c327266",
                "sha256": "6e4b4c4a7dc72b15afa582c41a94d8cc4d4d5b8729985315b3b2c3bd5b210f4d"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9eda4968733ca93a445630b31c327266",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 356780,
            "upload_time": "2024-10-12T06:17:31",
            "upload_time_iso_8601": "2024-10-12T06:17:31.724427Z",
            "url": "https://files.pythonhosted.org/packages/fe/e7/caa580f7b79cedeac884ff6463d3f9451ee0315e17b4e36cd51db9a5b7c0/quicksectx-0.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bb311c928a843eee0cf23d071a0e2925eabf38edf9ad01f2da19359d79fb992",
                "md5": "e303e4e3c4f1a1f1ce6c33f234d45c51",
                "sha256": "5349c40c1ca0883f9c32c653d45a06f3c56c6521c9111a290122bee42a3be30d"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e303e4e3c4f1a1f1ce6c33f234d45c51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 506059,
            "upload_time": "2024-10-12T06:17:32",
            "upload_time_iso_8601": "2024-10-12T06:17:32.950539Z",
            "url": "https://files.pythonhosted.org/packages/0b/b3/11c928a843eee0cf23d071a0e2925eabf38edf9ad01f2da19359d79fb992/quicksectx-0.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a6d020e430173990cedf91a4470772fd1fbe51614198b6861e74da93e864e5f",
                "md5": "a8f4a9692bf2f94221d3562ba7731064",
                "sha256": "3566af75a1b0a4efee8b86be1f4de361cd4cb35c3a7729261a88c566171f52ea"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8f4a9692bf2f94221d3562ba7731064",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1037842,
            "upload_time": "2024-10-12T06:17:34",
            "upload_time_iso_8601": "2024-10-12T06:17:34.063457Z",
            "url": "https://files.pythonhosted.org/packages/9a/6d/020e430173990cedf91a4470772fd1fbe51614198b6861e74da93e864e5f/quicksectx-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6730da4b208042512666d2aa74bf67a5c066c1513a28792040dfe29c9aade709",
                "md5": "6d9ae4f3e20dd08c3d971b4b9660b4eb",
                "sha256": "de3870f8208aef9218ac3fd92201dab1ed76ecd338fcaeb1137031ab7e673342"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d9ae4f3e20dd08c3d971b4b9660b4eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 356330,
            "upload_time": "2024-10-12T06:17:35",
            "upload_time_iso_8601": "2024-10-12T06:17:35.222268Z",
            "url": "https://files.pythonhosted.org/packages/67/30/da4b208042512666d2aa74bf67a5c066c1513a28792040dfe29c9aade709/quicksectx-0.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40aff890ee37cb2801e548aaa7479073427cf0586a414564eaba13c76647c9fe",
                "md5": "2f4626fb3abf7eaf26e803b672e6f4ca",
                "sha256": "25bc4ce3638c0713c8b57274454adac071e36ee76265707771eb3dab75245c55"
            },
            "downloads": -1,
            "filename": "quicksectx-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2f4626fb3abf7eaf26e803b672e6f4ca",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 238176,
            "upload_time": "2024-10-12T06:17:36",
            "upload_time_iso_8601": "2024-10-12T06:17:36.257767Z",
            "url": "https://files.pythonhosted.org/packages/40/af/f890ee37cb2801e548aaa7479073427cf0586a414564eaba13c76647c9fe/quicksectx-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-12 06:17:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jianlins",
    "github_project": "quicksectx",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "Cython",
            "specs": [
                [
                    "<=",
                    "3.0.11"
                ],
                [
                    ">=",
                    "0.25"
                ]
            ]
        }
    ],
    "lcname": "quicksectx"
}
        
Elapsed time: 1.01085s