pycombo


Namepycombo JSON
Version 0.1.8 PyPI version JSON
download
home_pagehttps://github.com/Casyfill/pyCombo
SummaryPython wrapper around Combo network partitioning algorithm (C++)
upload_time2024-09-24 21:42:39
maintainerNone
docs_urlNone
authorPhilipp
requires_python<4.0,>=3.8
licenseMIT
keywords networks graph theory mathematics network graph discrete mathematics math
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # pyCOMBO
![CI](https://github.com/Casyfill/pyCombo/workflows/CI/badge.svg)

pyCombo is a python wrapper around [C++ implementation](https://github.com/Alexander-Belyi/Combo) of the [network] community detection algorithm called "Combo".

Details of the algorithm are described in the paper "General optimization technique for high-quality community detection":

```
Sobolevsky, S., Campari, R., Belyi, A. and Ratti, C., 2014. General optimization technique for high-quality community detection in complex networks. Physical Review E, 90(1), p.012811.
```

## Installation
You can install the latest release of pycombo directly from PyPI by executing this:
```bash
python -m pip install pycombo
```
If you use Python 3.7, install pyCombo 0.1.07:
```bash
python -m pip install pycombo==0.1.07
```

## Quick Start
The basic usage is as follows:
```python
import pycombo
import networkx as nx

partition = pycombo.execute(nx.karate_club_graph())
```
Package supports [NetworkX](https://networkx.org/) graphs, Pajek `.net` files, and adjacency matrices passed as numpy array or list.
Combo algorithm uses modularity score as a loss function, but you can use your own metrics as edge weights with `treat_as_modularity=True` parameter.

#### Parameters

* **graph** : `nx.Graph` object, or string treated as path to Pajek `.net` file.
* **weight** : `Optional[str]`, defaults to `weight`. Graph edges property to use as weights. If `None`, graph assumed to be unweighted.
           Ignored if graph is passed as string (path to the file), or such property does not exist.
* **max_communities** : `Optional[int]`, defaults to `None`. Maximum number of communities. If <= 0 or None, assume to be infinite.
* **modularity_resolution** : `float`, defaults to 1.0. Modularity resolution parameter.
* **num_split_attempts** : `int`, defaults to 0. Number of split attempts. If 0, autoadjust this number automatically.
* **fixed_split_step_** `int`, defaults to 0. Step number to apply predefined split. If 0, use only random splits. if >0, sets up the usage of 6 fixed type splits on every fixed_split_step.
* **start_separate** : bool, default False. Indicates if Combo should start from assigning each node into its own separate community. This could help to achieve higher modularity, but it makes execution much slower.
* **treat_as_modularity** : bool, default False. Indicates if edge weights should be treated as modularity scores. If True, the algorithm solves clique partitioning problem over the given graph, treated as modularity graph (matrix). For example, this allows users to provide their own custom 'modularity' matrix. `modularity_resolution` is ignored in this case.
* **verbose** : int, defaults to 0. Indicates how much progress information Combo should print out. For now Combo has only one level starting at verbose >= 1.
* **intermediate_results_path** : Optional str, defaults to None. Path to the file where community assignments will be saved on each iteration. If None or empty, intermediate results will not be saved.
* **return_modularity** : bool, defaults to `True`. Indicates if function should return achieved modularity score.
* **random_seed** : int, defaults to None. Random seed to use. None indicates using some internal default value that is based on time and is expected to be different for each call.

#### Returns

* partition : `Dict{int : int}`, community labels for each node.
* modularity : `float`. Achieved modularity value. Only returned if `return_modularity=True`.

More examples can be found in [example](https://github.com/Casyfill/pyCombo/tree/master/example) folder.

## Development

This repo uses https://github.com/Alexander-Belyi/Combo as a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules).
So for local development, clone with `--recurse-submodules` flag, as:
```bash
git clone --recurse-submodules https://github.com/Casyfill/pyCombo
```
Or, if you've already cloned it without `--recurse-submodules`, run:
```bash
git submodule update --init --recursive
```

Package is built and managed via `poetry`.
- To use specific python version run `poetry env use 3.12`.
- To install dev version, run `poetry install`.
- To build distributions run `poetry build`.
- To run tests execute `poetry run pytest`.

# Information
- [project web_site](http://senseable.mit.edu/community_detection/)
- [paper](http://journals.aps.org/pre/abstract/10.1103/PhysRevE.90.012811)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Casyfill/pyCombo",
    "name": "pycombo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "Networks, Graph Theory, Mathematics, network, graph, discrete mathematics, math",
    "author": "Philipp",
    "author_email": "casyfill@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/fa/d4/a73fa743e3b7457d41e276e53afcf2537a07c5ef1e1bfcd0bada477b6122/pycombo-0.1.8.tar.gz",
    "platform": null,
    "description": "# pyCOMBO\n![CI](https://github.com/Casyfill/pyCombo/workflows/CI/badge.svg)\n\npyCombo is a python wrapper around [C++ implementation](https://github.com/Alexander-Belyi/Combo) of the [network] community detection algorithm called \"Combo\".\n\nDetails of the algorithm are described in the paper \"General optimization technique for high-quality community detection\":\n\n```\nSobolevsky, S., Campari, R., Belyi, A. and Ratti, C., 2014. General optimization technique for high-quality community detection in complex networks. Physical Review E, 90(1), p.012811.\n```\n\n## Installation\nYou can install the latest release of pycombo directly from PyPI by executing this:\n```bash\npython -m pip install pycombo\n```\nIf you use Python 3.7, install pyCombo 0.1.07:\n```bash\npython -m pip install pycombo==0.1.07\n```\n\n## Quick Start\nThe basic usage is as follows:\n```python\nimport pycombo\nimport networkx as nx\n\npartition = pycombo.execute(nx.karate_club_graph())\n```\nPackage supports [NetworkX](https://networkx.org/) graphs, Pajek `.net` files, and adjacency matrices passed as numpy array or list.\nCombo algorithm uses modularity score as a loss function, but you can use your own metrics as edge weights with `treat_as_modularity=True` parameter.\n\n#### Parameters\n\n* **graph** : `nx.Graph` object, or string treated as path to Pajek `.net` file.\n* **weight** : `Optional[str]`, defaults to `weight`. Graph edges property to use as weights. If `None`, graph assumed to be unweighted.\n           Ignored if graph is passed as string (path to the file), or such property does not exist.\n* **max_communities** : `Optional[int]`, defaults to `None`. Maximum number of communities. If <= 0 or None, assume to be infinite.\n* **modularity_resolution** : `float`, defaults to 1.0. Modularity resolution parameter.\n* **num_split_attempts** : `int`, defaults to 0. Number of split attempts. If 0, autoadjust this number automatically.\n* **fixed_split_step_** `int`, defaults to 0. Step number to apply predefined split. If 0, use only random splits. if >0, sets up the usage of 6 fixed type splits on every fixed_split_step.\n* **start_separate** : bool, default False. Indicates if Combo should start from assigning each node into its own separate community. This could help to achieve higher modularity, but it makes execution much slower.\n* **treat_as_modularity** : bool, default False. Indicates if edge weights should be treated as modularity scores. If True, the algorithm solves clique partitioning problem over the given graph, treated as modularity graph (matrix). For example, this allows users to provide their own custom 'modularity' matrix. `modularity_resolution` is ignored in this case.\n* **verbose** : int, defaults to 0. Indicates how much progress information Combo should print out. For now Combo has only one level starting at verbose >= 1.\n* **intermediate_results_path** : Optional str, defaults to None. Path to the file where community assignments will be saved on each iteration. If None or empty, intermediate results will not be saved.\n* **return_modularity** : bool, defaults to `True`. Indicates if function should return achieved modularity score.\n* **random_seed** : int, defaults to None. Random seed to use. None indicates using some internal default value that is based on time and is expected to be different for each call.\n\n#### Returns\n\n* partition : `Dict{int : int}`, community labels for each node.\n* modularity : `float`. Achieved modularity value. Only returned if `return_modularity=True`.\n\nMore examples can be found in [example](https://github.com/Casyfill/pyCombo/tree/master/example) folder.\n\n## Development\n\nThis repo uses https://github.com/Alexander-Belyi/Combo as a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules).\nSo for local development, clone with `--recurse-submodules` flag, as:\n```bash\ngit clone --recurse-submodules https://github.com/Casyfill/pyCombo\n```\nOr, if you've already cloned it without `--recurse-submodules`, run:\n```bash\ngit submodule update --init --recursive\n```\n\nPackage is built and managed via `poetry`.\n- To use specific python version run `poetry env use 3.12`.\n- To install dev version, run `poetry install`.\n- To build distributions run `poetry build`.\n- To run tests execute `poetry run pytest`.\n\n# Information\n- [project web_site](http://senseable.mit.edu/community_detection/)\n- [paper](http://journals.aps.org/pre/abstract/10.1103/PhysRevE.90.012811)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python wrapper around Combo network partitioning algorithm (C++)",
    "version": "0.1.8",
    "project_urls": {
        "Bug Tracker": "https://github.com/Casyfill/pyCombo/issues",
        "Homepage": "https://github.com/Casyfill/pyCombo",
        "Source Code": "https://github.com/Casyfill/pyCombo"
    },
    "split_keywords": [
        "networks",
        " graph theory",
        " mathematics",
        " network",
        " graph",
        " discrete mathematics",
        " math"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92cb29ddc57ec97482378d49e492656169b3dd2ed5bb49b462b052f46d7dc596",
                "md5": "6cbe79a3b80fec6b14013c30cd65abe5",
                "sha256": "f6461badc3b58319ffd47fbe82cf14bd4822548b3db342651002f3037a3b1d36"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6cbe79a3b80fec6b14013c30cd65abe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 206988,
            "upload_time": "2024-09-24T21:42:20",
            "upload_time_iso_8601": "2024-09-24T21:42:20.281986Z",
            "url": "https://files.pythonhosted.org/packages/92/cb/29ddc57ec97482378d49e492656169b3dd2ed5bb49b462b052f46d7dc596/pycombo-0.1.8-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f27f5655a9581cc3f4780fd70cc2cf143586ada5b442a3f2c76552e974c774e",
                "md5": "8f9adccf856759fc1f1198149ec7dbdd",
                "sha256": "526a5e54c8965a4d9ae911e67b4cb00d3ae64ff3ce2fa2120286e63c30d93094"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f9adccf856759fc1f1198149ec7dbdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 120446,
            "upload_time": "2024-09-24T21:42:21",
            "upload_time_iso_8601": "2024-09-24T21:42:21.767995Z",
            "url": "https://files.pythonhosted.org/packages/8f/27/f5655a9581cc3f4780fd70cc2cf143586ada5b442a3f2c76552e974c774e/pycombo-0.1.8-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5736891af251312219fa967070207269f6ab7926126e2ed8aad4e367b7d97261",
                "md5": "9e33491f3c5eec148d99414ba78f140a",
                "sha256": "eb92f4a9f2ceeacd253a906ec9a7628e34dd8f7620c103b42167108f91fd012a"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9e33491f3c5eec148d99414ba78f140a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 103242,
            "upload_time": "2024-09-24T21:42:23",
            "upload_time_iso_8601": "2024-09-24T21:42:23.338226Z",
            "url": "https://files.pythonhosted.org/packages/57/36/891af251312219fa967070207269f6ab7926126e2ed8aad4e367b7d97261/pycombo-0.1.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7427edd4861350a4a7a17249a779bd314d4582923a0666d2453d6c3677d64136",
                "md5": "15a055c55596b85a9060ddf3716261b5",
                "sha256": "612203eaf02c847d6670f25a83b1d61ffb0c386b70b4eda9336daf513cf3b778"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "15a055c55596b85a9060ddf3716261b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 209854,
            "upload_time": "2024-09-24T21:42:24",
            "upload_time_iso_8601": "2024-09-24T21:42:24.197436Z",
            "url": "https://files.pythonhosted.org/packages/74/27/edd4861350a4a7a17249a779bd314d4582923a0666d2453d6c3677d64136/pycombo-0.1.8-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5562707ee8bf85c07ff880a3d8389845d90f930cd4574a44050011f86032fe28",
                "md5": "40b721f0350d777c1ce5da4849c6c96a",
                "sha256": "04e70caa2325995f454b820f8f5a5d54843c70ab7d558fdc04556434fff68e99"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40b721f0350d777c1ce5da4849c6c96a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 122036,
            "upload_time": "2024-09-24T21:42:25",
            "upload_time_iso_8601": "2024-09-24T21:42:25.604251Z",
            "url": "https://files.pythonhosted.org/packages/55/62/707ee8bf85c07ff880a3d8389845d90f930cd4574a44050011f86032fe28/pycombo-0.1.8-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "952d70f2429c0da1cb41ed088bac99149c443e6f82e0cfbdf1aa9c97afb5cf3a",
                "md5": "53ab5e50e865ecc7f1f55cf862e7a4f8",
                "sha256": "6a184134c753aa5cec101f1e86de6c00fcd093f08be63a5d7819963a9976cc09"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53ab5e50e865ecc7f1f55cf862e7a4f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 104377,
            "upload_time": "2024-09-24T21:42:27",
            "upload_time_iso_8601": "2024-09-24T21:42:27.011856Z",
            "url": "https://files.pythonhosted.org/packages/95/2d/70f2429c0da1cb41ed088bac99149c443e6f82e0cfbdf1aa9c97afb5cf3a/pycombo-0.1.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c8a467c473b7ffab3baf4b51070317d4fba426fe4fe4769f4669f76584655f4",
                "md5": "66e5d1b782e3c550ce21c2aff9653dd6",
                "sha256": "60437acff618f99c8134d90f5a60ef571c67e9de9a8a4b99bce5310311b868d6"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66e5d1b782e3c550ce21c2aff9653dd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 207926,
            "upload_time": "2024-09-24T21:42:28",
            "upload_time_iso_8601": "2024-09-24T21:42:28.669651Z",
            "url": "https://files.pythonhosted.org/packages/1c/8a/467c473b7ffab3baf4b51070317d4fba426fe4fe4769f4669f76584655f4/pycombo-0.1.8-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "984253bd7e016195fcb64322b078a9ad12614a7e9f316f1c7c6ed0214dfb2050",
                "md5": "0815e860333ef1bfc34bcb1351279aec",
                "sha256": "1911d54f6fc2f18263e2b563a1f8140415048d14525d0e700a5551939746ec43"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp312-cp312-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0815e860333ef1bfc34bcb1351279aec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 121307,
            "upload_time": "2024-09-24T21:42:29",
            "upload_time_iso_8601": "2024-09-24T21:42:29.852339Z",
            "url": "https://files.pythonhosted.org/packages/98/42/53bd7e016195fcb64322b078a9ad12614a7e9f316f1c7c6ed0214dfb2050/pycombo-0.1.8-cp312-cp312-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083f5dab6a9954e9441b0aabfdad8013c7100ce4badf1d871bde505e6080a197",
                "md5": "9646813e03c0821f22fa34c434edcb4e",
                "sha256": "5e097aaa8805033345ec672aebd998e310e498731d6d3ebaec658aae168c1b22"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9646813e03c0821f22fa34c434edcb4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 104784,
            "upload_time": "2024-09-24T21:42:30",
            "upload_time_iso_8601": "2024-09-24T21:42:30.807582Z",
            "url": "https://files.pythonhosted.org/packages/08/3f/5dab6a9954e9441b0aabfdad8013c7100ce4badf1d871bde505e6080a197/pycombo-0.1.8-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6f1f79eb858d42f870d045caf1c6879f555265a7cc37a94b838f2fc96e8f34a",
                "md5": "99275de22024bae51279c451ae0c2c3f",
                "sha256": "5f171beddf37c9f0f2be736ce51008293bf6f1d08e7ca57fab7be0c1edde3bd5"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp38-cp38-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99275de22024bae51279c451ae0c2c3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 206745,
            "upload_time": "2024-09-24T21:42:32",
            "upload_time_iso_8601": "2024-09-24T21:42:32.363564Z",
            "url": "https://files.pythonhosted.org/packages/b6/f1/f79eb858d42f870d045caf1c6879f555265a7cc37a94b838f2fc96e8f34a/pycombo-0.1.8-cp38-cp38-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f07bcbc4dbb90a8bf6f5d5f42e584e2b26bc3c6962b22c1dd664d060d3fb7025",
                "md5": "8aa9df13dcac02ec431bf4ba763e918a",
                "sha256": "dc7bf80d9a120d86b55e8b506f475c3b386c0ee406f4df11efd9ca14b43ec8b1"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp38-cp38-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8aa9df13dcac02ec431bf4ba763e918a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 120258,
            "upload_time": "2024-09-24T21:42:33",
            "upload_time_iso_8601": "2024-09-24T21:42:33.371752Z",
            "url": "https://files.pythonhosted.org/packages/f0/7b/cbc4dbb90a8bf6f5d5f42e584e2b26bc3c6962b22c1dd664d060d3fb7025/pycombo-0.1.8-cp38-cp38-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a545424e25a11d9d9db57e985189f9b505a94b4ab439f9b2fe3253aa6c9826ad",
                "md5": "e42782e28b69f7190dca19765b509753",
                "sha256": "71813681347ac941e6b9fe6e7c71557fb7fc735c46ec2fedef88118742355b0c"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e42782e28b69f7190dca19765b509753",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 103232,
            "upload_time": "2024-09-24T21:42:34",
            "upload_time_iso_8601": "2024-09-24T21:42:34.661281Z",
            "url": "https://files.pythonhosted.org/packages/a5/45/424e25a11d9d9db57e985189f9b505a94b4ab439f9b2fe3253aa6c9826ad/pycombo-0.1.8-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d8b57d51986f44517f1ca1e4addd4d6b38e6a3b7f5140127d96ad47eb73df29",
                "md5": "459813b00210c29d12e77f579feb4e3e",
                "sha256": "9ac86f503901b5580d216bd46ee6bb902b978f1a592bc3d29d7a8bb7a7a8a78f"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp39-cp39-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "459813b00210c29d12e77f579feb4e3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 207197,
            "upload_time": "2024-09-24T21:42:35",
            "upload_time_iso_8601": "2024-09-24T21:42:35.502873Z",
            "url": "https://files.pythonhosted.org/packages/4d/8b/57d51986f44517f1ca1e4addd4d6b38e6a3b7f5140127d96ad47eb73df29/pycombo-0.1.8-cp39-cp39-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d8bda44e4d8924da16cb6d46fd0e1363cef56b17912795c4bc2b6f9c55ef5c3",
                "md5": "ed9b723d7286bf6957ead01f71c8280f",
                "sha256": "7f6507489681548675d4ec1561a4d66718f11dc7959e4993c4a7bce7d8ae353f"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed9b723d7286bf6957ead01f71c8280f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 120447,
            "upload_time": "2024-09-24T21:42:36",
            "upload_time_iso_8601": "2024-09-24T21:42:36.913732Z",
            "url": "https://files.pythonhosted.org/packages/3d/8b/da44e4d8924da16cb6d46fd0e1363cef56b17912795c4bc2b6f9c55ef5c3/pycombo-0.1.8-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bd94d957f45f4b08d95105d2d5ec95487b886acbdf76b6b58174ee85ea19af4",
                "md5": "032851032f1a6b3849f8c7555f678c38",
                "sha256": "b632d80ceea178a0eedae3715c9e5fe71c2a9114c5a953410e8cd73968f3334f"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "032851032f1a6b3849f8c7555f678c38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 103107,
            "upload_time": "2024-09-24T21:42:38",
            "upload_time_iso_8601": "2024-09-24T21:42:38.019531Z",
            "url": "https://files.pythonhosted.org/packages/1b/d9/4d957f45f4b08d95105d2d5ec95487b886acbdf76b6b58174ee85ea19af4/pycombo-0.1.8-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad4a73fa743e3b7457d41e276e53afcf2537a07c5ef1e1bfcd0bada477b6122",
                "md5": "fb196ac4d2fd127a47bc9a1fd0ca6bbf",
                "sha256": "5eb88ee4f67e695c175b5d0f477f40657316ef19637e6a60113444b024c80acd"
            },
            "downloads": -1,
            "filename": "pycombo-0.1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "fb196ac4d2fd127a47bc9a1fd0ca6bbf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 33317,
            "upload_time": "2024-09-24T21:42:39",
            "upload_time_iso_8601": "2024-09-24T21:42:39.378387Z",
            "url": "https://files.pythonhosted.org/packages/fa/d4/a73fa743e3b7457d41e276e53afcf2537a07c5ef1e1bfcd0bada477b6122/pycombo-0.1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-24 21:42:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Casyfill",
    "github_project": "pyCombo",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pycombo"
}
        
Elapsed time: 0.32404s