pygros


Namepygros JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/lmdu/pygros
SummaryA python package for finding genomic range overlaps
upload_time2023-09-21 13:54:55
maintainer
docs_urlNone
authorLianming Du
requires_python
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": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "bioinformatics genome interval range overlap intersection",
    "author": "Lianming Du",
    "author_email": "adullb@qq.com",
    "download_url": "https://files.pythonhosted.org/packages/28/9c/b576a75e904ce72ee64858aea68d7ddc122721d4e69bcec53be5e09bbe6f/pygros-0.1.2.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.2",
    "project_urls": {
        "Homepage": "https://github.com/lmdu/pygros"
    },
    "split_keywords": [
        "bioinformatics",
        "genome",
        "interval",
        "range",
        "overlap",
        "intersection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73ca999fa12e331b956627da3a6600b90c9c3ffe299c8122e02ca8960fdeab88",
                "md5": "fd90a9049feb9ebe610a558a0f40fa6d",
                "sha256": "b0204406da8f137b8f5f765f28e584f488b2314f7e2695c4c2cf8548eb775272"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd90a9049feb9ebe610a558a0f40fa6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11929,
            "upload_time": "2023-09-21T13:54:18",
            "upload_time_iso_8601": "2023-09-21T13:54:18.983723Z",
            "url": "https://files.pythonhosted.org/packages/73/ca/999fa12e331b956627da3a6600b90c9c3ffe299c8122e02ca8960fdeab88/pygros-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0c92edc7fd323196bde7c1f0518ae3bc877830203ba6b28d0743519629505fb",
                "md5": "d35f4735cded4bb259eceff45c3d96c2",
                "sha256": "8f8341eab42d260c96f987cad2083ee3daf91a488f21b2065d320b8b960f9e6c"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d35f4735cded4bb259eceff45c3d96c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 36011,
            "upload_time": "2023-09-21T13:54:20",
            "upload_time_iso_8601": "2023-09-21T13:54:20.963902Z",
            "url": "https://files.pythonhosted.org/packages/a0/c9/2edc7fd323196bde7c1f0518ae3bc877830203ba6b28d0743519629505fb/pygros-0.1.2-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": "838db88c252d24a7e04043ff70db7c796d2cb16b91573c6acdc31830f3520c83",
                "md5": "1dcef2618f4e3e1a59ed97ecdfd6bbc5",
                "sha256": "8da9ff9fca1b70f6981bdc1333a7a91b8d82d71760ddbf40d53a1923fdce1264"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1dcef2618f4e3e1a59ed97ecdfd6bbc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 42335,
            "upload_time": "2023-09-21T13:54:22",
            "upload_time_iso_8601": "2023-09-21T13:54:22.753026Z",
            "url": "https://files.pythonhosted.org/packages/83/8d/b88c252d24a7e04043ff70db7c796d2cb16b91573c6acdc31830f3520c83/pygros-0.1.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0baa35270ecafe69998bc4cabcb357e665b9ccad58beb06cad01c3eabbea73c",
                "md5": "41349483469cb29ee4b6b4d07ab13b89",
                "sha256": "8be84d38c9ec08215078629fa75ca74c510ca29abaf501c15e44a05a9f6e777a"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41349483469cb29ee4b6b4d07ab13b89",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 12559,
            "upload_time": "2023-09-21T13:54:24",
            "upload_time_iso_8601": "2023-09-21T13:54:24.390698Z",
            "url": "https://files.pythonhosted.org/packages/d0/ba/a35270ecafe69998bc4cabcb357e665b9ccad58beb06cad01c3eabbea73c/pygros-0.1.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7de37469a78547e122b9c21f5c5a9e90519a637584d3461ab4c01b2e92f76822",
                "md5": "114487740ba6c52332dd161681759553",
                "sha256": "41237a70fb3e4fc0ee2fc524c4fe7cf14d40fbf5beee0c4759846bccb02fa803"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "114487740ba6c52332dd161681759553",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11928,
            "upload_time": "2023-09-21T13:54:25",
            "upload_time_iso_8601": "2023-09-21T13:54:25.979640Z",
            "url": "https://files.pythonhosted.org/packages/7d/e3/7469a78547e122b9c21f5c5a9e90519a637584d3461ab4c01b2e92f76822/pygros-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67ce0b6c79ac4c4ae06a3fabdc3cee2ee07aa16adea1adf1072c200492abb6ef",
                "md5": "15cf050706b487f0b193c657d2a5552c",
                "sha256": "aa99e0e90fd97d1c40564b4e6d56c83eaee25b586442aa14ba123ce79b9ae962"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15cf050706b487f0b193c657d2a5552c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36063,
            "upload_time": "2023-09-21T13:54:27",
            "upload_time_iso_8601": "2023-09-21T13:54:27.593512Z",
            "url": "https://files.pythonhosted.org/packages/67/ce/0b6c79ac4c4ae06a3fabdc3cee2ee07aa16adea1adf1072c200492abb6ef/pygros-0.1.2-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": "c7dd25836936da6f7fd2713c7422eb9e66036bf06bab728f8b4374c9a9a77f4a",
                "md5": "f4ff7873245724d56ece688e54d28a9b",
                "sha256": "43b3b8e65da101ccb0ab274a85cb32da2c7cbf8a7b9709cae892dbb948fedb78"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4ff7873245724d56ece688e54d28a9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 42815,
            "upload_time": "2023-09-21T13:54:29",
            "upload_time_iso_8601": "2023-09-21T13:54:29.267462Z",
            "url": "https://files.pythonhosted.org/packages/c7/dd/25836936da6f7fd2713c7422eb9e66036bf06bab728f8b4374c9a9a77f4a/pygros-0.1.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00a180e0b9dfd135e7ca29dd469a983499683ce7b0c00912db0792c05ecfb8e3",
                "md5": "13cdb57deba4f94abdc840c5bb5f1504",
                "sha256": "a836b44fcacf4535e47fbe4f026bd21b3e520c4f13907da3e95c24d076c4fba5"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13cdb57deba4f94abdc840c5bb5f1504",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 12557,
            "upload_time": "2023-09-21T13:54:31",
            "upload_time_iso_8601": "2023-09-21T13:54:31.005542Z",
            "url": "https://files.pythonhosted.org/packages/00/a1/80e0b9dfd135e7ca29dd469a983499683ce7b0c00912db0792c05ecfb8e3/pygros-0.1.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1b7689655260dee0795a9d309f275a8e45024cec16f5c331bb5ce6438096b55",
                "md5": "b8664de1f06fa34738d1b7011a23d2cc",
                "sha256": "c7a0b1ed2d5d96e0985a4f920f1b0a21308153885af99e7b3410ed529ce92b21"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8664de1f06fa34738d1b7011a23d2cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11942,
            "upload_time": "2023-09-21T13:54:32",
            "upload_time_iso_8601": "2023-09-21T13:54:32.516600Z",
            "url": "https://files.pythonhosted.org/packages/f1/b7/689655260dee0795a9d309f275a8e45024cec16f5c331bb5ce6438096b55/pygros-0.1.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "082edbf5dda41a7be887d33dc9d64700d2570d82cd24d7a92d40e30268130f81",
                "md5": "d61cbda5d72252977044783cd480d96e",
                "sha256": "af69b2a6b08db52de2fb418adc45ee005ea1e1d80b55d3815831c9ad65907dd0"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d61cbda5d72252977044783cd480d96e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 36230,
            "upload_time": "2023-09-21T13:54:34",
            "upload_time_iso_8601": "2023-09-21T13:54:34.128925Z",
            "url": "https://files.pythonhosted.org/packages/08/2e/dbf5dda41a7be887d33dc9d64700d2570d82cd24d7a92d40e30268130f81/pygros-0.1.2-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": "f1a1ecbb1a9ef61bce5158749d47deda11d1292ec348f2e06e3af039258c11cd",
                "md5": "6bccffffbfd7fa88ce038d275c7bba23",
                "sha256": "4a6768dc38b172c98b4fc6a039e0b59ca6fb0f0106f632c98a395699bcb086ae"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bccffffbfd7fa88ce038d275c7bba23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 42809,
            "upload_time": "2023-09-21T13:54:35",
            "upload_time_iso_8601": "2023-09-21T13:54:35.402787Z",
            "url": "https://files.pythonhosted.org/packages/f1/a1/ecbb1a9ef61bce5158749d47deda11d1292ec348f2e06e3af039258c11cd/pygros-0.1.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce7baa41dec296030661aaf25fa0088fff874c10c15ff23e2a6768214abf4f74",
                "md5": "e26a00520d2efcf070da71aca48bd8bc",
                "sha256": "28eb036f839a4b5076d644a50aa965308311fc2396514c467b723630962fc9e5"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e26a00520d2efcf070da71aca48bd8bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 12576,
            "upload_time": "2023-09-21T13:54:36",
            "upload_time_iso_8601": "2023-09-21T13:54:36.659879Z",
            "url": "https://files.pythonhosted.org/packages/ce/7b/aa41dec296030661aaf25fa0088fff874c10c15ff23e2a6768214abf4f74/pygros-0.1.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "381bab2aec1095b1ac240e0efd3deed0a646c886b84325c04dca35e07c6b67b1",
                "md5": "601865586b2a3e2ddfb8b85fad9986e4",
                "sha256": "ef5f84e7ec0b69a53f1243e3d18f3b1648e40e7e429a9bfa5e3a1a07711c5b04"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "601865586b2a3e2ddfb8b85fad9986e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 11838,
            "upload_time": "2023-09-21T13:54:37",
            "upload_time_iso_8601": "2023-09-21T13:54:37.899552Z",
            "url": "https://files.pythonhosted.org/packages/38/1b/ab2aec1095b1ac240e0efd3deed0a646c886b84325c04dca35e07c6b67b1/pygros-0.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "625de9beacb8010e7dae9860964954717e6cc7ca03cc03f857cb72f6d5a1d759",
                "md5": "80d7b6d5d7e384629e6d8aac5580d255",
                "sha256": "336efbc380ea4e18a44f430c169c168d4bc179ea898bbccf0c90a07a168e978a"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80d7b6d5d7e384629e6d8aac5580d255",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 36080,
            "upload_time": "2023-09-21T13:54:39",
            "upload_time_iso_8601": "2023-09-21T13:54:39.601036Z",
            "url": "https://files.pythonhosted.org/packages/62/5d/e9beacb8010e7dae9860964954717e6cc7ca03cc03f857cb72f6d5a1d759/pygros-0.1.2-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": "a6cd6f642d564d07d0edf23b708e9d294bffb9497e808bffcce4d6d538c2ecae",
                "md5": "ad599de4e528dff09bf1948239965a9b",
                "sha256": "8a00c2e6aa92ff342fee4feae162e0219b2cfd0feb0549a2a93c948a9050cfed"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad599de4e528dff09bf1948239965a9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 43750,
            "upload_time": "2023-09-21T13:54:40",
            "upload_time_iso_8601": "2023-09-21T13:54:40.877346Z",
            "url": "https://files.pythonhosted.org/packages/a6/cd/6f642d564d07d0edf23b708e9d294bffb9497e808bffcce4d6d538c2ecae/pygros-0.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f929ed9d386c92c4a4bbb68bdd8d81432a188d764279eb42eb9e11286041cdb",
                "md5": "0cb2daaf269452bcc076636fbd127e1c",
                "sha256": "11b3cb0a2cfe8bfe85e3502464ca9aeb09d7cff6ae856f6930efb9b90922737a"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0cb2daaf269452bcc076636fbd127e1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 12571,
            "upload_time": "2023-09-21T13:54:41",
            "upload_time_iso_8601": "2023-09-21T13:54:41.995465Z",
            "url": "https://files.pythonhosted.org/packages/0f/92/9ed9d386c92c4a4bbb68bdd8d81432a188d764279eb42eb9e11286041cdb/pygros-0.1.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9286bf9555bb36ee7b4d5f3660c1356d1d7e0764f4113c236b3a3b6c3c442b3c",
                "md5": "24227ecbf6683f532f101a8bef7573ea",
                "sha256": "3c3cbdce0dfbb19366edc0e003aa7485fc03d52ef46b2ae6249bfaddffb2aabf"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24227ecbf6683f532f101a8bef7573ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 11932,
            "upload_time": "2023-09-21T13:54:43",
            "upload_time_iso_8601": "2023-09-21T13:54:43.543476Z",
            "url": "https://files.pythonhosted.org/packages/92/86/bf9555bb36ee7b4d5f3660c1356d1d7e0764f4113c236b3a3b6c3c442b3c/pygros-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2152adf26501789b4674767c97c80c3ef9e4f1fc7bc6cee90758d058427a791f",
                "md5": "7881663c8ac65f5ae6e1d56d8ebae3e0",
                "sha256": "a8d40cbbfd8d1cf8616a7235f4eb435bcd086c41c8e5d0e60a43d119c12266f0"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7881663c8ac65f5ae6e1d56d8ebae3e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 36593,
            "upload_time": "2023-09-21T13:54:44",
            "upload_time_iso_8601": "2023-09-21T13:54:44.788486Z",
            "url": "https://files.pythonhosted.org/packages/21/52/adf26501789b4674767c97c80c3ef9e4f1fc7bc6cee90758d058427a791f/pygros-0.1.2-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": "3a426d2cc116b1cf255748b1f1e17261728b02fbc3ccd3564aa6866c72fb3c66",
                "md5": "6a8d72d6a8717ab5e893f292599f5b91",
                "sha256": "71e3c8be105633cbdaa2b85dd1b1e9740be6153492b78328117051d5fa1cba6a"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a8d72d6a8717ab5e893f292599f5b91",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 42430,
            "upload_time": "2023-09-21T13:54:46",
            "upload_time_iso_8601": "2023-09-21T13:54:46.458617Z",
            "url": "https://files.pythonhosted.org/packages/3a/42/6d2cc116b1cf255748b1f1e17261728b02fbc3ccd3564aa6866c72fb3c66/pygros-0.1.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "511f668b28bf19aaf01adb2310188ff0586c4a04954658021940df6009d81b8c",
                "md5": "7350f9f1fe7c895cb4eb0ce0673c3334",
                "sha256": "facfb9eb6f8601bc91e37446febfd7ae665c7e16947e168b10cb1d9b95ab6a85"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7350f9f1fe7c895cb4eb0ce0673c3334",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 12559,
            "upload_time": "2023-09-21T13:54:48",
            "upload_time_iso_8601": "2023-09-21T13:54:48.129056Z",
            "url": "https://files.pythonhosted.org/packages/51/1f/668b28bf19aaf01adb2310188ff0586c4a04954658021940df6009d81b8c/pygros-0.1.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f31090c1e410c4b6cefbbfcdc4542a83e12c9ca9109d0181d9ba3f2042d68f93",
                "md5": "7960a3c87cdd99e68b7f14d93429a9b1",
                "sha256": "85f5df4e2997ad5c5ef33a07a20b8b590da82097c6d0ecd43226d6c6c55172ef"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7960a3c87cdd99e68b7f14d93429a9b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11928,
            "upload_time": "2023-09-21T13:54:49",
            "upload_time_iso_8601": "2023-09-21T13:54:49.236547Z",
            "url": "https://files.pythonhosted.org/packages/f3/10/90c1e410c4b6cefbbfcdc4542a83e12c9ca9109d0181d9ba3f2042d68f93/pygros-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55b50f287ff2931a2236afeb7583ad642789ec87a37e0956c5b029fe4b9b6e31",
                "md5": "2569b5d14ba92377610b0385ab02092f",
                "sha256": "a49778b7fec4434f3d279df7ceff6dbd0b948e455079dd8399de880e0efc1cf8"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2569b5d14ba92377610b0385ab02092f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35684,
            "upload_time": "2023-09-21T13:54:50",
            "upload_time_iso_8601": "2023-09-21T13:54:50.881507Z",
            "url": "https://files.pythonhosted.org/packages/55/b5/0f287ff2931a2236afeb7583ad642789ec87a37e0956c5b029fe4b9b6e31/pygros-0.1.2-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": "e5b7bd60b38ce05512ea15210ab101a07e7d9d2b3643af45c5009eadf3425121",
                "md5": "56b54f41617976f6b9991d8c3588abdb",
                "sha256": "5cedc9eff21d1513f5b9cf7123ec29adaa369c4175db31b9bae49bc5cdde9457"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56b54f41617976f6b9991d8c3588abdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41979,
            "upload_time": "2023-09-21T13:54:52",
            "upload_time_iso_8601": "2023-09-21T13:54:52.314427Z",
            "url": "https://files.pythonhosted.org/packages/e5/b7/bd60b38ce05512ea15210ab101a07e7d9d2b3643af45c5009eadf3425121/pygros-0.1.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bee287a5dd926d182e0e4aafa5981c639c9d1b7c8f0e45de0f8b557f4a02ac9",
                "md5": "8b292836936bccd1773236199b8cb82c",
                "sha256": "f6c7e0c816258d25c5ce03096e6f842a06b3fd465cfc9f08ec1ffca07d95ec40"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b292836936bccd1773236199b8cb82c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 12561,
            "upload_time": "2023-09-21T13:54:54",
            "upload_time_iso_8601": "2023-09-21T13:54:54.103394Z",
            "url": "https://files.pythonhosted.org/packages/5b/ee/287a5dd926d182e0e4aafa5981c639c9d1b7c8f0e45de0f8b557f4a02ac9/pygros-0.1.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "289cb576a75e904ce72ee64858aea68d7ddc122721d4e69bcec53be5e09bbe6f",
                "md5": "9d46a6ddd8f3c1032e501c0f9739e49f",
                "sha256": "f627167c4bc5cfe09230dc3ad0c820f17d2814428b068c000c9025562c887f70"
            },
            "downloads": -1,
            "filename": "pygros-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "9d46a6ddd8f3c1032e501c0f9739e49f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4904,
            "upload_time": "2023-09-21T13:54:55",
            "upload_time_iso_8601": "2023-09-21T13:54:55.364421Z",
            "url": "https://files.pythonhosted.org/packages/28/9c/b576a75e904ce72ee64858aea68d7ddc122721d4e69bcec53be5e09bbe6f/pygros-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-21 13:54:55",
    "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: 0.11236s