| Name | twosquares JSON |
| Version |
0.0.4
JSON |
| download |
| home_page | None |
| Summary | A package for very efficiently decomposing a number n into all possible x**2 + y**2 = n solutions. |
| upload_time | 2025-08-22 02:42:39 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.9 |
| license | MIT |
| keywords |
math
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
I've defined this process as "decomposing" a number $n$ into the possible solutions $x^2 + y^2 = n$.
# twosquares
`twosquares` exposes two simple methods for this number-theory task:
* `decompose_prime(p)` — find the unique non-negative pair (a, b) with $a^2 + b^2 = p$ for $p = 2$ or any prime $p \equiv 1 \bmod 4$.
* `decompose_number(n)` — find the unique non-negative pairs (a, b) with $a^2 + b^2 = n$ for any number $n$.
### Algorithm
Here is an explanation for the algorithm in this repo:
This builds on the algorithm described by Stan Wagon (1990),
based on work by Serret and Hermite (1848), and Cornacchia (1908).
The first thing to know is that there is a deterministic algorithm to quickly find the 1 and only solution for primes $p$ that are $\equiv 1 \bmod 4$.
The solution is to simply use Euclid's algorithm. This is the heart of the general algorithm for any $n$, which is described here:
1. Factor $n$. This is the hardest, most time-consuming step.
We'll say this factoring has the form $2^t * (p_1 ^ {k_1} * p_2 ^ {k_2} * ...) * (q_1 ^ {j_1} * q_2 ^ {j_2} * ...)$
Where $t$ is the 2's exponent, all of the primes $p$ are $\equiv 1 \bmod 4$, and all of the primes $q$ are $\equiv 3 \bmod 4$
1. If any of primes $q$ (which are $\equiv 3 \bmod 4$) have an exponent $j$ that is odd, then there are no solutions.
2. If there are no primes $p$ (that are $\equiv 1 \bmod 4$), there are no solutions.
2. Construct a "base number" to use during the combinatorics later. We'll start with the 2's power, we will start the base number off as $(1 - i)^t$
3. Now, for each prime $q^j$ in the factoring (the ones $\equiv 3 \bmod 4$):
1. Multiply the base number by $(-qi)^{ j / 2 }$ Where $-qi$ is an imaginary number with $0$ real and $-q$ complex part, and it is raised to the power of $j / 2$.
Note that from the rules laid out in step 1 above, $j$ is guaranteed to be even so this will always be an integer.
4. Next will begin the combinatorics for the $p$ group, however 1 member of the $p$ group does not need to engage in this combinatorics (reasons why below).
So we'll select the first prime $p \equiv 3 \bmod 4$, and create it's "imaginary decomposition". This is a complex number $x+yi$ made from the solution $x^2 + y^2 = p$.
Multiply the base number by this number too.
1. If the exponent for this $p$ (the $k$ value) was 1 then $p$ can be removed entirely from the group.
2. If $k$ was greater than $1$, it should be decremented, and the remaining instances of $p$ in the factorization still need to undergo the following combinatorics.
5. Now we need to use combinations of (`True`, `False`) of length $\sum k$ to drive the combinatorics going forward.
Python has a product method for this, or you can simply count up using binary numbers to `1<<sum(k)` and look at the bits of this counter.
For every possible combination of true/false called "choices":
1. Start this solution with the base number.
2. For each factor $p$ left, one time for each exponent $k$:
1. Get the next "choice" (true/false)
2. Get the "imaginary decomposition" of the factor, either $x+yi$ if the choice was true or $x-yi$ if the choice was false
3. Multiply the total number by this either positive or negative imaginary decomposition
3. The real and imaginary part of the total number now constitute a solution for $x^2 + y^2 = n$! Amazing!!
1. The numbers are then sorted so that $x<y$, and this is a unique solution that may or may not have been found already.
Doing this we can rapidly break any number $n$ up into all of its possible $x^2 + y^2$ solutions!
Note: Remember how we didn't do combinatorics for a single exponent of the $p$ group?
If that exponent of that base were included, we would simply get back the same solutions but in reverse order.
The problem uses addition and is associative, so we do not care about order.
Thus we can effectively halve the compute time with the combinatorics by excluding the other half of that particular exponent.
### Example
As an example, lets look at $n = 19890$.
This number's factorization looks like: $2 * 3^2 * 5 * 13 * 17$.
The set of primes $p$ (that are $\equiv 1 \bmod 4$) are $5$, $13$ and $17$ (all having an exponent $k$ of $1$).
The set of primes $q$ (that are $\equiv 3 \bmod 4$) is $3$, with the only exponent $j$ being 2.
Starting with the rules we can see that all of the primes $q$ have an even exponent ($2$ in this case) and there are primes in the $p$ group, so there must be at least 1 solution for this number!
The 2's exponent is $1$, so we will say our base number is $(1-i)^1$ or just $1 - i$
There is only a single prime in the $q$ group, so we will multiply the base number by $(-3i)^1$ which gives $-3 - 3i$
We'll take the first prime in the $p$ group ($5$) and decompose that number, we find we get $5 = 1^2 + 2^2$.
We use this composition to construct a complex number $1 + 2i$. Now multiply the base number by this.
This is the real base number, which is $3 - 9i$
Now for combinatorics to produce all the different solutions. The remaining 2 primes $p$ have the following decompositions:
$13 = 2^2 + 3^2$
$17 = 1^2 + 4^2$
1. Using the positive values: Multiply the base number by $2+3i$ and $1+4i$ (from the solutions for both of these primes),
and we get $69 + 123i$, which is magically our first solution: $19890 = 69^2 + 123^2$
2. Using the negative values: Multiply the base number by $2-3i$ and $1-4i$, and we get $-129 + 57i$,
which using the absolute values of these gives our next solution: $19890 = 129^2 + 57^2$
3. Using positive for 13 and negative for 17: Multiply the base number by $2+3i$ and $1-4i$, and we get $-3 - 141i$, which again gives our next solution: $19890 = 3^2 + 141^2$
4. Lastly it should be obvious: Multiply the base number by $2-3i$ and $1+4i$, we get our final answer: $19890 = 87^2 + 111^2$
So in conclusion, the following are all equal to $19890$: $69^2 + 123^2$, $129^2 + 57^2$, $3^2 + 141^2$, $87^2 + 111^2$
Everything laid out in this example is performed by the following Python code:
```python
from twosquares import decompose_number
print(decompose_number(19890)) # prints {(69, 123), (57, 129), (3, 141), (87, 111)}
```
## Advanced Usage
It is possible to skip the factoring step and instead build a factored dictionary and pass that to `decompose_number` instead.
`decompose_number({2: 1, 3: 2, 5: 1, 13: 1, 17: 1})` will produce the same result as `decompose_number(19890)`.
If the factoring dictionary has been carefully crafted to comply with the rules laid out in step 1 of the algorithm section above,
then `limited_checks=True` can be passed as an argument to skip these validations.
It is an interesting fact that the upper bound of solutions can be quickly computed by $\prod (j + 1)$.
If a minimum number of solutions is required, this can be quickly validated by passing `check_count` as an integer.
Raw data
{
"_id": null,
"home_page": null,
"name": "twosquares",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "math",
"author": null,
"author_email": "Ryan Heard <ryanwheard@gmail.com>",
"download_url": null,
"platform": null,
"description": "I've defined this process as \"decomposing\" a number $n$ into the possible solutions $x^2 + y^2 = n$.\n\n# twosquares\n\n`twosquares` exposes two simple methods for this number-theory task:\n\n* `decompose_prime(p)` \u2014 find the unique non-negative pair (a, b) with $a^2 + b^2 = p$ for $p = 2$ or any prime $p \\equiv 1 \\bmod 4$.\n\n* `decompose_number(n)` \u2014 find the unique non-negative pairs (a, b) with $a^2 + b^2 = n$ for any number $n$.\n\n### Algorithm\nHere is an explanation for the algorithm in this repo:\n\nThis builds on the algorithm described by Stan Wagon (1990),\n based on work by Serret and Hermite (1848), and Cornacchia (1908).\n\nThe first thing to know is that there is a deterministic algorithm to quickly find the 1 and only solution for primes $p$ that are $\\equiv 1 \\bmod 4$. \n The solution is to simply use Euclid's algorithm. This is the heart of the general algorithm for any $n$, which is described here:\n\n1. Factor $n$. This is the hardest, most time-consuming step. \n We'll say this factoring has the form $2^t * (p_1 ^ {k_1} * p_2 ^ {k_2} * ...) * (q_1 ^ {j_1} * q_2 ^ {j_2} * ...)$\n Where $t$ is the 2's exponent, all of the primes $p$ are $\\equiv 1 \\bmod 4$, and all of the primes $q$ are $\\equiv 3 \\bmod 4$\n\n 1. If any of primes $q$ (which are $\\equiv 3 \\bmod 4$) have an exponent $j$ that is odd, then there are no solutions.\n 2. If there are no primes $p$ (that are $\\equiv 1 \\bmod 4$), there are no solutions. \n\n2. Construct a \"base number\" to use during the combinatorics later. We'll start with the 2's power, we will start the base number off as $(1 - i)^t$\n\n3. Now, for each prime $q^j$ in the factoring (the ones $\\equiv 3 \\bmod 4$):\n\n 1. Multiply the base number by $(-qi)^{ j / 2 }$ Where $-qi$ is an imaginary number with $0$ real and $-q$ complex part, and it is raised to the power of $j / 2$. \n Note that from the rules laid out in step 1 above, $j$ is guaranteed to be even so this will always be an integer.\n\n4. Next will begin the combinatorics for the $p$ group, however 1 member of the $p$ group does not need to engage in this combinatorics (reasons why below). \n So we'll select the first prime $p \\equiv 3 \\bmod 4$, and create it's \"imaginary decomposition\". This is a complex number $x+yi$ made from the solution $x^2 + y^2 = p$. \n Multiply the base number by this number too.\n\n 1. If the exponent for this $p$ (the $k$ value) was 1 then $p$ can be removed entirely from the group. \n 2. If $k$ was greater than $1$, it should be decremented, and the remaining instances of $p$ in the factorization still need to undergo the following combinatorics.\n\n5. Now we need to use combinations of (`True`, `False`) of length $\\sum k$ to drive the combinatorics going forward. \n Python has a product method for this, or you can simply count up using binary numbers to `1<<sum(k)` and look at the bits of this counter. \n\n For every possible combination of true/false called \"choices\":\n 1. Start this solution with the base number.\n 2. For each factor $p$ left, one time for each exponent $k$:\n\n 1. Get the next \"choice\" (true/false)\n 2. Get the \"imaginary decomposition\" of the factor, either $x+yi$ if the choice was true or $x-yi$ if the choice was false \n 3. Multiply the total number by this either positive or negative imaginary decomposition\n\n 3. The real and imaginary part of the total number now constitute a solution for $x^2 + y^2 = n$! Amazing!!\n\n 1. The numbers are then sorted so that $x<y$, and this is a unique solution that may or may not have been found already.\n\nDoing this we can rapidly break any number $n$ up into all of its possible $x^2 + y^2$ solutions!\n\nNote: Remember how we didn't do combinatorics for a single exponent of the $p$ group? \n If that exponent of that base were included, we would simply get back the same solutions but in reverse order. \n The problem uses addition and is associative, so we do not care about order. \n Thus we can effectively halve the compute time with the combinatorics by excluding the other half of that particular exponent.\n\n### Example\n\nAs an example, lets look at $n = 19890$. \n This number's factorization looks like: $2 * 3^2 * 5 * 13 * 17$. \n The set of primes $p$ (that are $\\equiv 1 \\bmod 4$) are $5$, $13$ and $17$ (all having an exponent $k$ of $1$). \n The set of primes $q$ (that are $\\equiv 3 \\bmod 4$) is $3$, with the only exponent $j$ being 2.\n\nStarting with the rules we can see that all of the primes $q$ have an even exponent ($2$ in this case) and there are primes in the $p$ group, so there must be at least 1 solution for this number!\n\nThe 2's exponent is $1$, so we will say our base number is $(1-i)^1$ or just $1 - i$\n\nThere is only a single prime in the $q$ group, so we will multiply the base number by $(-3i)^1$ which gives $-3 - 3i$\n\nWe'll take the first prime in the $p$ group ($5$) and decompose that number, we find we get $5 = 1^2 + 2^2$. \n We use this composition to construct a complex number $1 + 2i$. Now multiply the base number by this. \n This is the real base number, which is $3 - 9i$\n\nNow for combinatorics to produce all the different solutions. The remaining 2 primes $p$ have the following decompositions:\n\n$13 = 2^2 + 3^2$\n\n$17 = 1^2 + 4^2$\n\n1. Using the positive values: Multiply the base number by $2+3i$ and $1+4i$ (from the solutions for both of these primes), \n and we get $69 + 123i$, which is magically our first solution: $19890 = 69^2 + 123^2$\n\n2. Using the negative values: Multiply the base number by $2-3i$ and $1-4i$, and we get $-129 + 57i$, \n which using the absolute values of these gives our next solution: $19890 = 129^2 + 57^2$\n\n3. Using positive for 13 and negative for 17: Multiply the base number by $2+3i$ and $1-4i$, and we get $-3 - 141i$, which again gives our next solution: $19890 = 3^2 + 141^2$\n\n4. Lastly it should be obvious: Multiply the base number by $2-3i$ and $1+4i$, we get our final answer: $19890 = 87^2 + 111^2$\n\nSo in conclusion, the following are all equal to $19890$: $69^2 + 123^2$, $129^2 + 57^2$, $3^2 + 141^2$, $87^2 + 111^2$\n\nEverything laid out in this example is performed by the following Python code:\n\n```python\nfrom twosquares import decompose_number\n\nprint(decompose_number(19890)) # prints {(69, 123), (57, 129), (3, 141), (87, 111)} \n```\n\n## Advanced Usage\n\nIt is possible to skip the factoring step and instead build a factored dictionary and pass that to `decompose_number` instead. \n `decompose_number({2: 1, 3: 2, 5: 1, 13: 1, 17: 1})` will produce the same result as `decompose_number(19890)`.\n If the factoring dictionary has been carefully crafted to comply with the rules laid out in step 1 of the algorithm section above,\n then `limited_checks=True` can be passed as an argument to skip these validations.\n\nIt is an interesting fact that the upper bound of solutions can be quickly computed by $\\prod (j + 1)$.\n If a minimum number of solutions is required, this can be quickly validated by passing `check_count` as an integer.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A package for very efficiently decomposing a number n into all possible x**2 + y**2 = n solutions.",
"version": "0.0.4",
"project_urls": {
"Repository": "https://github.com/rheard/twosquares"
},
"split_keywords": [
"math"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "acb2d94c093bb83b9565e37bd59ff9de83d4f04ef72dd4efce2180c1ad8f3e4c",
"md5": "7fe9ea0f5229450ca6833ea0bb65b658",
"sha256": "920c26c52beb2e7f1418e44221b66520250998113663cf666ad0e0e85df2715d"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7fe9ea0f5229450ca6833ea0bb65b658",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 66291,
"upload_time": "2025-08-22T02:42:39",
"upload_time_iso_8601": "2025-08-22T02:42:39.860596Z",
"url": "https://files.pythonhosted.org/packages/ac/b2/d94c093bb83b9565e37bd59ff9de83d4f04ef72dd4efce2180c1ad8f3e4c/twosquares-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c00957a367912833d78b7a8b0a788147acfd0ca458f3c6edecd467e9b49cbee",
"md5": "a3862fa4c5617e0dd594d6e1e59631fc",
"sha256": "eb5c88637756300cc59a0d3de8f6db24e790d6e2bf963ddcf8c6c29680165188"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3862fa4c5617e0dd594d6e1e59631fc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 62534,
"upload_time": "2025-08-22T02:42:41",
"upload_time_iso_8601": "2025-08-22T02:42:41.726356Z",
"url": "https://files.pythonhosted.org/packages/5c/00/957a367912833d78b7a8b0a788147acfd0ca458f3c6edecd467e9b49cbee/twosquares-0.0.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9546ac21acf2dc7e7918781c41bc9936a7b532f062e7063c0649cade8b2457b6",
"md5": "0c5077058911f4e99d0a35d05ac21412",
"sha256": "e4a80416ba21fbfcd316e65d60fcee5f89c7d64e9631b3183c4a3ae3bcd49fb7"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0c5077058911f4e99d0a35d05ac21412",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 115969,
"upload_time": "2025-08-22T02:42:43",
"upload_time_iso_8601": "2025-08-22T02:42:43.054412Z",
"url": "https://files.pythonhosted.org/packages/95/46/ac21acf2dc7e7918781c41bc9936a7b532f062e7063c0649cade8b2457b6/twosquares-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ba05df1f500bd73f569d9e89f4636d4f308c3ae00399c863f55242e68f058b0",
"md5": "6fbc0cc567fc14158bee075f5ce842e2",
"sha256": "f510a7d1b6186323bb17f9a12155b2b393966decfd98d3262fb20742910996c6"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6fbc0cc567fc14158bee075f5ce842e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 121347,
"upload_time": "2025-08-22T02:42:44",
"upload_time_iso_8601": "2025-08-22T02:42:44.463559Z",
"url": "https://files.pythonhosted.org/packages/7b/a0/5df1f500bd73f569d9e89f4636d4f308c3ae00399c863f55242e68f058b0/twosquares-0.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b88d8733b34d4057a22077f05df86065109ca5ca7d50f070e275a86eae582305",
"md5": "b32906197341c135084a501f1478696c",
"sha256": "2ba669bf3f2e4d1cee0e5c338273a3ac1133a6e6da3467bacd85c6dad23031f1"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "b32906197341c135084a501f1478696c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 28869,
"upload_time": "2025-08-22T02:42:45",
"upload_time_iso_8601": "2025-08-22T02:42:45.476987Z",
"url": "https://files.pythonhosted.org/packages/b8/8d/8733b34d4057a22077f05df86065109ca5ca7d50f070e275a86eae582305/twosquares-0.0.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fadc44e87c372d73449f739ac55825fe7bd48f1a62bdf55525e0c5dc4a6afe20",
"md5": "ac211652fe756a494128e8ec93a15376",
"sha256": "585207068e49476aa88ba9e29b3047268bf335fc0eac8c40b7f4882bfa1ad702"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ac211652fe756a494128e8ec93a15376",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 32190,
"upload_time": "2025-08-22T02:42:46",
"upload_time_iso_8601": "2025-08-22T02:42:46.614561Z",
"url": "https://files.pythonhosted.org/packages/fa/dc/44e87c372d73449f739ac55825fe7bd48f1a62bdf55525e0c5dc4a6afe20/twosquares-0.0.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "892bc6da5676093ddb9cac491c471c43e6f0a42b260e6f17e3fd887785b82735",
"md5": "993a954afc0deaa72b7946dc67269055",
"sha256": "a46afd94445c6c4a672082f466739d031f76bea84bcb0eff8fd9c9a04e15b400"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "993a954afc0deaa72b7946dc67269055",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 27982,
"upload_time": "2025-08-22T02:42:47",
"upload_time_iso_8601": "2025-08-22T02:42:47.534020Z",
"url": "https://files.pythonhosted.org/packages/89/2b/c6da5676093ddb9cac491c471c43e6f0a42b260e6f17e3fd887785b82735/twosquares-0.0.4-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "819cbf4f2ac2ed1a93b6b1a1b8497c0495d48198dc77d8232c4757b231847f53",
"md5": "8047d895dc87666a2c624a404c09e85b",
"sha256": "9e22ff558a835b93a653aa7f1eb6b4a96c90e10d96d646d0eb839c23814fd236"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8047d895dc87666a2c624a404c09e85b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 65526,
"upload_time": "2025-08-22T02:42:48",
"upload_time_iso_8601": "2025-08-22T02:42:48.826175Z",
"url": "https://files.pythonhosted.org/packages/81/9c/bf4f2ac2ed1a93b6b1a1b8497c0495d48198dc77d8232c4757b231847f53/twosquares-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9712802730dc8d4987f2d9ffd34f24cb477136e26670eaae15736b288e99e4ee",
"md5": "08776b4b894f6d0037115b34cd51c197",
"sha256": "fc9814ee484a4222ae3d71fd9b11e8f6c3c8db5fb707b0e2be7c1a0d17d09831"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "08776b4b894f6d0037115b34cd51c197",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 61600,
"upload_time": "2025-08-22T02:42:50",
"upload_time_iso_8601": "2025-08-22T02:42:50.056103Z",
"url": "https://files.pythonhosted.org/packages/97/12/802730dc8d4987f2d9ffd34f24cb477136e26670eaae15736b288e99e4ee/twosquares-0.0.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9aa0c41f56cbf2a6ac21735372d8e795ac1798162b3c5c8224cdc5615feca870",
"md5": "8ac4b5eead7d408b9488fb89ec32d27e",
"sha256": "ee1ccb46793e80b18546f5ef555ce3da263d7b0fb2d6573389ff54f8c0ed4e70"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "8ac4b5eead7d408b9488fb89ec32d27e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 116728,
"upload_time": "2025-08-22T02:42:51",
"upload_time_iso_8601": "2025-08-22T02:42:51.396864Z",
"url": "https://files.pythonhosted.org/packages/9a/a0/c41f56cbf2a6ac21735372d8e795ac1798162b3c5c8224cdc5615feca870/twosquares-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c136fc302a88924d5d8a842abbb79b034695298e8a272d1b229dda930527e01",
"md5": "62cfca2d5949ea733917bd6a283ef0d3",
"sha256": "622d2fa131c05042a9df4dccc917b9cbbaedabc229ed4e0b863e93dbee0da973"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "62cfca2d5949ea733917bd6a283ef0d3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 122155,
"upload_time": "2025-08-22T02:42:52",
"upload_time_iso_8601": "2025-08-22T02:42:52.779648Z",
"url": "https://files.pythonhosted.org/packages/8c/13/6fc302a88924d5d8a842abbb79b034695298e8a272d1b229dda930527e01/twosquares-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de97a94f5ac9ab8f8da9caba369d04c5931de01f5cf3e4f4cb90f613d85cec99",
"md5": "418d303a84a9917b7852a1681861b4bf",
"sha256": "97ca7e0f0fd38281c5f9ed34253634dca65afeb7bb26c07ba239da5574602f16"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "418d303a84a9917b7852a1681861b4bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 28934,
"upload_time": "2025-08-22T02:42:54",
"upload_time_iso_8601": "2025-08-22T02:42:54.141031Z",
"url": "https://files.pythonhosted.org/packages/de/97/a94f5ac9ab8f8da9caba369d04c5931de01f5cf3e4f4cb90f613d85cec99/twosquares-0.0.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9e72a0c4745f1e6d43091c36f235d6ff4419d77d7305dce3cfe83a1a5567a8f",
"md5": "cd9e6fafe2d6306473ab38c539370a43",
"sha256": "8d3f7d7bd99220c3419a3d139083b68e2688dde6bb674c03777cab6a3389e6e9"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd9e6fafe2d6306473ab38c539370a43",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 32029,
"upload_time": "2025-08-22T02:42:55",
"upload_time_iso_8601": "2025-08-22T02:42:55.054588Z",
"url": "https://files.pythonhosted.org/packages/b9/e7/2a0c4745f1e6d43091c36f235d6ff4419d77d7305dce3cfe83a1a5567a8f/twosquares-0.0.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a65b08897ed664f8d33bbe603029d8f7ed0b3db744b3b2e752c8f830d812b870",
"md5": "3e16cd47aaa76c21bcee18a5b0e8aea6",
"sha256": "d59f05e413d4c42b1b2b09115fbe85f356265f498241c4a699c43153436072ef"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "3e16cd47aaa76c21bcee18a5b0e8aea6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 28051,
"upload_time": "2025-08-22T02:42:56",
"upload_time_iso_8601": "2025-08-22T02:42:56.083129Z",
"url": "https://files.pythonhosted.org/packages/a6/5b/08897ed664f8d33bbe603029d8f7ed0b3db744b3b2e752c8f830d812b870/twosquares-0.0.4-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3755a3904bc2bd1bb53dced0bc76bee623ccc7ad95c9c169d79100ee17af35ae",
"md5": "646519c5382c376f41a94ff0e92a2316",
"sha256": "3f9dfd46707b71940134f8294160a3f046a0991183df92a09a7cbe9ef2c126f6"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "646519c5382c376f41a94ff0e92a2316",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 66043,
"upload_time": "2025-08-22T02:42:57",
"upload_time_iso_8601": "2025-08-22T02:42:57.032803Z",
"url": "https://files.pythonhosted.org/packages/37/55/a3904bc2bd1bb53dced0bc76bee623ccc7ad95c9c169d79100ee17af35ae/twosquares-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fe53c8115dfbbfd9a0f6ae594a132bd3952706817f7e2ff50df7d9e005769d1",
"md5": "1b4746af2b938ff743e2e1efc09364b9",
"sha256": "9c2dbaf077017fd8a3b21c3a89b0c329aa4910624aea1331de031d08c1cdfe58"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1b4746af2b938ff743e2e1efc09364b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 61538,
"upload_time": "2025-08-22T02:42:57",
"upload_time_iso_8601": "2025-08-22T02:42:57.997611Z",
"url": "https://files.pythonhosted.org/packages/5f/e5/3c8115dfbbfd9a0f6ae594a132bd3952706817f7e2ff50df7d9e005769d1/twosquares-0.0.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6eceffaf666296a80938c2c4e1bd616a9577ccb7c279346a9068811a6719fd40",
"md5": "d05e3fcf4465ef9936cff439fc6eb410",
"sha256": "31ba73b71760cf9d34a709fcd7aef5727386c27cb1653dab8b47e2bfbc78627a"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d05e3fcf4465ef9936cff439fc6eb410",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 120172,
"upload_time": "2025-08-22T02:42:59",
"upload_time_iso_8601": "2025-08-22T02:42:59.419266Z",
"url": "https://files.pythonhosted.org/packages/6e/ce/ffaf666296a80938c2c4e1bd616a9577ccb7c279346a9068811a6719fd40/twosquares-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "740fd834bb70b101030176d60465d9440ea0747afe6b03aec1ebb1fbc5f3acad",
"md5": "26d7493ed31d313a10d94cbfa5e1fc08",
"sha256": "532cecc4e9692068804616c8d38399b9850016311e58a67621b2ce7f5a816c8d"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "26d7493ed31d313a10d94cbfa5e1fc08",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 126010,
"upload_time": "2025-08-22T02:43:00",
"upload_time_iso_8601": "2025-08-22T02:43:00.885651Z",
"url": "https://files.pythonhosted.org/packages/74/0f/d834bb70b101030176d60465d9440ea0747afe6b03aec1ebb1fbc5f3acad/twosquares-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5d37405308dee5f95dad7999ea68ce1a1ea6ac1b7c89e670e42cc928813d573",
"md5": "23b039ca0b9a13ceca09f3af2a42bb60",
"sha256": "896adc26c9dbe2ff52317558dc0d766b584ee02883b099402711775890752076"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "23b039ca0b9a13ceca09f3af2a42bb60",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 29267,
"upload_time": "2025-08-22T02:43:01",
"upload_time_iso_8601": "2025-08-22T02:43:01.882101Z",
"url": "https://files.pythonhosted.org/packages/c5/d3/7405308dee5f95dad7999ea68ce1a1ea6ac1b7c89e670e42cc928813d573/twosquares-0.0.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3161d7826cd4fa883dd1533941127a791861940dffcd86014bcaa2e122bcc7cc",
"md5": "66ba049578aeacb2cc73ee2462912ca8",
"sha256": "6394d9086355433e8316f0a450fd65b56f49469e073b004cd812a3365a9d7079"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "66ba049578aeacb2cc73ee2462912ca8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 32204,
"upload_time": "2025-08-22T02:43:02",
"upload_time_iso_8601": "2025-08-22T02:43:02.837379Z",
"url": "https://files.pythonhosted.org/packages/31/61/d7826cd4fa883dd1533941127a791861940dffcd86014bcaa2e122bcc7cc/twosquares-0.0.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8bb1fb8c45b037a0c4680ddaea93e49c950a766cdc6dc852164311205bbd8ad",
"md5": "80a3421dba71917f31785edb3ff315a4",
"sha256": "a48419229c5afa6133101e8121e4a26b47389f0abeaac4649645b3736e875f78"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "80a3421dba71917f31785edb3ff315a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 28416,
"upload_time": "2025-08-22T02:43:04",
"upload_time_iso_8601": "2025-08-22T02:43:04.134149Z",
"url": "https://files.pythonhosted.org/packages/d8/bb/1fb8c45b037a0c4680ddaea93e49c950a766cdc6dc852164311205bbd8ad/twosquares-0.0.4-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "112836967446767ac3b1bfe61a61d994eaeff3fe4e4b3b5c8559ed74e00c4c4a",
"md5": "e116cfb17dcc834bedaf71869a2fbd98",
"sha256": "f4f5d4fe93d97d8709325c7e0f49eabdc23f088c0f987d21143acc1207347cc5"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "e116cfb17dcc834bedaf71869a2fbd98",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 65804,
"upload_time": "2025-08-22T02:43:05",
"upload_time_iso_8601": "2025-08-22T02:43:05.409624Z",
"url": "https://files.pythonhosted.org/packages/11/28/36967446767ac3b1bfe61a61d994eaeff3fe4e4b3b5c8559ed74e00c4c4a/twosquares-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2709c229e6ef88a513d3e314d22984f973701a1e1c2d6b93fd68320dc3e6bf6d",
"md5": "893170dcedcb59c1a95f0fcc645dac9e",
"sha256": "ec2bbf7df76d2cb041e4496bcb56ad934e56e1477631f3f74ef87015855498e8"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "893170dcedcb59c1a95f0fcc645dac9e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 61425,
"upload_time": "2025-08-22T02:43:06",
"upload_time_iso_8601": "2025-08-22T02:43:06.397419Z",
"url": "https://files.pythonhosted.org/packages/27/09/c229e6ef88a513d3e314d22984f973701a1e1c2d6b93fd68320dc3e6bf6d/twosquares-0.0.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5259877bf4cdc2becae3dcfb3a467757153fdb22016107f3718976fc540ed877",
"md5": "717feb00a22d7e74cefb085cdbf3b2fa",
"sha256": "2323ff2f520c5db72c8248772b4b41aa0a17571399db9185fcab91af99dcd5ba"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "717feb00a22d7e74cefb085cdbf3b2fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 118906,
"upload_time": "2025-08-22T02:43:07",
"upload_time_iso_8601": "2025-08-22T02:43:07.440114Z",
"url": "https://files.pythonhosted.org/packages/52/59/877bf4cdc2becae3dcfb3a467757153fdb22016107f3718976fc540ed877/twosquares-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "018eb7e0624639a04e4482e4d4b38ce3fce62ef7f2b061d21511d3cfcb9a9c8c",
"md5": "6be45834486d736cc05a453509f60f32",
"sha256": "068b0256c2192d2ffcd467732300748658afe3ca49180bf0622bb6a7e39ea258"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6be45834486d736cc05a453509f60f32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 124858,
"upload_time": "2025-08-22T02:43:08",
"upload_time_iso_8601": "2025-08-22T02:43:08.562290Z",
"url": "https://files.pythonhosted.org/packages/01/8e/b7e0624639a04e4482e4d4b38ce3fce62ef7f2b061d21511d3cfcb9a9c8c/twosquares-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c1d9ae1e91caa14d00692a414c52b730c0c573ae59f88e729517e46e2610c5f",
"md5": "8775fa92565116a9a10ba29a7f5ba390",
"sha256": "2cced6c1709d2cd593e8dd1f2d8d8e7c65f8a49b962403b6d6a4b6d764405e1a"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "8775fa92565116a9a10ba29a7f5ba390",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 29266,
"upload_time": "2025-08-22T02:43:09",
"upload_time_iso_8601": "2025-08-22T02:43:09.569292Z",
"url": "https://files.pythonhosted.org/packages/0c/1d/9ae1e91caa14d00692a414c52b730c0c573ae59f88e729517e46e2610c5f/twosquares-0.0.4-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dde7cfb214c5d2ea7486265d1eb719e005e4b2f6c64ba9c696d9d460c89d0611",
"md5": "0e67e6ea36aed3b3221930b963a70a85",
"sha256": "49255e4f0af3c1bf9f3071cbb523bcc8c6be8f94e02472a739fd990ed6c259e3"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "0e67e6ea36aed3b3221930b963a70a85",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 32174,
"upload_time": "2025-08-22T02:43:10",
"upload_time_iso_8601": "2025-08-22T02:43:10.920849Z",
"url": "https://files.pythonhosted.org/packages/dd/e7/cfb214c5d2ea7486265d1eb719e005e4b2f6c64ba9c696d9d460c89d0611/twosquares-0.0.4-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de9e464962d27f769c71da945a93d1c7f8b9047bc6bbb8f050087c94bd41a3c3",
"md5": "403e28f3ea1a152f9854c18d0614fffd",
"sha256": "f79d39161b411f800b0ea2ff426b37d3f4808b98ee4245c70004cb72a4746a50"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "403e28f3ea1a152f9854c18d0614fffd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 28423,
"upload_time": "2025-08-22T02:43:12",
"upload_time_iso_8601": "2025-08-22T02:43:12.019599Z",
"url": "https://files.pythonhosted.org/packages/de/9e/464962d27f769c71da945a93d1c7f8b9047bc6bbb8f050087c94bd41a3c3/twosquares-0.0.4-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49253759f5e1631577e227efd2eb31373a217bca6ca69d6c731b8a9b4c4e8003",
"md5": "02f6cb1917e77b711848229374533006",
"sha256": "7cfd903614de08faf33c2e187de76ce08e595dedf249072d0a15026a961430d9"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "02f6cb1917e77b711848229374533006",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 66241,
"upload_time": "2025-08-22T02:43:12",
"upload_time_iso_8601": "2025-08-22T02:43:12.926957Z",
"url": "https://files.pythonhosted.org/packages/49/25/3759f5e1631577e227efd2eb31373a217bca6ca69d6c731b8a9b4c4e8003/twosquares-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26e084f66104a1779b0ca4a6482d4d7fad918fa270fbbc93921df8d444804f0b",
"md5": "6df6f088ea5c3ff5cc5a7ee52b7c50d4",
"sha256": "9dddf6360af1172c19529a60c7d282998fe149ab316a154f1002036d6f35cfbb"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6df6f088ea5c3ff5cc5a7ee52b7c50d4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 62480,
"upload_time": "2025-08-22T02:43:13",
"upload_time_iso_8601": "2025-08-22T02:43:13.970097Z",
"url": "https://files.pythonhosted.org/packages/26/e0/84f66104a1779b0ca4a6482d4d7fad918fa270fbbc93921df8d444804f0b/twosquares-0.0.4-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "078f19849b294a429fd79342bf9dd547535d6ecebaa5553fb50cbe7d84975804",
"md5": "3da60e3ebdeb5217ba276c987843a812",
"sha256": "23b94722030f7334a1d8e3f82aa190b6a8ad7299bbf9f8227d1d181d68c9f202"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "3da60e3ebdeb5217ba276c987843a812",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 115444,
"upload_time": "2025-08-22T02:43:15",
"upload_time_iso_8601": "2025-08-22T02:43:15.172423Z",
"url": "https://files.pythonhosted.org/packages/07/8f/19849b294a429fd79342bf9dd547535d6ecebaa5553fb50cbe7d84975804/twosquares-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cf841e8fdbed6240e33066532fe4dc7e4cb4e49757d7cd9ac6c9c6d98124acc",
"md5": "8f946c5a20b74b1af52966b6d728cd98",
"sha256": "549d41948958a08988bf7795e30b07624853aa10250e6173903b5ac874c32458"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8f946c5a20b74b1af52966b6d728cd98",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 120844,
"upload_time": "2025-08-22T02:43:16",
"upload_time_iso_8601": "2025-08-22T02:43:16.418613Z",
"url": "https://files.pythonhosted.org/packages/0c/f8/41e8fdbed6240e33066532fe4dc7e4cb4e49757d7cd9ac6c9c6d98124acc/twosquares-0.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84828c16a053941d885188f3a483b0ac97d08360d211d0d24583ca618a91f0a6",
"md5": "0d8099fe98d32feb06cbf874ae530a05",
"sha256": "5da58ca768ae4014ce42a8a59bda9270bbdd9a6995dd93dcc5a7123e84de4bc7"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "0d8099fe98d32feb06cbf874ae530a05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 28840,
"upload_time": "2025-08-22T02:43:17",
"upload_time_iso_8601": "2025-08-22T02:43:17.431430Z",
"url": "https://files.pythonhosted.org/packages/84/82/8c16a053941d885188f3a483b0ac97d08360d211d0d24583ca618a91f0a6/twosquares-0.0.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00c7b1076d294401855834b47b6bca7a46520c407df759de455185ff3c42be3b",
"md5": "190789e9f3621f64273434930ef8ba05",
"sha256": "a3d5f5d9e21348751e77340b64176fa5436779a5ca729b23de5ddcd0f8921a40"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "190789e9f3621f64273434930ef8ba05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 32136,
"upload_time": "2025-08-22T02:43:18",
"upload_time_iso_8601": "2025-08-22T02:43:18.362541Z",
"url": "https://files.pythonhosted.org/packages/00/c7/b1076d294401855834b47b6bca7a46520c407df759de455185ff3c42be3b/twosquares-0.0.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19dcd1aaf6307af1176bd59b67b7f20fe426b99f1dc2c0e34886f0b3548260c3",
"md5": "740f6d8247db36bd227cdcf9f0715426",
"sha256": "7f1ee009815be3cf13f7819fe9986f537b7ddf9b2730464f6ff3cc9af0c627ba"
},
"downloads": -1,
"filename": "twosquares-0.0.4-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "740f6d8247db36bd227cdcf9f0715426",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 27959,
"upload_time": "2025-08-22T02:43:19",
"upload_time_iso_8601": "2025-08-22T02:43:19.287060Z",
"url": "https://files.pythonhosted.org/packages/19/dc/d1aaf6307af1176bd59b67b7f20fe426b99f1dc2c0e34886f0b3548260c3/twosquares-0.0.4-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-22 02:42:39",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rheard",
"github_project": "twosquares",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "twosquares"
}