# disjointset
disjointset is a high-performance C extension module for Python that implements the union–find (disjoint set) data structure. Designed with versatility in mind, the module provides two primary variants of the disjoint set abstraction:
- **StaticDisjointSet:**
Pre-allocates storage for a fixed number of elements (0 to n−1) and is optimized for integer indices. It uses efficient array‐based structures and path‐splitting (a form of path compression) to achieve near‑constant operation times.
- **DynamicDisjointSet:**
Supports arbitrary hashable objects by dynamically creating new entries as needed. Under the hood, it leverages Python dictionaries rather than pre‐allocated lists. This provides greater flexibility at the slight expense of performance.
Both variants support standard union–find operations including `find`, `union`, `match` (to check connectivity), and `sets` (to extract connected components).
## Features
- **Efficient Union–Find Implementation:**
Uses union by rank together with an aggressive path compression strategy (specifically, path splitting) to minimize the cost of union and find operations.
- **Two Variants for Different Use Cases:**
- **StaticDisjointSet:** Best suited when the universe of elements is known in advance.
- **DynamicDisjointSet:** Ideal for applications requiring support for arbitrary objects, created on the fly.
- **Easy-to-Use API:**
A simple factory constructor is provided. Call `fastdisjointset.DisjointSet(n)` (with an integer) to obtain a static variant or `fastdisjointset.DisjointSet()` (no argument) to get the dynamic variant.
- **Benchmarking and Testing:**
Comprehensive benchmarks measure the performance of both the underlying strategies and implementations. Detailed plots are generated during benchmarking and can be viewed via the provided links.
## Benchmarks
This project includes two sets of benchmarks that illustrate the performance characteristics and tradeoffs of the union–find implementations.
### Strategies Benchmark
The **strategies benchmark** compares three different path compression approaches implemented with union by rank:
1. **Full Path Compression:**
Uses recursion to update every node on the path from a given element to its root. While effective at flattening the tree, the recursive overhead can be more costly in practice.
2. **Path Halving:**
Iteratively updates every other node (by making each node point to its grandparent) during a find. This method reduces overhead and improves iteration time compared to full compression.
3. **Path Splitting:**
Iteratively updates every node along the find path so that each one points to its grandparent.

As demonstrated in the plot, path splitting is consistently the fastest option among the three due to its minimal per-operation overhead and effective tree flattening.
These benchmarks use a series of simulated operations designed to stress different aspects (union-heavy, find-heavy, and balanced workloads) of the union–find implementation. The grouped bar chart provided in the benchmark plot clearly shows that the **path splitting** strategy outperforms the other approaches in a variety of scenarios.
### Disjointset Benchmark
In addition to multiple strategies for path compression, the project benchmarks the two disjoint set variants:
- **StaticDisjointSet (List-based Implementation):**
Uses pre-allocated lists for storing parent and rank information. This approach is highly efficient when the number of elements is fixed and known in advance. Its use of raw arrays minimizes overhead and maximizes speed.
- **DynamicDisjointSet (Dict-based Implementation):**
Relies on Python dictionaries, which allow for dynamic key insertion and support arbitrary objects. Although the dictionary-based approach is slightly slower on a per-operation basis because of hashing and dynamic memory management, it offers flexibility for cases when the element universe is not predetermined.

The benchmark plot for the fastdisjointset implementation illustrates the tradeoffs between these methods. The static variant shows superior performance when high throughput is needed and the element domain is fixed, while the dynamic variant is invaluable for more flexible or heterogeneous data applications.
## Installation
Install fastdisjointset using pip:
```bash
python -m pip install fastdisjointset
```
Alternatively, clone the repository and install in editable mode:
```bash
git clone https://github.com/grantjenks/python-disjointset.git
cd python-disjointset
python -m pip install -e .
```
> **Note:** As fastdisjointset is a C extension module, you will need a C compiler and the Python development headers installed on your system.
## Usage Example
Below is an example demonstrating how to use fastdisjointset in both static and dynamic modes:
```python
import fastdisjointset
# StaticDisjointSet: Create a disjoint set for 10 elements (0 through 9).
ds_static = fastdisjointset.DisjointSet(10)
ds_static.union(1, 2)
ds_static.union(2, 3)
print("Static: Are 1 and 3 connected?", ds_static.find(1) == ds_static.find(3)) # Expected output: True
# DynamicDisjointSet: No predefined count; supports arbitrary objects.
ds_dynamic = fastdisjointset.DisjointSet()
ds_dynamic.union('apple', 'banana')
ds_dynamic.union('banana', 'cherry')
print("Dynamic: Are 'apple' and 'cherry' connected?", ds_dynamic.find('apple') == ds_dynamic.find('cherry')) # Expected output: True
# Getting the groups (sets) of connected nodes.
print("Static groups:", ds_static.sets())
print("Dynamic groups:", ds_dynamic.sets())
```
## Benchmarking
For performance analysis, two benchmarking scripts are provided:
- **benchmark_strategies.py:**
This script compares the three union–find path compression techniques: full path compression, path halving, and path splitting. The results, clearly showing that path splitting is the fastest, are summarized in a grouped bar chart.
- **benchmark_disjointset.py:**
This benchmark tests the overall disjoint set implementations by running a series of union and find operations across multiple simulated workloads (e.g., union-heavy, mixed, find-heavy). It compares the static (list-based) and dynamic (dict-based) implementations, illustrating the tradeoffs between performance and flexibility.
To run the benchmarks, execute:
```bash
python benchmark_strategies.py
python benchmark_disjointset.py
```
Each script will generate and display a bar chart summarizing the results.
## Development & Continuous Integration
To develop and test fastdisjointset locally:
1. **Clone the repository:**
```bash
git clone https://github.com/grantjenks/python-disjointset.git
cd python-disjointset
```
2. **Build and install in editable mode:**
```bash
python -m pip install -e .
```
3. **Run tests:**
```bash
python test_disjointset.py
```
This project leverages GitHub Actions for continuous integration, which runs tests across multiple Python versions and operating systems, checks linting using ruff, and builds wheels for distribution.
## License
fastdisjointset is licensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for full details.
Raw data
{
"_id": null,
"home_page": "https://github.com/grantjenks/python-disjointset",
"name": "fastdisjointset",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Grant Jenks",
"author_email": "grant.jenks@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/ac/ec/86cbb5e97f7eac4b1a90a120b09efca125d11d8c1d06586081d3bab9b4d3/fastdisjointset-1.0.3.tar.gz",
"platform": null,
"description": "# disjointset\n\ndisjointset is a high-performance C extension module for Python that implements the union\u2013find (disjoint set) data structure. Designed with versatility in mind, the module provides two primary variants of the disjoint set abstraction:\n\n- **StaticDisjointSet:**\n Pre-allocates storage for a fixed number of elements (0 to n\u22121) and is optimized for integer indices. It uses efficient array\u2010based structures and path\u2010splitting (a form of path compression) to achieve near\u2011constant operation times.\n\n- **DynamicDisjointSet:**\n Supports arbitrary hashable objects by dynamically creating new entries as needed. Under the hood, it leverages Python dictionaries rather than pre\u2010allocated lists. This provides greater flexibility at the slight expense of performance.\n\nBoth variants support standard union\u2013find operations including `find`, `union`, `match` (to check connectivity), and `sets` (to extract connected components).\n\n## Features\n\n- **Efficient Union\u2013Find Implementation:**\n Uses union by rank together with an aggressive path compression strategy (specifically, path splitting) to minimize the cost of union and find operations.\n\n- **Two Variants for Different Use Cases:**\n - **StaticDisjointSet:** Best suited when the universe of elements is known in advance.\n - **DynamicDisjointSet:** Ideal for applications requiring support for arbitrary objects, created on the fly.\n\n- **Easy-to-Use API:**\n A simple factory constructor is provided. Call `fastdisjointset.DisjointSet(n)` (with an integer) to obtain a static variant or `fastdisjointset.DisjointSet()` (no argument) to get the dynamic variant.\n\n- **Benchmarking and Testing:**\n Comprehensive benchmarks measure the performance of both the underlying strategies and implementations. Detailed plots are generated during benchmarking and can be viewed via the provided links.\n\n## Benchmarks\n\nThis project includes two sets of benchmarks that illustrate the performance characteristics and tradeoffs of the union\u2013find implementations.\n\n### Strategies Benchmark\n\nThe **strategies benchmark** compares three different path compression approaches implemented with union by rank:\n\n1. **Full Path Compression:**\n Uses recursion to update every node on the path from a given element to its root. While effective at flattening the tree, the recursive overhead can be more costly in practice.\n\n2. **Path Halving:**\n Iteratively updates every other node (by making each node point to its grandparent) during a find. This method reduces overhead and improves iteration time compared to full compression.\n\n3. **Path Splitting:**\n Iteratively updates every node along the find path so that each one points to its grandparent.\n\n\n\nAs demonstrated in the plot, path splitting is consistently the fastest option among the three due to its minimal per-operation overhead and effective tree flattening.\n\nThese benchmarks use a series of simulated operations designed to stress different aspects (union-heavy, find-heavy, and balanced workloads) of the union\u2013find implementation. The grouped bar chart provided in the benchmark plot clearly shows that the **path splitting** strategy outperforms the other approaches in a variety of scenarios.\n\n### Disjointset Benchmark\n\nIn addition to multiple strategies for path compression, the project benchmarks the two disjoint set variants:\n\n- **StaticDisjointSet (List-based Implementation):**\n Uses pre-allocated lists for storing parent and rank information. This approach is highly efficient when the number of elements is fixed and known in advance. Its use of raw arrays minimizes overhead and maximizes speed.\n\n- **DynamicDisjointSet (Dict-based Implementation):**\n Relies on Python dictionaries, which allow for dynamic key insertion and support arbitrary objects. Although the dictionary-based approach is slightly slower on a per-operation basis because of hashing and dynamic memory management, it offers flexibility for cases when the element universe is not predetermined.\n\n\n\nThe benchmark plot for the fastdisjointset implementation illustrates the tradeoffs between these methods. The static variant shows superior performance when high throughput is needed and the element domain is fixed, while the dynamic variant is invaluable for more flexible or heterogeneous data applications.\n\n## Installation\n\nInstall fastdisjointset using pip:\n\n```bash\npython -m pip install fastdisjointset\n```\n\nAlternatively, clone the repository and install in editable mode:\n\n```bash\ngit clone https://github.com/grantjenks/python-disjointset.git\ncd python-disjointset\npython -m pip install -e .\n```\n\n> **Note:** As fastdisjointset is a C extension module, you will need a C compiler and the Python development headers installed on your system.\n\n## Usage Example\n\nBelow is an example demonstrating how to use fastdisjointset in both static and dynamic modes:\n\n```python\nimport fastdisjointset\n\n# StaticDisjointSet: Create a disjoint set for 10 elements (0 through 9).\nds_static = fastdisjointset.DisjointSet(10)\nds_static.union(1, 2)\nds_static.union(2, 3)\nprint(\"Static: Are 1 and 3 connected?\", ds_static.find(1) == ds_static.find(3)) # Expected output: True\n\n# DynamicDisjointSet: No predefined count; supports arbitrary objects.\nds_dynamic = fastdisjointset.DisjointSet()\nds_dynamic.union('apple', 'banana')\nds_dynamic.union('banana', 'cherry')\nprint(\"Dynamic: Are 'apple' and 'cherry' connected?\", ds_dynamic.find('apple') == ds_dynamic.find('cherry')) # Expected output: True\n\n# Getting the groups (sets) of connected nodes.\nprint(\"Static groups:\", ds_static.sets())\nprint(\"Dynamic groups:\", ds_dynamic.sets())\n```\n\n## Benchmarking\n\nFor performance analysis, two benchmarking scripts are provided:\n\n- **benchmark_strategies.py:**\n This script compares the three union\u2013find path compression techniques: full path compression, path halving, and path splitting. The results, clearly showing that path splitting is the fastest, are summarized in a grouped bar chart.\n\n- **benchmark_disjointset.py:**\n This benchmark tests the overall disjoint set implementations by running a series of union and find operations across multiple simulated workloads (e.g., union-heavy, mixed, find-heavy). It compares the static (list-based) and dynamic (dict-based) implementations, illustrating the tradeoffs between performance and flexibility.\n\nTo run the benchmarks, execute:\n\n```bash\npython benchmark_strategies.py\npython benchmark_disjointset.py\n```\n\nEach script will generate and display a bar chart summarizing the results.\n\n## Development & Continuous Integration\n\nTo develop and test fastdisjointset locally:\n\n1. **Clone the repository:**\n\n ```bash\n git clone https://github.com/grantjenks/python-disjointset.git\n cd python-disjointset\n ```\n\n2. **Build and install in editable mode:**\n\n ```bash\n python -m pip install -e .\n ```\n\n3. **Run tests:**\n\n ```bash\n python test_disjointset.py\n ```\n\nThis project leverages GitHub Actions for continuous integration, which runs tests across multiple Python versions and operating systems, checks linting using ruff, and builds wheels for distribution.\n\n## License\n\nfastdisjointset is licensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for full details.\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "Lightweight C extension module for Python that implements a disjoint set data type for union-find operations.",
"version": "1.0.3",
"project_urls": {
"Homepage": "https://github.com/grantjenks/python-disjointset"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0b2e321bc8f94f99b71068452be11785ccda3337cd240fea9191868d70c1e428",
"md5": "953cc188ef21cacbd7e402b6aeba4c59",
"sha256": "351c8c15c5937ee6a5efeabb3ee1005b36f60634926de8765fc41d1c73e998e5"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "953cc188ef21cacbd7e402b6aeba4c59",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 11134,
"upload_time": "2025-02-15T23:03:51",
"upload_time_iso_8601": "2025-02-15T23:03:51.485142Z",
"url": "https://files.pythonhosted.org/packages/0b/2e/321bc8f94f99b71068452be11785ccda3337cd240fea9191868d70c1e428/fastdisjointset-1.0.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5bafcb72761b14d1802679a9804c69379949456bc13568d14abddbb0e4653cc",
"md5": "ca6325985ee25851b816da18095a1e74",
"sha256": "cd8f4cf5a864fe192d988ea6839f2e6d8dfcbc384e95dbb12560cc7b5be9c1dd"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ca6325985ee25851b816da18095a1e74",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 27893,
"upload_time": "2025-02-15T23:03:53",
"upload_time_iso_8601": "2025-02-15T23:03:53.339237Z",
"url": "https://files.pythonhosted.org/packages/d5/ba/fcb72761b14d1802679a9804c69379949456bc13568d14abddbb0e4653cc/fastdisjointset-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4a78df0d1a10bd273586b1f432447ad568cf27511467f2560bf8351004daac2",
"md5": "a65fd59e5d1995be2c9c798b694b69bc",
"sha256": "6ddd2cddf6d495376fbfd5327e76e89c0a06b46d3b8f66501e05e530312e26b1"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a65fd59e5d1995be2c9c798b694b69bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29696,
"upload_time": "2025-02-15T23:03:55",
"upload_time_iso_8601": "2025-02-15T23:03:55.236730Z",
"url": "https://files.pythonhosted.org/packages/f4/a7/8df0d1a10bd273586b1f432447ad568cf27511467f2560bf8351004daac2/fastdisjointset-1.0.3-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": null,
"digests": {
"blake2b_256": "5de5d87b71ce0d823cea7d08cc8b1cf811ff2d0423136ad7c65eedba59ba9253",
"md5": "25373b168f3ebf4ed11ddf8d7d9893b2",
"sha256": "bbd7c5662f5cc9151beab64635fa5c9ac99b7a88ca86e68ec685596838252ade"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "25373b168f3ebf4ed11ddf8d7d9893b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 28135,
"upload_time": "2025-02-15T23:03:57",
"upload_time_iso_8601": "2025-02-15T23:03:57.204353Z",
"url": "https://files.pythonhosted.org/packages/5d/e5/d87b71ce0d823cea7d08cc8b1cf811ff2d0423136ad7c65eedba59ba9253/fastdisjointset-1.0.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9df9139b64794109027f2ed0ecf5e04f940e5c77df68575b5321cf15a1eaa796",
"md5": "e86292ebcacdcdec66fecc80b57ac2e0",
"sha256": "8f06de2a266c69fbb5d920796484864143d880c0ff30a5d8de10630d7723a16b"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e86292ebcacdcdec66fecc80b57ac2e0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 28281,
"upload_time": "2025-02-15T23:03:58",
"upload_time_iso_8601": "2025-02-15T23:03:58.362425Z",
"url": "https://files.pythonhosted.org/packages/9d/f9/139b64794109027f2ed0ecf5e04f940e5c77df68575b5321cf15a1eaa796/fastdisjointset-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2b8df9d467887c4cfbdba5f0b7f02b2596a7b9ec6b2eb724b9687eaec191eea",
"md5": "42658f9183afeb6a14721f4dd0787e34",
"sha256": "678f58bad4af87a601c0c334ff52035db385b837049c69f2c75174e63632cbd2"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "42658f9183afeb6a14721f4dd0787e34",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 12778,
"upload_time": "2025-02-15T23:04:00",
"upload_time_iso_8601": "2025-02-15T23:04:00.215241Z",
"url": "https://files.pythonhosted.org/packages/e2/b8/df9d467887c4cfbdba5f0b7f02b2596a7b9ec6b2eb724b9687eaec191eea/fastdisjointset-1.0.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b53884e5441cb1cfa42631aae03a6062be6c280ab55bee655496746cc9be4405",
"md5": "0d5796fd119bb6e60eef0fd1969890bd",
"sha256": "cdf020c57d434f650670a2ea6872d5a64cf3a6576066d81418e13e3a41ecbb9f"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "0d5796fd119bb6e60eef0fd1969890bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 13170,
"upload_time": "2025-02-15T23:04:02",
"upload_time_iso_8601": "2025-02-15T23:04:02.193465Z",
"url": "https://files.pythonhosted.org/packages/b5/38/84e5441cb1cfa42631aae03a6062be6c280ab55bee655496746cc9be4405/fastdisjointset-1.0.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a4738bf12602f1adc89a01a965c7351141b624be1533f32369f9fe076fdffc1",
"md5": "2ed3773a43f8c3d83ae41fa36e07d7c3",
"sha256": "7cc2e02e3bc829b4fc58bdcaff5119383ddfa38ca9457a3c66ee3757e7ef72bb"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2ed3773a43f8c3d83ae41fa36e07d7c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 11135,
"upload_time": "2025-02-15T23:04:03",
"upload_time_iso_8601": "2025-02-15T23:04:03.187217Z",
"url": "https://files.pythonhosted.org/packages/2a/47/38bf12602f1adc89a01a965c7351141b624be1533f32369f9fe076fdffc1/fastdisjointset-1.0.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19d17f850737661d23168b01a0c6a809715dc201f1189632a94a2dac035a9d1f",
"md5": "ecbf793e4c3e8d0b4dc0ca7861ef9f78",
"sha256": "bc7a5ee8f9b0262441de649c15747414aa24a9b669229c4f318e3dc467167cba"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ecbf793e4c3e8d0b4dc0ca7861ef9f78",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 28023,
"upload_time": "2025-02-15T23:04:04",
"upload_time_iso_8601": "2025-02-15T23:04:04.724130Z",
"url": "https://files.pythonhosted.org/packages/19/d1/7f850737661d23168b01a0c6a809715dc201f1189632a94a2dac035a9d1f/fastdisjointset-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddf70557be75b99aae7dd3b6b596414cffcbbabb7ff9f946bef078e151ef32b4",
"md5": "1e2bdd2755afc0aa7c49fa66511f2dc6",
"sha256": "40aaecd5e7bccbb53f14a17f44dd54082c0982593f99ce1a9da53a15e888fb7a"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1e2bdd2755afc0aa7c49fa66511f2dc6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 29802,
"upload_time": "2025-02-15T23:04:06",
"upload_time_iso_8601": "2025-02-15T23:04:06.633366Z",
"url": "https://files.pythonhosted.org/packages/dd/f7/0557be75b99aae7dd3b6b596414cffcbbabb7ff9f946bef078e151ef32b4/fastdisjointset-1.0.3-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": null,
"digests": {
"blake2b_256": "67ffe0c26b87c1976557574d381318f7258007edda349c418022d686c5a74107",
"md5": "b1c9ee4fd96e899a4d78e381f0377a58",
"sha256": "ef2fcffe33e8780deb59cef0fb2c3e4ebde0eb7b01220785184b9c45b90560e4"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b1c9ee4fd96e899a4d78e381f0377a58",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 28251,
"upload_time": "2025-02-15T23:04:07",
"upload_time_iso_8601": "2025-02-15T23:04:07.788508Z",
"url": "https://files.pythonhosted.org/packages/67/ff/e0c26b87c1976557574d381318f7258007edda349c418022d686c5a74107/fastdisjointset-1.0.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b6139cd42184def39d632feaa68e314c28dfac852082afa1fda4d4197392d60",
"md5": "89c28d8a368cfb24a99e5f1a44227d7c",
"sha256": "f06ce4ae50111922b7b29c14f658191fcd1864f9b5351877addfc8477091db20"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "89c28d8a368cfb24a99e5f1a44227d7c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 28403,
"upload_time": "2025-02-15T23:04:08",
"upload_time_iso_8601": "2025-02-15T23:04:08.858738Z",
"url": "https://files.pythonhosted.org/packages/9b/61/39cd42184def39d632feaa68e314c28dfac852082afa1fda4d4197392d60/fastdisjointset-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb278bd147d27c43f1da29a38258d02f67051c391addae0bac12f3ec5f9780c",
"md5": "58c4f8ba59f9b0ba12d31320fa9ad455",
"sha256": "2a20156cea3407bdfea2ec923a8816d6c9db1146f20d91b9821a7a518b76d339"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "58c4f8ba59f9b0ba12d31320fa9ad455",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 12774,
"upload_time": "2025-02-15T23:04:10",
"upload_time_iso_8601": "2025-02-15T23:04:10.738573Z",
"url": "https://files.pythonhosted.org/packages/2c/b2/78bd147d27c43f1da29a38258d02f67051c391addae0bac12f3ec5f9780c/fastdisjointset-1.0.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a131eaf8a2eaf3836bf141743cbdb38713e830f0ded25c82ee5b66d0a2e38426",
"md5": "a762b1017d05245ad4ccba71b9848710",
"sha256": "919ec420df6902b74dea984639d054330a0636124c090e9bd4136a40232387fc"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a762b1017d05245ad4ccba71b9848710",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 13168,
"upload_time": "2025-02-15T23:04:12",
"upload_time_iso_8601": "2025-02-15T23:04:12.542941Z",
"url": "https://files.pythonhosted.org/packages/a1/31/eaf8a2eaf3836bf141743cbdb38713e830f0ded25c82ee5b66d0a2e38426/fastdisjointset-1.0.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc78fcfc1c3d92ecb38e2be86a51cc159f88919c28300ae0d6057c9e210748c1",
"md5": "5312139aea2b9f86977dd1bf73fe44f3",
"sha256": "2753dd04c5bc1d951ee39fc2f96e3115225ecbdee870144f7a4accc452565a30"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5312139aea2b9f86977dd1bf73fe44f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 11167,
"upload_time": "2025-02-15T23:04:15",
"upload_time_iso_8601": "2025-02-15T23:04:15.401734Z",
"url": "https://files.pythonhosted.org/packages/cc/78/fcfc1c3d92ecb38e2be86a51cc159f88919c28300ae0d6057c9e210748c1/fastdisjointset-1.0.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f768de72667ca7530aa1d9897fe62bf7ac8e1c513176c162a7ba6294a89d182",
"md5": "203e5ac060b5b194cb8f188df0db788e",
"sha256": "53f1f461678080d2e96b000bd67414f7a96364a224b14d1edc90d1075bca2073"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "203e5ac060b5b194cb8f188df0db788e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 29692,
"upload_time": "2025-02-15T23:04:17",
"upload_time_iso_8601": "2025-02-15T23:04:17.267996Z",
"url": "https://files.pythonhosted.org/packages/5f/76/8de72667ca7530aa1d9897fe62bf7ac8e1c513176c162a7ba6294a89d182/fastdisjointset-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59809d166aa848ea1fd51e312c294ae7100ad3be4c85dd2435201287d10ae2ca",
"md5": "c79f9f1185387938c59bd660acc6897f",
"sha256": "774311593398776d3ec3c33751fe7898bcadc632d4ed6527a6ba86cbdbb1796e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c79f9f1185387938c59bd660acc6897f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 31865,
"upload_time": "2025-02-15T23:04:19",
"upload_time_iso_8601": "2025-02-15T23:04:19.148560Z",
"url": "https://files.pythonhosted.org/packages/59/80/9d166aa848ea1fd51e312c294ae7100ad3be4c85dd2435201287d10ae2ca/fastdisjointset-1.0.3-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": null,
"digests": {
"blake2b_256": "bb343339e474ddecde53f805d22b1108253132f231515eab4637bd65c8348280",
"md5": "3e5307e13c2dad63e7154b6d9e63486f",
"sha256": "e94de419c61dbc43cb88fc534bd3fee7e7db15137343e383400e8cff9eaea25a"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3e5307e13c2dad63e7154b6d9e63486f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 29625,
"upload_time": "2025-02-15T23:04:20",
"upload_time_iso_8601": "2025-02-15T23:04:20.846169Z",
"url": "https://files.pythonhosted.org/packages/bb/34/3339e474ddecde53f805d22b1108253132f231515eab4637bd65c8348280/fastdisjointset-1.0.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "342851eecfbb267fcea7fbc7052a229b0b2ff30600461162ac07df8365c45866",
"md5": "9329b716b24612f3784abe7d09738980",
"sha256": "a5520128de23cc3b7b418cda6414207421918bd4ebaf052405b97bfa1288deed"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9329b716b24612f3784abe7d09738980",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 30152,
"upload_time": "2025-02-15T23:04:21",
"upload_time_iso_8601": "2025-02-15T23:04:21.892975Z",
"url": "https://files.pythonhosted.org/packages/34/28/51eecfbb267fcea7fbc7052a229b0b2ff30600461162ac07df8365c45866/fastdisjointset-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0da41e78f0648ee75b1572ce2d3327400888357118e79b1f41b691b9e77c624",
"md5": "0a5dacd8b18cecceda106b4f5a48b7fc",
"sha256": "7d595797e62e5dd4aaf6e6e83b01ab69111e213bd5a35ed376edb1230f34650e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0a5dacd8b18cecceda106b4f5a48b7fc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 12829,
"upload_time": "2025-02-15T23:04:23",
"upload_time_iso_8601": "2025-02-15T23:04:23.026639Z",
"url": "https://files.pythonhosted.org/packages/a0/da/41e78f0648ee75b1572ce2d3327400888357118e79b1f41b691b9e77c624/fastdisjointset-1.0.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "940ca8af3a7e51dfd56c1f702c3e43ceef5acd50d1277df9197f6fc0932edca0",
"md5": "cb2644ab107ecc56032d0e9d05c65756",
"sha256": "5cb5e83779c30e17a28c631b5f48bd0789e2987a0dbb7e49fde482c3e7bc49f5"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb2644ab107ecc56032d0e9d05c65756",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 13283,
"upload_time": "2025-02-15T23:04:24",
"upload_time_iso_8601": "2025-02-15T23:04:24.612064Z",
"url": "https://files.pythonhosted.org/packages/94/0c/a8af3a7e51dfd56c1f702c3e43ceef5acd50d1277df9197f6fc0932edca0/fastdisjointset-1.0.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ec62f2a889875fb023a39939a33351f1cf18e8a531d3fd1bae67e638f9d63ee",
"md5": "58ea792766eddfe3e175fc0bab99d142",
"sha256": "fc2090a629bc7f5e59fbc939a3cf7fab380f638959c4ed6fbe1f67e8986141b0"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "58ea792766eddfe3e175fc0bab99d142",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 11164,
"upload_time": "2025-02-15T23:04:25",
"upload_time_iso_8601": "2025-02-15T23:04:25.760262Z",
"url": "https://files.pythonhosted.org/packages/7e/c6/2f2a889875fb023a39939a33351f1cf18e8a531d3fd1bae67e638f9d63ee/fastdisjointset-1.0.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76f5dfcd9a8615764235112f5792a9dac86a8f95f53eb5bc719e9a9cdf1d2146",
"md5": "197adc393ef0cd34fb5bf642d1c85254",
"sha256": "fe349086833fb24589f44df5b9e3145a2f71af47e4b84621e7cf177cc74c147d"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "197adc393ef0cd34fb5bf642d1c85254",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29684,
"upload_time": "2025-02-15T23:04:26",
"upload_time_iso_8601": "2025-02-15T23:04:26.853033Z",
"url": "https://files.pythonhosted.org/packages/76/f5/dfcd9a8615764235112f5792a9dac86a8f95f53eb5bc719e9a9cdf1d2146/fastdisjointset-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1694cc43dc33e3430df63768377e8975aff739b4049b8bbf140ce2253eeb6af8",
"md5": "124320e8b0606d8c2f846c5ab73e40c0",
"sha256": "704a197224862bc81f9bff3d335381ad7fbe979e8c729cf0872b634864382961"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "124320e8b0606d8c2f846c5ab73e40c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31837,
"upload_time": "2025-02-15T23:04:28",
"upload_time_iso_8601": "2025-02-15T23:04:28.982874Z",
"url": "https://files.pythonhosted.org/packages/16/94/cc43dc33e3430df63768377e8975aff739b4049b8bbf140ce2253eeb6af8/fastdisjointset-1.0.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bb866d60c21e1df31d92bb475a55b76b4e1560598ad54b194a37d697601fe7f",
"md5": "f0b4764b738f1008860df1eec422af4c",
"sha256": "b7f1dc4033c5837451046ca35b2f6ac7234f0a280b3819c997d8a7aaa8348cdf"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f0b4764b738f1008860df1eec422af4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29685,
"upload_time": "2025-02-15T23:04:30",
"upload_time_iso_8601": "2025-02-15T23:04:30.053279Z",
"url": "https://files.pythonhosted.org/packages/2b/b8/66d60c21e1df31d92bb475a55b76b4e1560598ad54b194a37d697601fe7f/fastdisjointset-1.0.3-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2129389f780bd70e201f5c2d144205344e18c46512202bd7ebed737068780517",
"md5": "d50506ac811ae0746acffdace9ef0db6",
"sha256": "a6e2705e2f44792b3f7f2c187574163402535239f958c5b56abba318b750124a"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d50506ac811ae0746acffdace9ef0db6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 30223,
"upload_time": "2025-02-15T23:04:31",
"upload_time_iso_8601": "2025-02-15T23:04:31.176017Z",
"url": "https://files.pythonhosted.org/packages/21/29/389f780bd70e201f5c2d144205344e18c46512202bd7ebed737068780517/fastdisjointset-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "041fbeee7c964229f2592211567a8a09e61f16db9f5e56f76d24344d0346c6ca",
"md5": "33bf58b55842a8a5dea4d5c52f69336b",
"sha256": "d207d04b10b09e914e296559b20e9a12d0234d2d97719f3c3155cc3de6a664bc"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "33bf58b55842a8a5dea4d5c52f69336b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 12831,
"upload_time": "2025-02-15T23:04:32",
"upload_time_iso_8601": "2025-02-15T23:04:32.869520Z",
"url": "https://files.pythonhosted.org/packages/04/1f/beee7c964229f2592211567a8a09e61f16db9f5e56f76d24344d0346c6ca/fastdisjointset-1.0.3-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8ff1b949939ae99130138f28a69544ed5be7d8a9f3f7e16e6234f58557bcc50",
"md5": "8ad46b684388b01714b769d0811d50bc",
"sha256": "6da633c4c65951329f0a6fb79bd6438164a2b72f0ad196222dee97a2e81c2509"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8ad46b684388b01714b769d0811d50bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 13287,
"upload_time": "2025-02-15T23:04:35",
"upload_time_iso_8601": "2025-02-15T23:04:35.059552Z",
"url": "https://files.pythonhosted.org/packages/b8/ff/1b949939ae99130138f28a69544ed5be7d8a9f3f7e16e6234f58557bcc50/fastdisjointset-1.0.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4920a715912f7c7bae160887e03c426a7ca23baed26cd5d4b69821de5b9ab8ea",
"md5": "3eb14711b96ee2511770f1a25307719c",
"sha256": "6f2f5c5d651ea2730da1faadc9e59cc07f5cdae6a40cffa07df5d69258fc87d4"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3eb14711b96ee2511770f1a25307719c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 11088,
"upload_time": "2025-02-15T23:04:36",
"upload_time_iso_8601": "2025-02-15T23:04:36.884036Z",
"url": "https://files.pythonhosted.org/packages/49/20/a715912f7c7bae160887e03c426a7ca23baed26cd5d4b69821de5b9ab8ea/fastdisjointset-1.0.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92cc3f14950647d12dd12516db81613e28912e66797b5183ff558ccb04f3bd42",
"md5": "0b3cfb2467af69e0719fc31c6a5f886e",
"sha256": "5ab52c6b8ca685621c1aad4f5b0c66908b5fc1beb41b09700964bbf7f93ee553"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0b3cfb2467af69e0719fc31c6a5f886e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29956,
"upload_time": "2025-02-15T23:04:37",
"upload_time_iso_8601": "2025-02-15T23:04:37.940508Z",
"url": "https://files.pythonhosted.org/packages/92/cc/3f14950647d12dd12516db81613e28912e66797b5183ff558ccb04f3bd42/fastdisjointset-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bc221e330f3d0f037b7a27f77ddca308999466f8b60710aa2606acc93a2b808",
"md5": "d5d4d1c91162aa3ff41e5274359c8679",
"sha256": "2642a0262495615371afae75de99ff0d96c39e450976370641b179e345ce27ed"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d5d4d1c91162aa3ff41e5274359c8679",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31855,
"upload_time": "2025-02-15T23:04:39",
"upload_time_iso_8601": "2025-02-15T23:04:39.066280Z",
"url": "https://files.pythonhosted.org/packages/5b/c2/21e330f3d0f037b7a27f77ddca308999466f8b60710aa2606acc93a2b808/fastdisjointset-1.0.3-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": null,
"digests": {
"blake2b_256": "9b4fba37b54e798f2be64bed62bc4e8fd71506bbd82b6eb1708d2a4fc97357a2",
"md5": "5c0397def1d115c351da7080b098596d",
"sha256": "0797fee1ff648e27107f88506855ba9a120d87a7412436f2ed015d980674043e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5c0397def1d115c351da7080b098596d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29567,
"upload_time": "2025-02-15T23:04:40",
"upload_time_iso_8601": "2025-02-15T23:04:40.204099Z",
"url": "https://files.pythonhosted.org/packages/9b/4f/ba37b54e798f2be64bed62bc4e8fd71506bbd82b6eb1708d2a4fc97357a2/fastdisjointset-1.0.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c4935376b8860971315e83f28320e102513931ae898e64718304b166bc38f8b",
"md5": "f083c414b368a3d6b059bd0617211064",
"sha256": "2f1a054e98bd05920c0823896a1a900bcbe40ea72e4ff451dde48fac9ae9de7b"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f083c414b368a3d6b059bd0617211064",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29492,
"upload_time": "2025-02-15T23:04:41",
"upload_time_iso_8601": "2025-02-15T23:04:41.414250Z",
"url": "https://files.pythonhosted.org/packages/6c/49/35376b8860971315e83f28320e102513931ae898e64718304b166bc38f8b/fastdisjointset-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c048b5a6b3fa2f251c4592fa898cb08185e3379f7f3077b2cdf98652a2d0b18",
"md5": "8cd594cb0744b0ab4e065472e79fa20e",
"sha256": "057da358a5e36a67c1097c0c88a3712ce86fdc9d88e1578af7209750ac9d5b86"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "8cd594cb0744b0ab4e065472e79fa20e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 12742,
"upload_time": "2025-02-15T23:04:42",
"upload_time_iso_8601": "2025-02-15T23:04:42.471228Z",
"url": "https://files.pythonhosted.org/packages/0c/04/8b5a6b3fa2f251c4592fa898cb08185e3379f7f3077b2cdf98652a2d0b18/fastdisjointset-1.0.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64f87f892f195835cd40c7f65345ef42f5df2af3adf692dbde2d15f263bf5956",
"md5": "19b10476f549fb9fc262329493b37c6c",
"sha256": "c22e1eefe45dc01674b96171d66c36873af001a61e978892275114f192a19b5e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "19b10476f549fb9fc262329493b37c6c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 13142,
"upload_time": "2025-02-15T23:04:43",
"upload_time_iso_8601": "2025-02-15T23:04:43.471434Z",
"url": "https://files.pythonhosted.org/packages/64/f8/7f892f195835cd40c7f65345ef42f5df2af3adf692dbde2d15f263bf5956/fastdisjointset-1.0.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a871bdd2a038b4b179f39ed9099985bce1773c19b37bb7165f2c85232210f44",
"md5": "1d34b7fe9c117e62358fa783fff23596",
"sha256": "5e036bd114835fd14e9f475c21591b83b7b9ef4e842680e9802895cdbf25cb9b"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1d34b7fe9c117e62358fa783fff23596",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 11134,
"upload_time": "2025-02-15T23:04:44",
"upload_time_iso_8601": "2025-02-15T23:04:44.563761Z",
"url": "https://files.pythonhosted.org/packages/7a/87/1bdd2a038b4b179f39ed9099985bce1773c19b37bb7165f2c85232210f44/fastdisjointset-1.0.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cf31b5aca3ed8359bb8e5138732c5fc9e6b877f3d53f34fc0ecb19f6e3a8367",
"md5": "af804011413f9054e7982e2f754eeeeb",
"sha256": "6bdb15df1356ae6f9a4293d22c67cace2e0d91d8e0153233a6358c8e69660924"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "af804011413f9054e7982e2f754eeeeb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 27619,
"upload_time": "2025-02-15T23:04:45",
"upload_time_iso_8601": "2025-02-15T23:04:45.753289Z",
"url": "https://files.pythonhosted.org/packages/7c/f3/1b5aca3ed8359bb8e5138732c5fc9e6b877f3d53f34fc0ecb19f6e3a8367/fastdisjointset-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a1afa84d4eab1fb2f178186d1a7f4d0e2a373078fe1a12188981e11a1753caa",
"md5": "6a0a8d140f157cad4868c071f277f1ef",
"sha256": "a043c620ce07ecc2bcb815674f929c39c695c658bbf37bed9a325044b05e9cf9"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6a0a8d140f157cad4868c071f277f1ef",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29383,
"upload_time": "2025-02-15T23:04:46",
"upload_time_iso_8601": "2025-02-15T23:04:46.826707Z",
"url": "https://files.pythonhosted.org/packages/3a/1a/fa84d4eab1fb2f178186d1a7f4d0e2a373078fe1a12188981e11a1753caa/fastdisjointset-1.0.3-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": null,
"digests": {
"blake2b_256": "4ceca7df30bc17d4ee7a7660bb08f7511bd86c9bc8275fe823e21a32896f13c3",
"md5": "d6ef696b3317614257e4166dfa4e5bc1",
"sha256": "a29e69fa2fa959afb15b4cf72e784e0418926d3d173a819d24f5a3277e93270c"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d6ef696b3317614257e4166dfa4e5bc1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 27840,
"upload_time": "2025-02-15T23:04:47",
"upload_time_iso_8601": "2025-02-15T23:04:47.931216Z",
"url": "https://files.pythonhosted.org/packages/4c/ec/a7df30bc17d4ee7a7660bb08f7511bd86c9bc8275fe823e21a32896f13c3/fastdisjointset-1.0.3-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34db8138d5013f8934dedded68a0d1ae46e9eefea89b13b8c2e422b5d3c6d4b7",
"md5": "002a1c5bb291b46c926d9d342e685201",
"sha256": "263b425c07005e736404ffe62ffba14e804c3d9ca64c0a862a9fcedce6d375cb"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "002a1c5bb291b46c926d9d342e685201",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 27962,
"upload_time": "2025-02-15T23:04:50",
"upload_time_iso_8601": "2025-02-15T23:04:50.392566Z",
"url": "https://files.pythonhosted.org/packages/34/db/8138d5013f8934dedded68a0d1ae46e9eefea89b13b8c2e422b5d3c6d4b7/fastdisjointset-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbbbb508fff6956f0fe6310d79afe1410804b40c7e42cb671d26f7b751016b0e",
"md5": "1119a12391fd1cad54d1d1d6f6664626",
"sha256": "60f90eb7aa8941f28a333b8208f8a6b92e50091bb05a27135a6e320c95e9c9ad"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1119a12391fd1cad54d1d1d6f6664626",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 12790,
"upload_time": "2025-02-15T23:04:52",
"upload_time_iso_8601": "2025-02-15T23:04:52.598145Z",
"url": "https://files.pythonhosted.org/packages/bb/bb/b508fff6956f0fe6310d79afe1410804b40c7e42cb671d26f7b751016b0e/fastdisjointset-1.0.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6b4fb8b6b09fe3d2ec82c461555a483397bef3165fce616ca01cadb44262b4e",
"md5": "2aee4d39ad71720754eb3a5ca82ba9a7",
"sha256": "53c9b339ded1de68f4babc81a79f23fa7727fa2f8adab25c6fd0a5399e2a15c9"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "2aee4d39ad71720754eb3a5ca82ba9a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 13198,
"upload_time": "2025-02-15T23:04:54",
"upload_time_iso_8601": "2025-02-15T23:04:54.150093Z",
"url": "https://files.pythonhosted.org/packages/a6/b4/fb8b6b09fe3d2ec82c461555a483397bef3165fce616ca01cadb44262b4e/fastdisjointset-1.0.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76e6f00b2565b30605017eb778f7d506dabb1a8f6c0dee41cfd8e979aa667b12",
"md5": "6b2eae5116e4cb35103bea0c005e3fb0",
"sha256": "fb5f90b0a8df812fdde4c6e04393e14ba6ede1df084782fb69bedc0669e62943"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6b2eae5116e4cb35103bea0c005e3fb0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 10721,
"upload_time": "2025-02-15T23:04:55",
"upload_time_iso_8601": "2025-02-15T23:04:55.176149Z",
"url": "https://files.pythonhosted.org/packages/76/e6/f00b2565b30605017eb778f7d506dabb1a8f6c0dee41cfd8e979aa667b12/fastdisjointset-1.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbf8e9c322c7b698152f5e43c8d6208253243049431c4b6610deb6ecd455d83a",
"md5": "cf369d4e5ebf6ad9f75ca2db7054fcc5",
"sha256": "17f1d7b0ebf6f20ac60821fcf08a64fd145f49ffe249f268b8834bb4abea00c6"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cf369d4e5ebf6ad9f75ca2db7054fcc5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 13034,
"upload_time": "2025-02-15T23:04:56",
"upload_time_iso_8601": "2025-02-15T23:04:56.178514Z",
"url": "https://files.pythonhosted.org/packages/bb/f8/e9c322c7b698152f5e43c8d6208253243049431c4b6610deb6ecd455d83a/fastdisjointset-1.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92bc0e0a55b9346c42b9266d62d36ba1198c9aa4cf56ed8236fa9fe25b1754d1",
"md5": "31511e69a0c5a6515df09ac3a37cfa21",
"sha256": "f9d9145b4c8225c3b44f725154f606ad82f5dc4965c2611a8ab00d2af4f0ac47"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "31511e69a0c5a6515df09ac3a37cfa21",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 12691,
"upload_time": "2025-02-15T23:04:57",
"upload_time_iso_8601": "2025-02-15T23:04:57.275290Z",
"url": "https://files.pythonhosted.org/packages/92/bc/0e0a55b9346c42b9266d62d36ba1198c9aa4cf56ed8236fa9fe25b1754d1/fastdisjointset-1.0.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1aab9b456b211243874dda7726b7d58876b6268252cea3ba68bfe06239b74711",
"md5": "2f73b4b3cd93f237512d1c5b8d6aaef2",
"sha256": "477f616269c6a82d42d4d858d0415d479922f7485adc2dd0c576aef83c25e3a1"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "2f73b4b3cd93f237512d1c5b8d6aaef2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 13235,
"upload_time": "2025-02-15T23:04:58",
"upload_time_iso_8601": "2025-02-15T23:04:58.403743Z",
"url": "https://files.pythonhosted.org/packages/1a/ab/9b456b211243874dda7726b7d58876b6268252cea3ba68bfe06239b74711/fastdisjointset-1.0.3-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c96407695fb8a8c65c3a4b6f23d934efef6a1f0a1f151409578c5360f43dd7f",
"md5": "4659e00409b79563ed4af6067d5f6b3c",
"sha256": "d06e358ea6a53bcc59e66a8148eeb345199e2ca5825f670d28b46d541d9ff10e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4659e00409b79563ed4af6067d5f6b3c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 10667,
"upload_time": "2025-02-15T23:04:59",
"upload_time_iso_8601": "2025-02-15T23:04:59.585565Z",
"url": "https://files.pythonhosted.org/packages/2c/96/407695fb8a8c65c3a4b6f23d934efef6a1f0a1f151409578c5360f43dd7f/fastdisjointset-1.0.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40280d183b1d0bad5f1830aea3247eb47a101b9250db724f1f59b9b50ed229dd",
"md5": "22050c667f8c6c9f4b8e8a05cfd4847c",
"sha256": "9e4e11f09d1fc8e0f42cc7882898f54e4b69766e171b945a2271ba9d04bea7e1"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "22050c667f8c6c9f4b8e8a05cfd4847c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 13054,
"upload_time": "2025-02-15T23:05:00",
"upload_time_iso_8601": "2025-02-15T23:05:00.613149Z",
"url": "https://files.pythonhosted.org/packages/40/28/0d183b1d0bad5f1830aea3247eb47a101b9250db724f1f59b9b50ed229dd/fastdisjointset-1.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f449f8dd335d38439653b34809bf6eebd1ac56c243ae036e1d04c0a747a2c37",
"md5": "f9c660e036abb5a577d47c155e417982",
"sha256": "d893038155e076859efd8add28c7cdf135cb2170eb53de04d5d5525f8e5efe4e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f9c660e036abb5a577d47c155e417982",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 12677,
"upload_time": "2025-02-15T23:05:01",
"upload_time_iso_8601": "2025-02-15T23:05:01.646457Z",
"url": "https://files.pythonhosted.org/packages/3f/44/9f8dd335d38439653b34809bf6eebd1ac56c243ae036e1d04c0a747a2c37/fastdisjointset-1.0.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aba0fb2c0fc2c62a8ef38227fd7d18f9435c85ce98ec645ddd44e671af4758b5",
"md5": "ac2fcfc5195c74ade0570d647758b53d",
"sha256": "0244091b9d1d9c496ce2fd573543df609818b5c01be4cd3c7ee05d92d321a5dd"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ac2fcfc5195c74ade0570d647758b53d",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 13166,
"upload_time": "2025-02-15T23:05:02",
"upload_time_iso_8601": "2025-02-15T23:05:02.763628Z",
"url": "https://files.pythonhosted.org/packages/ab/a0/fb2c0fc2c62a8ef38227fd7d18f9435c85ce98ec645ddd44e671af4758b5/fastdisjointset-1.0.3-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9645e31ac2e9dfcce9331b743e32cf26d5a9359b47d6fbff03c777a502df6370",
"md5": "36fb15dd34a938c5e9e1ee2f2c752072",
"sha256": "357ad50fa34adac72d8fcb923a14c9f8a39ca694ef6b30c61551d7f2ab6f39a2"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "36fb15dd34a938c5e9e1ee2f2c752072",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 10720,
"upload_time": "2025-02-15T23:05:05",
"upload_time_iso_8601": "2025-02-15T23:05:05.502526Z",
"url": "https://files.pythonhosted.org/packages/96/45/e31ac2e9dfcce9331b743e32cf26d5a9359b47d6fbff03c777a502df6370/fastdisjointset-1.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38e4ec6e38320ac3adfd0b3d43cf803fbeb54754b49f6d399c63d348d1401163",
"md5": "794c7c0c49ba4aea19caa32f61f979d6",
"sha256": "2d2920947c58c0f72365f9ac97fe9684eed42e826c73043edcffeb628df3c01e"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "794c7c0c49ba4aea19caa32f61f979d6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 13036,
"upload_time": "2025-02-15T23:05:07",
"upload_time_iso_8601": "2025-02-15T23:05:07.161564Z",
"url": "https://files.pythonhosted.org/packages/38/e4/ec6e38320ac3adfd0b3d43cf803fbeb54754b49f6d399c63d348d1401163/fastdisjointset-1.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62270d3d4cf68f69e3e97aaa65812433753bd1d5583903b47060b0dffd43224c",
"md5": "4d4b50cc14b5558747df825518dcc697",
"sha256": "139974a10497497dbebddcf2433161614d9166909f72053fd88c7bf8ced02231"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4d4b50cc14b5558747df825518dcc697",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 12687,
"upload_time": "2025-02-15T23:05:09",
"upload_time_iso_8601": "2025-02-15T23:05:09.004998Z",
"url": "https://files.pythonhosted.org/packages/62/27/0d3d4cf68f69e3e97aaa65812433753bd1d5583903b47060b0dffd43224c/fastdisjointset-1.0.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11ea5951c2f712fdfaf4beb741ffe06327dafee9baf3daa66a02a150bc03b1cd",
"md5": "b2b5647022e2508e11b37acba0e9213f",
"sha256": "7faeb396ca49fd530072459ed078c4e639fe2c09748cc0148d7c228ea331bcf9"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "b2b5647022e2508e11b37acba0e9213f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 13222,
"upload_time": "2025-02-15T23:05:10",
"upload_time_iso_8601": "2025-02-15T23:05:10.397702Z",
"url": "https://files.pythonhosted.org/packages/11/ea/5951c2f712fdfaf4beb741ffe06327dafee9baf3daa66a02a150bc03b1cd/fastdisjointset-1.0.3-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acec86cbb5e97f7eac4b1a90a120b09efca125d11d8c1d06586081d3bab9b4d3",
"md5": "57ddb0a2b9ba6c00bb3f256f647e362b",
"sha256": "e3bc66b025601b9a51288bdc0f6b6793d502d981df0300c85c04b1abf74eb93f"
},
"downloads": -1,
"filename": "fastdisjointset-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "57ddb0a2b9ba6c00bb3f256f647e362b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 11206,
"upload_time": "2025-02-15T23:05:11",
"upload_time_iso_8601": "2025-02-15T23:05:11.511699Z",
"url": "https://files.pythonhosted.org/packages/ac/ec/86cbb5e97f7eac4b1a90a120b09efca125d11d8c1d06586081d3bab9b4d3/fastdisjointset-1.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-15 23:05:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "grantjenks",
"github_project": "python-disjointset",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "fastdisjointset"
}