pygros


Namepygros JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://github.com/lmdu/pygros
SummaryA python package for finding genomic range overlaps
upload_time2024-07-16 02:44:15
maintainerNone
docs_urlNone
authorLianming Du
requires_pythonNone
licenseMIT
keywords bioinformatics genome interval range overlap intersection
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pygros
======

a python library for finding genomic range overlaps based on `cgranges <https://github.com/lh3/cgranges>`_.

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

``pygros`` is available on `PyPi <https://pypi.org>`_, to install it:

.. code:: bash

	pip install pygros

Usage
-----

.. code:: python

	>>> import pygros
	>>> ranges = pygros.Ranges()
	>>> ranges.add('chr1', 10, 20)
	>>> ranges.add('chr1', 30, 50)
	>>> ranges.add('chr1', 25, 40)
	>>> ranges.index()
	>>> ranges.overlap('chr1', 30, 40)
	[(25, 40, -1), (30, 50, -1)]

API reference
-------------

pygros.Ranges(intervals=[])

	create a Ranges object to store genomic ranges

	@param intervals: a list or tuple containing multiple ranges

	@return Ranges object

	add(chrom, start, end, label=-1)

		add genomic range into Ranges object

		@param chrom: chromosome name or sequence name

		@param start: start of range

		@param end: end of range

		@param label: an integer

	index()

		After add new genomic ranges, use this method to build index

	overlap(chrom, start, end)

		get genomic ranges that overlapped with your given range (start, end)

		@param chrom: chromosome or sequence name

		@param start: start of range

		@param end: end of range

		@return: a list of ranges 

	within(chrom, start, end)

		get genomic ranges within given range (start, end)

		@param chrom: chromosome or sequence name

		@param start: start of range

		@param end: end of range

		@return: a list of ranges

	contain(chrom, start, end)

		get genomic ranges that contained in given range (start, end)

		@param chrom: chromosome or sequence name

		@param start: start of range

		@param end: end of range

		@return: a list of ranges

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lmdu/pygros",
    "name": "pygros",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "bioinformatics genome interval range overlap intersection",
    "author": "Lianming Du",
    "author_email": "adullb@qq.com",
    "download_url": "https://files.pythonhosted.org/packages/fc/a3/ebf036afde1c5b17154a870f2e56929ce40cb589e12fc56585428bb878df/pygros-0.1.4.tar.gz",
    "platform": null,
    "description": "pygros\n======\n\na python library for finding genomic range overlaps based on `cgranges <https://github.com/lh3/cgranges>`_.\n\nInstallation\n------------\n\n``pygros`` is available on `PyPi <https://pypi.org>`_, to install it:\n\n.. code:: bash\n\n\tpip install pygros\n\nUsage\n-----\n\n.. code:: python\n\n\t>>> import pygros\n\t>>> ranges = pygros.Ranges()\n\t>>> ranges.add('chr1', 10, 20)\n\t>>> ranges.add('chr1', 30, 50)\n\t>>> ranges.add('chr1', 25, 40)\n\t>>> ranges.index()\n\t>>> ranges.overlap('chr1', 30, 40)\n\t[(25, 40, -1), (30, 50, -1)]\n\nAPI reference\n-------------\n\npygros.Ranges(intervals=[])\n\n\tcreate a Ranges object to store genomic ranges\n\n\t@param intervals: a list or tuple containing multiple ranges\n\n\t@return Ranges object\n\n\tadd(chrom, start, end, label=-1)\n\n\t\tadd genomic range into Ranges object\n\n\t\t@param chrom: chromosome name or sequence name\n\n\t\t@param start: start of range\n\n\t\t@param end: end of range\n\n\t\t@param label: an integer\n\n\tindex()\n\n\t\tAfter add new genomic ranges, use this method to build index\n\n\toverlap(chrom, start, end)\n\n\t\tget genomic ranges that overlapped with your given range (start, end)\n\n\t\t@param chrom: chromosome or sequence name\n\n\t\t@param start: start of range\n\n\t\t@param end: end of range\n\n\t\t@return: a list of ranges \n\n\twithin(chrom, start, end)\n\n\t\tget genomic ranges within given range (start, end)\n\n\t\t@param chrom: chromosome or sequence name\n\n\t\t@param start: start of range\n\n\t\t@param end: end of range\n\n\t\t@return: a list of ranges\n\n\tcontain(chrom, start, end)\n\n\t\tget genomic ranges that contained in given range (start, end)\n\n\t\t@param chrom: chromosome or sequence name\n\n\t\t@param start: start of range\n\n\t\t@param end: end of range\n\n\t\t@return: a list of ranges\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A python package for finding genomic range overlaps",
    "version": "0.1.4",
    "project_urls": {
        "Homepage": "https://github.com/lmdu/pygros"
    },
    "split_keywords": [
        "bioinformatics",
        "genome",
        "interval",
        "range",
        "overlap",
        "intersection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b963e687176072c9408a00783bc9408a681411d98372a6bf53346320f9a522ad",
                "md5": "93e09719f19d7dcf6e9e5327aaa5d370",
                "sha256": "3312819d336aedffad617fc4b307b1427a1a345d1171daeb23e3c18760494df3"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93e09719f19d7dcf6e9e5327aaa5d370",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11883,
            "upload_time": "2024-07-16T02:43:44",
            "upload_time_iso_8601": "2024-07-16T02:43:44.428486Z",
            "url": "https://files.pythonhosted.org/packages/b9/63/e687176072c9408a00783bc9408a681411d98372a6bf53346320f9a522ad/pygros-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "776791a1725b74c3fb0a784e5880797a23764b1fda93aabb1e090eca7389c631",
                "md5": "00af2b9132a6294974e4305d544015c6",
                "sha256": "d252552775d213bec207012d59ea8de157d9c680eb731599df65b8c5ab0bc8b1"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00af2b9132a6294974e4305d544015c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 36025,
            "upload_time": "2024-07-16T02:43:45",
            "upload_time_iso_8601": "2024-07-16T02:43:45.957077Z",
            "url": "https://files.pythonhosted.org/packages/77/67/91a1725b74c3fb0a784e5880797a23764b1fda93aabb1e090eca7389c631/pygros-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "558091f6000db94f05dd27d19611ff346ee0ad32c2b2c77de2c1196302fd6c01",
                "md5": "af820a8959d08edf75d3c8a14056b0c3",
                "sha256": "771927101310db2c4eda57ee802b9b883d46f037134b46015d744d8a927a89d5"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af820a8959d08edf75d3c8a14056b0c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 36713,
            "upload_time": "2024-07-16T02:43:46",
            "upload_time_iso_8601": "2024-07-16T02:43:46.997264Z",
            "url": "https://files.pythonhosted.org/packages/55/80/91f6000db94f05dd27d19611ff346ee0ad32c2b2c77de2c1196302fd6c01/pygros-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "170ee9316f3770963e830c24f4796128113a3793a80887054e1bc2bba8abb9e9",
                "md5": "7d07cf07b88bbf25af7b147717505873",
                "sha256": "be8678b2046d0cae931249aa59600661c5bbf75dc5a43ffd853a4ff00c424bcf"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7d07cf07b88bbf25af7b147717505873",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 12612,
            "upload_time": "2024-07-16T02:43:48",
            "upload_time_iso_8601": "2024-07-16T02:43:48.391016Z",
            "url": "https://files.pythonhosted.org/packages/17/0e/e9316f3770963e830c24f4796128113a3793a80887054e1bc2bba8abb9e9/pygros-0.1.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "118630ed9513d353c4c69be3c2fe6229163e37dad3c19303db12c79fc778776d",
                "md5": "d1b642db1e8e9cade0864f62508c0068",
                "sha256": "b597c3619a42a84fc6b1308adc23543bc4098a15e5580a69432eea93fa11473b"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1b642db1e8e9cade0864f62508c0068",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11884,
            "upload_time": "2024-07-16T02:43:49",
            "upload_time_iso_8601": "2024-07-16T02:43:49.570951Z",
            "url": "https://files.pythonhosted.org/packages/11/86/30ed9513d353c4c69be3c2fe6229163e37dad3c19303db12c79fc778776d/pygros-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61c8f93ce61e19f325553f58f43c7e7ef541dce75365977bf7659245d708806a",
                "md5": "397ff8a5ded6e968db31dd76871bb30e",
                "sha256": "9a0b770a52deb8029cb24c41c2c500e52204b8848ec03485f91b91cb2eeebcea"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "397ff8a5ded6e968db31dd76871bb30e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36067,
            "upload_time": "2024-07-16T02:43:50",
            "upload_time_iso_8601": "2024-07-16T02:43:50.926446Z",
            "url": "https://files.pythonhosted.org/packages/61/c8/f93ce61e19f325553f58f43c7e7ef541dce75365977bf7659245d708806a/pygros-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7db8361c0e1b269766d236d144396e03208b05a955a64c7093275e52ba36cc34",
                "md5": "3784ca0ffdbb06dded4b0cddbd7fabcb",
                "sha256": "5c9dcc182b126b8cb3d1028d373bf5c923d466bffa66ce5335d486351480d79e"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3784ca0ffdbb06dded4b0cddbd7fabcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36448,
            "upload_time": "2024-07-16T02:43:52",
            "upload_time_iso_8601": "2024-07-16T02:43:52.378702Z",
            "url": "https://files.pythonhosted.org/packages/7d/b8/361c0e1b269766d236d144396e03208b05a955a64c7093275e52ba36cc34/pygros-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e618d62cd52f84d507422803aac67e289a6980dd98e6d8754f71e7306f006d7",
                "md5": "5126ed124c22762dbe922f74981aa99b",
                "sha256": "2efb1c6dee4b601471f142232a540863d5f0bd5ead5e09257a1e13ff8f3e750e"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5126ed124c22762dbe922f74981aa99b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 12612,
            "upload_time": "2024-07-16T02:43:54",
            "upload_time_iso_8601": "2024-07-16T02:43:54.760953Z",
            "url": "https://files.pythonhosted.org/packages/0e/61/8d62cd52f84d507422803aac67e289a6980dd98e6d8754f71e7306f006d7/pygros-0.1.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da647f7b2c80e5acd06d9b13df9d3c581b8baa3b31ff243159615280b470e006",
                "md5": "fc68a7f464571656784e198e5b31f9bb",
                "sha256": "b1e15c7d4f2ecbb7eb749d2b63dd8737c63c8a88f856425b2f0f7b46e3d04297"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc68a7f464571656784e198e5b31f9bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11896,
            "upload_time": "2024-07-16T02:43:56",
            "upload_time_iso_8601": "2024-07-16T02:43:56.195868Z",
            "url": "https://files.pythonhosted.org/packages/da/64/7f7b2c80e5acd06d9b13df9d3c581b8baa3b31ff243159615280b470e006/pygros-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d5b144e584d7b9a3e56fa96fc3ba84a458d2043b1f1d1e9528f83d9253a18fd",
                "md5": "371c0faaa36106f17a30dc62ee796764",
                "sha256": "f77a5c514d6d7bc15c3eb0b546498ac66334d1b589fee41d556fa3b7dec0dd3e"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "371c0faaa36106f17a30dc62ee796764",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 36233,
            "upload_time": "2024-07-16T02:43:57",
            "upload_time_iso_8601": "2024-07-16T02:43:57.537084Z",
            "url": "https://files.pythonhosted.org/packages/4d/5b/144e584d7b9a3e56fa96fc3ba84a458d2043b1f1d1e9528f83d9253a18fd/pygros-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "883530bd56ba40db4817f29012109f2d45195c348f06b207fc7ca1d607550483",
                "md5": "d70936778d2322f0ca7d54d3c76ad229",
                "sha256": "fcf48c1f43c0cfd12a29664961ad2661db92e35f0fe284277c9b36e54c4064ea"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d70936778d2322f0ca7d54d3c76ad229",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 36857,
            "upload_time": "2024-07-16T02:43:58",
            "upload_time_iso_8601": "2024-07-16T02:43:58.502036Z",
            "url": "https://files.pythonhosted.org/packages/88/35/30bd56ba40db4817f29012109f2d45195c348f06b207fc7ca1d607550483/pygros-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b4d60d56aa719a2020ffb03b9127a15b6e5ddc1a0d881d57b95f12e9b975018",
                "md5": "d1274c0a018d68d62f3539dafbc60ad1",
                "sha256": "1063c54fca1ecb8860e615f8c2511eff6bc6d00c97e542daadaee4a86c6b8670"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d1274c0a018d68d62f3539dafbc60ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 12619,
            "upload_time": "2024-07-16T02:43:59",
            "upload_time_iso_8601": "2024-07-16T02:43:59.955411Z",
            "url": "https://files.pythonhosted.org/packages/2b/4d/60d56aa719a2020ffb03b9127a15b6e5ddc1a0d881d57b95f12e9b975018/pygros-0.1.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56ad1d9e43d4f0f2601a11fc0fe551fb50eff00fbad59c448d209cb25d986935",
                "md5": "28b92ff5554a84900aedf4725a37f429",
                "sha256": "a57a4abc1e29d6db6ec6352158548a79fd28e70344aa7a880ec29de99a594638"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28b92ff5554a84900aedf4725a37f429",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 11803,
            "upload_time": "2024-07-16T02:44:01",
            "upload_time_iso_8601": "2024-07-16T02:44:01.760002Z",
            "url": "https://files.pythonhosted.org/packages/56/ad/1d9e43d4f0f2601a11fc0fe551fb50eff00fbad59c448d209cb25d986935/pygros-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9c235e5d19ee41e66681e3800533208c489c35d19d887ea76885abb34eb00f0",
                "md5": "eec00fefad6b2e8d77cf5cfe06590974",
                "sha256": "b8613a97b8dc7deb4a91c54efa521b627b70162c6371de21fd9d6d8ad32579df"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eec00fefad6b2e8d77cf5cfe06590974",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 36081,
            "upload_time": "2024-07-16T02:44:03",
            "upload_time_iso_8601": "2024-07-16T02:44:03.099658Z",
            "url": "https://files.pythonhosted.org/packages/b9/c2/35e5d19ee41e66681e3800533208c489c35d19d887ea76885abb34eb00f0/pygros-0.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b458b11810a11d4ed75d6980e75d6b8abf1dfdf1fb4538cd55eefc5c71082586",
                "md5": "d5c9738f8d2c8f3873af4a657729af32",
                "sha256": "234c94a9c05db8e90bec30d396bc495ccc30736310539fba57f48e69f5f71349"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5c9738f8d2c8f3873af4a657729af32",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 36270,
            "upload_time": "2024-07-16T02:44:04",
            "upload_time_iso_8601": "2024-07-16T02:44:04.286977Z",
            "url": "https://files.pythonhosted.org/packages/b4/58/b11810a11d4ed75d6980e75d6b8abf1dfdf1fb4538cd55eefc5c71082586/pygros-0.1.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c76d99c29793d5bdfcef66a257867ea6149ee120fac37d162ee22b1ee60932b",
                "md5": "84d395362627dd1c75bebbd35109e770",
                "sha256": "f643d41325867fb1b3e2ad3af8ddf730a9f7aadd2c066394b980c42254ee9432"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84d395362627dd1c75bebbd35109e770",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 12614,
            "upload_time": "2024-07-16T02:44:05",
            "upload_time_iso_8601": "2024-07-16T02:44:05.233086Z",
            "url": "https://files.pythonhosted.org/packages/0c/76/d99c29793d5bdfcef66a257867ea6149ee120fac37d162ee22b1ee60932b/pygros-0.1.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1452665960e87258b975e33e49d08382338ca06fc546ad6e27bcfcc79c4cdf",
                "md5": "c498357e89ce1a68c689c5c98f8ccfb0",
                "sha256": "490493fe7fc58992af1b878e2154eb733aa99cdf65f9af6f39ef78bd7048a70d"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c498357e89ce1a68c689c5c98f8ccfb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11881,
            "upload_time": "2024-07-16T02:44:06",
            "upload_time_iso_8601": "2024-07-16T02:44:06.550796Z",
            "url": "https://files.pythonhosted.org/packages/2c/14/52665960e87258b975e33e49d08382338ca06fc546ad6e27bcfcc79c4cdf/pygros-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d04f430f29c8fe92f8576a8a41af8e90696097c256d2c7dac97ded253d129364",
                "md5": "607092d76092a432dd40eb877cfb6ad2",
                "sha256": "b7975bccd102207f3ba4e754ead181cd3ef02f21de919ca7ea5927710c065500"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "607092d76092a432dd40eb877cfb6ad2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 36598,
            "upload_time": "2024-07-16T02:44:07",
            "upload_time_iso_8601": "2024-07-16T02:44:07.733845Z",
            "url": "https://files.pythonhosted.org/packages/d0/4f/430f29c8fe92f8576a8a41af8e90696097c256d2c7dac97ded253d129364/pygros-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72220dc29d526cd48feea7b9667cf08ca61f550a832a604d29c750b58c442ffd",
                "md5": "d27777eb4132e421cd823e6560a03950",
                "sha256": "052b0755c0bb398e8ed87a25a3b3d01c66415b8981378f652040f3a9a18f5135"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d27777eb4132e421cd823e6560a03950",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 36652,
            "upload_time": "2024-07-16T02:44:09",
            "upload_time_iso_8601": "2024-07-16T02:44:09.148763Z",
            "url": "https://files.pythonhosted.org/packages/72/22/0dc29d526cd48feea7b9667cf08ca61f550a832a604d29c750b58c442ffd/pygros-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47134fb15da4acac7da363f81cb94bc2d7de1d4f071cf167528a0aa824eb76ac",
                "md5": "47d3f53a455e725fd9b7d749169ace9a",
                "sha256": "29a1945510244582f190946221a1016a374f128df817c956e100c774845277f8"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47d3f53a455e725fd9b7d749169ace9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 12609,
            "upload_time": "2024-07-16T02:44:10",
            "upload_time_iso_8601": "2024-07-16T02:44:10.295608Z",
            "url": "https://files.pythonhosted.org/packages/47/13/4fb15da4acac7da363f81cb94bc2d7de1d4f071cf167528a0aa824eb76ac/pygros-0.1.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7079081dd8d64154e96b4ea48f832e7ed002a2735a724411a325d1690d72d0fe",
                "md5": "25fdbc4534b32e2fb1322ec654cc9523",
                "sha256": "cea7f4829e1e79c66f35641c241237dc8cd1eb739ffcd5c3e7aabe0a1ba4d46c"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25fdbc4534b32e2fb1322ec654cc9523",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11881,
            "upload_time": "2024-07-16T02:44:11",
            "upload_time_iso_8601": "2024-07-16T02:44:11.304866Z",
            "url": "https://files.pythonhosted.org/packages/70/79/081dd8d64154e96b4ea48f832e7ed002a2735a724411a325d1690d72d0fe/pygros-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a13f7eee11d3e21c71c472ee35eed26afda3c1b1430241bbd8aefb9a6d284677",
                "md5": "adc29f446515078ea1548a4c0200ea94",
                "sha256": "df3c626b58fd76eae3172d59c4ee3a4b6e54a56fcff1d98a218e24f9b408a6af"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adc29f446515078ea1548a4c0200ea94",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35694,
            "upload_time": "2024-07-16T02:44:12",
            "upload_time_iso_8601": "2024-07-16T02:44:12.213100Z",
            "url": "https://files.pythonhosted.org/packages/a1/3f/7eee11d3e21c71c472ee35eed26afda3c1b1430241bbd8aefb9a6d284677/pygros-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07c69c70d3324807a77b32de9e4164dc21e74dcbfcfcb397f8ba719503165533",
                "md5": "f5847e4c3e03e895951374671373c6c2",
                "sha256": "f4f6d9a189395af2a46b2eef1ef8e16eced1ba4abd168c065216d076e4041f9a"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5847e4c3e03e895951374671373c6c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 36386,
            "upload_time": "2024-07-16T02:44:13",
            "upload_time_iso_8601": "2024-07-16T02:44:13.728205Z",
            "url": "https://files.pythonhosted.org/packages/07/c6/9c70d3324807a77b32de9e4164dc21e74dcbfcfcb397f8ba719503165533/pygros-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed06ff63fbc7968e777b3ddd4c88774704b8cf074f577e5af6fa9ff8f9c2c04f",
                "md5": "4b6fefbe6f32f5d29fee00e2a5d8aa75",
                "sha256": "da98c1967e1c0b4e8d610c68d44c94b6af3fe1957eeb367ae05d6c7ff19c6950"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b6fefbe6f32f5d29fee00e2a5d8aa75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 12613,
            "upload_time": "2024-07-16T02:44:14",
            "upload_time_iso_8601": "2024-07-16T02:44:14.815042Z",
            "url": "https://files.pythonhosted.org/packages/ed/06/ff63fbc7968e777b3ddd4c88774704b8cf074f577e5af6fa9ff8f9c2c04f/pygros-0.1.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca3ebf036afde1c5b17154a870f2e56929ce40cb589e12fc56585428bb878df",
                "md5": "228803aef041a7092cde5102d6cd702f",
                "sha256": "6729363dfdd1c0cd0f67f2b12a71773964b506ad7b5b90c06201807c7ff6d31c"
            },
            "downloads": -1,
            "filename": "pygros-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "228803aef041a7092cde5102d6cd702f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4907,
            "upload_time": "2024-07-16T02:44:15",
            "upload_time_iso_8601": "2024-07-16T02:44:15.696487Z",
            "url": "https://files.pythonhosted.org/packages/fc/a3/ebf036afde1c5b17154a870f2e56929ce40cb589e12fc56585428bb878df/pygros-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-16 02:44:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lmdu",
    "github_project": "pygros",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pygros"
}
        
Elapsed time: 2.07168s