pycryptosat


Namepycryptosat JSON
Version 5.11.20 PyPI version JSON
download
home_pagehttps://github.com/msoos/cryptominisat
SummaryBindings to CryptoMiniSat, an advanced SAT solver
upload_time2024-02-08 21:04:42
maintainer
docs_urlNone
author
requires_python>=3.5
licenseCopyright (C) 2009-2020 Authors of CryptoMiniSat, see AUTHORS file All rights reserved. The general priciple of the licensing is as follows. Everything that's needed to run/build/install/link the system is MIT licensed. This allows easy distribution and running of the system everywhere. Files that have no copyright header are also MIT licensed. Note that in case you compile with Bliss, then Bliss's GPL license affects the final executable and library. Everything else that's not needed to run/build/install/link is usually GPLv2 licensed or compatible (see the copyright headers.) The only exceptions are the following files in docs/: * `splncs03.bat` which is under the LPPL * `ieee.cls` which is covered by the IEEE Copyright Policy MIT License =================== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. GPL License v2 =================== This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
keywords sat cryptography
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pycryptosat SAT solver

This directory provides Python bindings to CryptoMiniSat on the C++ level,
i.e. when importing pycryptosat, the CryptoMiniSat solver becomes part of the
Python process itself.

## Installing

```
pip install pycryptosat
```

## Compiling
If you don't want to use the pip package, you can compile it as:

```
apt-get install python-dev
python -m build
```

To help with debug, you can also:
```
python setup.py bdist_wheel
```

## Usage

The `pycryptosat` module has one object, `Solver` that has two functions
`solve` and `add_clause`.

The funcion `add_clause()` takes an iterable list of literals such as
`[1, 2]` which represents the truth `1 or 2 = True`. For example,
`add_clause([1])` sets variable `1` to `True`.

The function `solve()` solves the system of equations that have been added
with `add_clause()`:

```
>>> from pycryptosat import Solver
>>> s = Solver()
>>> s.add_clause([1, 2])
>>> sat, solution = s.solve()
>>> print sat
True
>>> print solution
(None, True, True)
```

The return value is a tuple. First part of the tuple indicates whether the
problem is satisfiable. In this case, it's `True`, i.e. satisfiable. The second
part is a tuple contains the solution, preceded by None, so you can index into
it with the variable number. E.g. `solution[1]` returns the value for
variable `1`.

The `solve()` method optionally takes an argument `assumptions` that
allows the user to set values to specific variables in the solver in a temporary
fashion. This means that in case the problem is satisfiable but e.g it's
unsatisfiable if variable 2 is FALSE, then `solve([-2])` will return
UNSAT. However, a subsequent call to `solve()` will still return a solution.
If instead of an assumption `add_clause()` would have been used, subsequent
`solve()` calls would have returned unsatisfiable.

`Solver` takes the following keyword arguments:
  * `time_limit`: the time limit (integer)
  * `confl_limit`: the propagation limit (integer)
  * `verbose`: the verbosity level (integer)

Both `time_limit` and `confl_limit` set a budget to the solver. The former is based on time elapsed while the former is based on number of conflicts met during search. If the solver runs out of budget, it returns with `(None, None)`. If both limits are used, the solver will terminate whenever one of the limits are hit (whichever first). Warning: Results from `time_limit` may differ from run to run, depending on compute load, etc. Use `confl_limit` for more reproducible runs.

## Example

Let us consider the following clauses, represented using
the DIMACS `cnf <http://en.wikipedia.org/wiki/Conjunctive_normal_form>`_
format::

```
p cnf 5 3
1 -5 4 0
-1 5 3 4 0
-3 -4 0
```

Here, we have 5 variables and 3 clauses, the first clause being
(x\ :sub:`1`  or not x\ :sub:`5` or x\ :sub:`4`).
Note that the variable x\ :sub:`2` is not used in any of the clauses,
which means that for each solution with x\ :sub:`2` = True, we must
also have a solution with x\ :sub:`2` = False.  In Python, each clause is
most conveniently represented as a list of integers.  Naturally, it makes
sense to represent each solution also as a list of integers, where the sign
corresponds to the Boolean value (+ for True and - for False) and the
absolute value corresponds to i\ :sup:`th` variable::

```
>>> import pycryptosat
>>> solver = pycryptosat.Solver()
>>> solver.add_clause([1, -5, 4])
>>> solver.add_clause([-1, 5, 3, 4])
>>> solver.add_clause([-3, -4])
>>> solver.solve()
(True, (None, True, False, False, True, True))
```

This solution translates to: x\ :sub:`1` = x\ :sub:`4` = x\ :sub:`5` = True,
x\ :sub:`2` = x\ :sub:`3` = False

# Special options (e.g. LARGEMEM, etc)

In case you need to e.g. have LARGEMEM, you must modify `setup.py` and add `'-DLARGE_OFFSETS'` to `extra_compile_args`. Similarly for other options.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/msoos/cryptominisat",
    "name": "pycryptosat",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "Mate Soos <soos.mate@gmail.com>",
    "keywords": "sat,cryptography",
    "author": "",
    "author_email": "Mate Soos <soos.mate@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/2e/2f/31eabe588fd2b868d28486043498ec8def7ac0455a7f2f6214f7cffd652c/pycryptosat-5.11.20.tar.gz",
    "platform": null,
    "description": "# pycryptosat SAT solver\n\nThis directory provides Python bindings to CryptoMiniSat on the C++ level,\ni.e. when importing pycryptosat, the CryptoMiniSat solver becomes part of the\nPython process itself.\n\n## Installing\n\n```\npip install pycryptosat\n```\n\n## Compiling\nIf you don't want to use the pip package, you can compile it as:\n\n```\napt-get install python-dev\npython -m build\n```\n\nTo help with debug, you can also:\n```\npython setup.py bdist_wheel\n```\n\n## Usage\n\nThe `pycryptosat` module has one object, `Solver` that has two functions\n`solve` and `add_clause`.\n\nThe funcion `add_clause()` takes an iterable list of literals such as\n`[1, 2]` which represents the truth `1 or 2 = True`. For example,\n`add_clause([1])` sets variable `1` to `True`.\n\nThe function `solve()` solves the system of equations that have been added\nwith `add_clause()`:\n\n```\n>>> from pycryptosat import Solver\n>>> s = Solver()\n>>> s.add_clause([1, 2])\n>>> sat, solution = s.solve()\n>>> print sat\nTrue\n>>> print solution\n(None, True, True)\n```\n\nThe return value is a tuple. First part of the tuple indicates whether the\nproblem is satisfiable. In this case, it's `True`, i.e. satisfiable. The second\npart is a tuple contains the solution, preceded by None, so you can index into\nit with the variable number. E.g. `solution[1]` returns the value for\nvariable `1`.\n\nThe `solve()` method optionally takes an argument `assumptions` that\nallows the user to set values to specific variables in the solver in a temporary\nfashion. This means that in case the problem is satisfiable but e.g it's\nunsatisfiable if variable 2 is FALSE, then `solve([-2])` will return\nUNSAT. However, a subsequent call to `solve()` will still return a solution.\nIf instead of an assumption `add_clause()` would have been used, subsequent\n`solve()` calls would have returned unsatisfiable.\n\n`Solver` takes the following keyword arguments:\n  * `time_limit`: the time limit (integer)\n  * `confl_limit`: the propagation limit (integer)\n  * `verbose`: the verbosity level (integer)\n\nBoth `time_limit` and `confl_limit` set a budget to the solver. The former is based on time elapsed while the former is based on number of conflicts met during search. If the solver runs out of budget, it returns with `(None, None)`. If both limits are used, the solver will terminate whenever one of the limits are hit (whichever first). Warning: Results from `time_limit` may differ from run to run, depending on compute load, etc. Use `confl_limit` for more reproducible runs.\n\n## Example\n\nLet us consider the following clauses, represented using\nthe DIMACS `cnf <http://en.wikipedia.org/wiki/Conjunctive_normal_form>`_\nformat::\n\n```\np cnf 5 3\n1 -5 4 0\n-1 5 3 4 0\n-3 -4 0\n```\n\nHere, we have 5 variables and 3 clauses, the first clause being\n(x\\ :sub:`1`  or not x\\ :sub:`5` or x\\ :sub:`4`).\nNote that the variable x\\ :sub:`2` is not used in any of the clauses,\nwhich means that for each solution with x\\ :sub:`2` = True, we must\nalso have a solution with x\\ :sub:`2` = False.  In Python, each clause is\nmost conveniently represented as a list of integers.  Naturally, it makes\nsense to represent each solution also as a list of integers, where the sign\ncorresponds to the Boolean value (+ for True and - for False) and the\nabsolute value corresponds to i\\ :sup:`th` variable::\n\n```\n>>> import pycryptosat\n>>> solver = pycryptosat.Solver()\n>>> solver.add_clause([1, -5, 4])\n>>> solver.add_clause([-1, 5, 3, 4])\n>>> solver.add_clause([-3, -4])\n>>> solver.solve()\n(True, (None, True, False, False, True, True))\n```\n\nThis solution translates to: x\\ :sub:`1` = x\\ :sub:`4` = x\\ :sub:`5` = True,\nx\\ :sub:`2` = x\\ :sub:`3` = False\n\n# Special options (e.g. LARGEMEM, etc)\n\nIn case you need to e.g. have LARGEMEM, you must modify `setup.py` and add `'-DLARGE_OFFSETS'` to `extra_compile_args`. Similarly for other options.\n",
    "bugtrack_url": null,
    "license": "Copyright (C) 2009-2020 Authors of CryptoMiniSat, see AUTHORS file All rights reserved.  The general priciple of the licensing is as follows. Everything that's needed to run/build/install/link the system is MIT licensed. This allows easy distribution and running of the system everywhere. Files that have no copyright header are also MIT licensed. Note that in case you compile with Bliss, then Bliss's GPL license affects the final executable and library.  Everything else that's not needed to run/build/install/link is usually GPLv2 licensed or compatible (see the copyright headers.) The only exceptions are the following files in docs/: * `splncs03.bat` which is under the LPPL * `ieee.cls` which is covered by the IEEE Copyright Policy   MIT License ===================  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.    GPL License v2 ===================  This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.  You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ",
    "summary": "Bindings to CryptoMiniSat, an advanced SAT solver",
    "version": "5.11.20",
    "project_urls": {
        "Homepage": "https://github.com/msoos/cryptominisat"
    },
    "split_keywords": [
        "sat",
        "cryptography"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5b934fda89fb0a6ead11c5e22908b8b4bd0ba5605dea1269359d3e68d629624",
                "md5": "4e02f36b7b46722ed9188ab0378b928b",
                "sha256": "82012acb470cecc8a689622806c0dc869af4ecbe69b2b8104e332d96c0c6fc9b"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e02f36b7b46722ed9188ab0378b928b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 779373,
            "upload_time": "2024-02-08T21:16:43",
            "upload_time_iso_8601": "2024-02-08T21:16:43.573408Z",
            "url": "https://files.pythonhosted.org/packages/f5/b9/34fda89fb0a6ead11c5e22908b8b4bd0ba5605dea1269359d3e68d629624/pycryptosat-5.11.20-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d469b814a74887da65a998b366e77b4516678400bcec664acf44a4433e22549",
                "md5": "f07f9fe470b689bc781d913f3f0986b1",
                "sha256": "74f4ae79719cf31fa2e5095e8ef21fbfb2a44645fd05cece375eb7d084457726"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f07f9fe470b689bc781d913f3f0986b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 9470589,
            "upload_time": "2024-02-08T21:12:13",
            "upload_time_iso_8601": "2024-02-08T21:12:13.457249Z",
            "url": "https://files.pythonhosted.org/packages/3d/46/9b814a74887da65a998b366e77b4516678400bcec664acf44a4433e22549/pycryptosat-5.11.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac6625b51935890b037960f38af7264cecbb1c9105f4ff30a2b11c9f3fb2dda0",
                "md5": "9b7d10ff8e052809f16a3d4fd1adc1d2",
                "sha256": "049d8bc6329f53854e213d9a0b5c399be32df97bec44a61f7f96483b564c1c41"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9b7d10ff8e052809f16a3d4fd1adc1d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 470189,
            "upload_time": "2024-02-08T21:10:28",
            "upload_time_iso_8601": "2024-02-08T21:10:28.633314Z",
            "url": "https://files.pythonhosted.org/packages/ac/66/25b51935890b037960f38af7264cecbb1c9105f4ff30a2b11c9f3fb2dda0/pycryptosat-5.11.20-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07078effb1f28d9382286ec5fced6d3abcee3aa675976be288b332ad4b8ab031",
                "md5": "2bc87a382f4ccc80cc03b5d32570f6e0",
                "sha256": "01ee761065453838281d68b6d92671d6f690dbcbb24a5e7dcaac40e0f5f866d3"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bc87a382f4ccc80cc03b5d32570f6e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 779394,
            "upload_time": "2024-02-08T21:16:45",
            "upload_time_iso_8601": "2024-02-08T21:16:45.824911Z",
            "url": "https://files.pythonhosted.org/packages/07/07/8effb1f28d9382286ec5fced6d3abcee3aa675976be288b332ad4b8ab031/pycryptosat-5.11.20-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a101a72068189a5d012d053313d04f2854b19a8773650de6231646425954fd2",
                "md5": "a86c90664dacba00c0e012ba46e57d8f",
                "sha256": "7eae7d7e94b36453c0e32c03392448f4159ff5f89f8f0e8bc8bd4a2d46241ad2"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a86c90664dacba00c0e012ba46e57d8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 9471637,
            "upload_time": "2024-02-08T21:12:16",
            "upload_time_iso_8601": "2024-02-08T21:12:16.403239Z",
            "url": "https://files.pythonhosted.org/packages/8a/10/1a72068189a5d012d053313d04f2854b19a8773650de6231646425954fd2/pycryptosat-5.11.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de32bc39874c7af6a03ee27d2b25c95f2a3bf27a601629ee0a2e9d8ed7ab8498",
                "md5": "76ba39b06b770c015d0de49a4d8a18a6",
                "sha256": "b9630bbc03648e5289bfe7274f92a77b588e7bea9a75ed6ed32a50723e8a5a0f"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "76ba39b06b770c015d0de49a4d8a18a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 470199,
            "upload_time": "2024-02-08T21:10:29",
            "upload_time_iso_8601": "2024-02-08T21:10:29.997171Z",
            "url": "https://files.pythonhosted.org/packages/de/32/bc39874c7af6a03ee27d2b25c95f2a3bf27a601629ee0a2e9d8ed7ab8498/pycryptosat-5.11.20-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31d525600434e296b048588e97f70d1122cc750f931f5f8cd8e01479bffb0d0d",
                "md5": "0ecc87d702c7077a582614272ac56919",
                "sha256": "b0edde5d77b6b80cfd1cb5dbca1a7cc3d518d0539454804d77bcb9627d25e3f4"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ecc87d702c7077a582614272ac56919",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 779529,
            "upload_time": "2024-02-08T21:16:47",
            "upload_time_iso_8601": "2024-02-08T21:16:47.765876Z",
            "url": "https://files.pythonhosted.org/packages/31/d5/25600434e296b048588e97f70d1122cc750f931f5f8cd8e01479bffb0d0d/pycryptosat-5.11.20-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b503db3989f59a215883eacf0189cce2397be198dbdcf7e3151114886efbb18d",
                "md5": "bbaf140ea2dc07c7de83a34d2baf0911",
                "sha256": "268a867b9862da9aa8115701a7958f56e71c40e70f77ac3f91b3508746c5b310"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbaf140ea2dc07c7de83a34d2baf0911",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 9472756,
            "upload_time": "2024-02-08T21:12:19",
            "upload_time_iso_8601": "2024-02-08T21:12:19.642105Z",
            "url": "https://files.pythonhosted.org/packages/b5/03/db3989f59a215883eacf0189cce2397be198dbdcf7e3151114886efbb18d/pycryptosat-5.11.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80d27cc54e3bb4ccb4d7fbe4bb27f10bec1ec20914ff74786a4632aff78b7a88",
                "md5": "74845e8c153b28cdeb7be1f01a8c47e3",
                "sha256": "979159c705db9719cf33a6014c31a0a66ed742217bfba386ade1188ea5edca94"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74845e8c153b28cdeb7be1f01a8c47e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 470366,
            "upload_time": "2024-02-08T21:10:31",
            "upload_time_iso_8601": "2024-02-08T21:10:31.614682Z",
            "url": "https://files.pythonhosted.org/packages/80/d2/7cc54e3bb4ccb4d7fbe4bb27f10bec1ec20914ff74786a4632aff78b7a88/pycryptosat-5.11.20-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba9cdf2020562f62dd9cf715df99541180fc0d5e3aa07b9f17179ebe564384b",
                "md5": "f9a9ea4fa5a076c698d5f3f2612361aa",
                "sha256": "4c19209d292a1a5dab952c81a0974640b0e61be5848639f199fdbd60993444a6"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9a9ea4fa5a076c698d5f3f2612361aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 778895,
            "upload_time": "2024-02-08T21:16:49",
            "upload_time_iso_8601": "2024-02-08T21:16:49.679822Z",
            "url": "https://files.pythonhosted.org/packages/2b/a9/cdf2020562f62dd9cf715df99541180fc0d5e3aa07b9f17179ebe564384b/pycryptosat-5.11.20-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c754162682129603e4c55e9e7776e27da915f88fcde3e4189e07c21f34a820e3",
                "md5": "ab9281ee38937dca09a9e045d0a7be8f",
                "sha256": "62c34abc12cfe6d4131df41405f7e3dd229d7ab628afc5cc8836c23e2f52c101"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab9281ee38937dca09a9e045d0a7be8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 9469858,
            "upload_time": "2024-02-08T21:12:22",
            "upload_time_iso_8601": "2024-02-08T21:12:22.925364Z",
            "url": "https://files.pythonhosted.org/packages/c7/54/162682129603e4c55e9e7776e27da915f88fcde3e4189e07c21f34a820e3/pycryptosat-5.11.20-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49af0faeeb2acb6d118a05fd6b3521164884d1ce32bfb93cc4cd150cd50b834f",
                "md5": "4bdb0ad8138cc58ac3a6e5d80caa7b6b",
                "sha256": "4f7080e1cebb9a067980771dd08a541cfdaf8a4817a5d3fe92181d30a43a8ede"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4bdb0ad8138cc58ac3a6e5d80caa7b6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 470388,
            "upload_time": "2024-02-08T21:10:32",
            "upload_time_iso_8601": "2024-02-08T21:10:32.838173Z",
            "url": "https://files.pythonhosted.org/packages/49/af/0faeeb2acb6d118a05fd6b3521164884d1ce32bfb93cc4cd150cd50b834f/pycryptosat-5.11.20-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b680437cfb69acafccb2d0234c0a5ba5af9484e59eb2cb71d16beae87bd8a81",
                "md5": "761e1ff520b707e9b9c17eb4d3abca6b",
                "sha256": "855258106a80012b99d6a0df0339185372b2462236630ab97111e78fe86f664b"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "761e1ff520b707e9b9c17eb4d3abca6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 779381,
            "upload_time": "2024-02-08T21:16:51",
            "upload_time_iso_8601": "2024-02-08T21:16:51.559212Z",
            "url": "https://files.pythonhosted.org/packages/8b/68/0437cfb69acafccb2d0234c0a5ba5af9484e59eb2cb71d16beae87bd8a81/pycryptosat-5.11.20-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e963ff5a5626d2390012d55f46d6c0a925dbd32bd64101e590e78c82a1a3fd2",
                "md5": "10e641aee6da0f183364cff4270c6313",
                "sha256": "4645269477965a476994ddfe2e30169869639f0bbd4588678f1f57314d2e47f7"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10e641aee6da0f183364cff4270c6313",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 9470001,
            "upload_time": "2024-02-08T21:12:26",
            "upload_time_iso_8601": "2024-02-08T21:12:26.146452Z",
            "url": "https://files.pythonhosted.org/packages/6e/96/3ff5a5626d2390012d55f46d6c0a925dbd32bd64101e590e78c82a1a3fd2/pycryptosat-5.11.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5212f6173a31e26bd5954fd57039d8b93b53f7459b297ddf579e28a05292cfa7",
                "md5": "71a059da9b58d6d8f17339944b09565e",
                "sha256": "992e873470484a0da9f376516a40a732208c33ee1a4d43b6bc1216e45760b2d7"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71a059da9b58d6d8f17339944b09565e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 470215,
            "upload_time": "2024-02-08T21:10:34",
            "upload_time_iso_8601": "2024-02-08T21:10:34.640494Z",
            "url": "https://files.pythonhosted.org/packages/52/12/f6173a31e26bd5954fd57039d8b93b53f7459b297ddf579e28a05292cfa7/pycryptosat-5.11.20-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29f73feac6b7992aba5d3ad4560a3f228467d9f953567357ed1d02295c33d278",
                "md5": "6b4ff411caa7c78fd033ad6a942ca885",
                "sha256": "0fe9102c474a7c03dbc3f59b7a684bb0aeb2288720324f551cbac1c188f014f3"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b4ff411caa7c78fd033ad6a942ca885",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 779395,
            "upload_time": "2024-02-08T21:16:53",
            "upload_time_iso_8601": "2024-02-08T21:16:53.336347Z",
            "url": "https://files.pythonhosted.org/packages/29/f7/3feac6b7992aba5d3ad4560a3f228467d9f953567357ed1d02295c33d278/pycryptosat-5.11.20-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15137e7f9fac00bf5ada690f6eeacb8a049a75def098dbd35e8ef808d4490413",
                "md5": "09ac922e6b416f088d0da9429cbbe2ca",
                "sha256": "6c0e72e4508f3583774f32df8579434bdbe4d133b70f3acb07a98099c9ecfc27"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09ac922e6b416f088d0da9429cbbe2ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 9470171,
            "upload_time": "2024-02-08T21:12:29",
            "upload_time_iso_8601": "2024-02-08T21:12:29.542649Z",
            "url": "https://files.pythonhosted.org/packages/15/13/7e7f9fac00bf5ada690f6eeacb8a049a75def098dbd35e8ef808d4490413/pycryptosat-5.11.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47c0fa7fd927cdfad94f3269d51dffbaad68d4486db45cdfe530799e6bc2cdf1",
                "md5": "f2ec8b1328b2cc812d5bda0aff653564",
                "sha256": "e5eeb16f7afbedfd7912dd563fa6f7f53d7c0608a67fcbe1fd61dac99fb8a9a1"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2ec8b1328b2cc812d5bda0aff653564",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 470191,
            "upload_time": "2024-02-08T21:10:36",
            "upload_time_iso_8601": "2024-02-08T21:10:36.474751Z",
            "url": "https://files.pythonhosted.org/packages/47/c0/fa7fd927cdfad94f3269d51dffbaad68d4486db45cdfe530799e6bc2cdf1/pycryptosat-5.11.20-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9748b15b35df576fb5033479908506c3092bdc3a76620fdec97dcc541c3c2b8",
                "md5": "4e6cc4ba44d47828ce4884ec795c8d7b",
                "sha256": "1de236864a4e0a35b2594d1ca7d21cabcf8fd71b9930ba1086ad0e3f99b4c302"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e6cc4ba44d47828ce4884ec795c8d7b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 705369,
            "upload_time": "2024-02-08T21:16:55",
            "upload_time_iso_8601": "2024-02-08T21:16:55.514106Z",
            "url": "https://files.pythonhosted.org/packages/a9/74/8b15b35df576fb5033479908506c3092bdc3a76620fdec97dcc541c3c2b8/pycryptosat-5.11.20-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "718bc97dad6d92732ce3f0ba67cb91b0283886bf9e81d434301c25e9ae1a3a24",
                "md5": "866973c6d0925d0dc2c5ca33e0a46974",
                "sha256": "6a84cbd160591adc0aaffc7bc707f5816ea2abd835bad11ed2130da8c24d67bd"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "866973c6d0925d0dc2c5ca33e0a46974",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 729045,
            "upload_time": "2024-02-08T21:12:32",
            "upload_time_iso_8601": "2024-02-08T21:12:32.185683Z",
            "url": "https://files.pythonhosted.org/packages/71/8b/c97dad6d92732ce3f0ba67cb91b0283886bf9e81d434301c25e9ae1a3a24/pycryptosat-5.11.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6581daea6f837ca96900ed22db40a96db4b98808cb4c16445e7498518d0dc717",
                "md5": "c00ca5447733958442186317e58a8bb8",
                "sha256": "10bcf68e7e71e78f23258f37a7a077668ad3808148fb52f4231b69da268d1a7d"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c00ca5447733958442186317e58a8bb8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 470431,
            "upload_time": "2024-02-08T21:10:38",
            "upload_time_iso_8601": "2024-02-08T21:10:38.350785Z",
            "url": "https://files.pythonhosted.org/packages/65/81/daea6f837ca96900ed22db40a96db4b98808cb4c16445e7498518d0dc717/pycryptosat-5.11.20-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a906e07aaf797a3e133ea362dbbfd571d3982057c10cf11986ec6ae703ef23a",
                "md5": "55768948069b0ead81adf2e690727cdd",
                "sha256": "9a0b7534200dd8af385b010347a22ea8df353c15f042642a21300d4a20346b80"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55768948069b0ead81adf2e690727cdd",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 705372,
            "upload_time": "2024-02-08T21:16:57",
            "upload_time_iso_8601": "2024-02-08T21:16:57.354159Z",
            "url": "https://files.pythonhosted.org/packages/8a/90/6e07aaf797a3e133ea362dbbfd571d3982057c10cf11986ec6ae703ef23a/pycryptosat-5.11.20-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f7fac1791823b1c34d07a674a7d6453d5bcc1da4b8ab160658b35a8e693d189",
                "md5": "0352f05db832c38d064dc4b78a3074c5",
                "sha256": "b7b22051b91fad80b933b8d8a2cd50c108e6eaad5bfca261642c5d0f53d2414a"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0352f05db832c38d064dc4b78a3074c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 743868,
            "upload_time": "2024-02-08T21:12:34",
            "upload_time_iso_8601": "2024-02-08T21:12:34.350615Z",
            "url": "https://files.pythonhosted.org/packages/2f/7f/ac1791823b1c34d07a674a7d6453d5bcc1da4b8ab160658b35a8e693d189/pycryptosat-5.11.20-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7caa598cd74be1352e73a604524601f27bc4967ea7c631d67ec62173aea3ddea",
                "md5": "33a2367ee37f8788869ac949f027c0e5",
                "sha256": "c42dc5a8f03f2c0e51689a06b0b766afe0300505b9b7cc28f6369287de9ef64d"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33a2367ee37f8788869ac949f027c0e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 470435,
            "upload_time": "2024-02-08T21:10:39",
            "upload_time_iso_8601": "2024-02-08T21:10:39.725092Z",
            "url": "https://files.pythonhosted.org/packages/7c/aa/598cd74be1352e73a604524601f27bc4967ea7c631d67ec62173aea3ddea/pycryptosat-5.11.20-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e35519c6ab622cc319d2bda8659ca28c64557bfebd69251027b8227ab82191c",
                "md5": "215d3c496bf97930cd2dda20a6fa5410",
                "sha256": "5557764a451476dc71c79be343f1d4346fd77fd7fa1502ff0addd8f79ec8f319"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "215d3c496bf97930cd2dda20a6fa5410",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 705374,
            "upload_time": "2024-02-08T21:16:59",
            "upload_time_iso_8601": "2024-02-08T21:16:59.271331Z",
            "url": "https://files.pythonhosted.org/packages/5e/35/519c6ab622cc319d2bda8659ca28c64557bfebd69251027b8227ab82191c/pycryptosat-5.11.20-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05fe8939b93c492eda73462581da6dcc07a7808be115c039c229884d43f74fb1",
                "md5": "bc80074323d87fbbf134c4ef5ab214c2",
                "sha256": "5bcec473b85d052fc8ec9603596f824dd7ee17f4e43625468c760c790825193c"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc80074323d87fbbf134c4ef5ab214c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 729106,
            "upload_time": "2024-02-08T21:12:36",
            "upload_time_iso_8601": "2024-02-08T21:12:36.621291Z",
            "url": "https://files.pythonhosted.org/packages/05/fe/8939b93c492eda73462581da6dcc07a7808be115c039c229884d43f74fb1/pycryptosat-5.11.20-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4af5e788639cf5d47203f3ea70143f7e40251f1e53047086d6e7aee06eee38f3",
                "md5": "6c18bb8225bcdf4b96a744bf3ac84eff",
                "sha256": "132aec433050e9329ba424ba592cdcdcb68dc7a6cdc13cbc30c3d06cdb9292b8"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6c18bb8225bcdf4b96a744bf3ac84eff",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 470434,
            "upload_time": "2024-02-08T21:10:40",
            "upload_time_iso_8601": "2024-02-08T21:10:40.962222Z",
            "url": "https://files.pythonhosted.org/packages/4a/f5/e788639cf5d47203f3ea70143f7e40251f1e53047086d6e7aee06eee38f3/pycryptosat-5.11.20-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3801c040f9a7c9c5fe622594fc933638d901feee97690213c470815d085e74a",
                "md5": "06ce0d2c1f80077327f87b7de29947b4",
                "sha256": "90f7ae21a779d697dab7a07654855876ecff2089ef3a3ace16b8db9337062ad9"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06ce0d2c1f80077327f87b7de29947b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 705373,
            "upload_time": "2024-02-08T21:17:00",
            "upload_time_iso_8601": "2024-02-08T21:17:00.839733Z",
            "url": "https://files.pythonhosted.org/packages/a3/80/1c040f9a7c9c5fe622594fc933638d901feee97690213c470815d085e74a/pycryptosat-5.11.20-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33902f2ac022ffff5c9a69b44923e41605068e54a71b48db4fc4369f9801e746",
                "md5": "aaf041476712481a905a9a2bb2fceaa4",
                "sha256": "d78c4ca1a6b9bc0db2b694e57362b40b0c574aa9047e942d908cbaebaaa10d6f"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaf041476712481a905a9a2bb2fceaa4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 729039,
            "upload_time": "2024-02-08T21:12:38",
            "upload_time_iso_8601": "2024-02-08T21:12:38.805982Z",
            "url": "https://files.pythonhosted.org/packages/33/90/2f2ac022ffff5c9a69b44923e41605068e54a71b48db4fc4369f9801e746/pycryptosat-5.11.20-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9608a5e7dbf1650d2d6a66c2aced212ec4fffdfa21becdd63a306f70b3bd2dad",
                "md5": "31033b4b09c74aa2bf7f3a441ecfdfb5",
                "sha256": "26ef7aaa267889d6f2d9ce3e65732fd35ca9db84ee00526c62981db04ea926ab"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31033b4b09c74aa2bf7f3a441ecfdfb5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 470427,
            "upload_time": "2024-02-08T21:10:42",
            "upload_time_iso_8601": "2024-02-08T21:10:42.706019Z",
            "url": "https://files.pythonhosted.org/packages/96/08/a5e7dbf1650d2d6a66c2aced212ec4fffdfa21becdd63a306f70b3bd2dad/pycryptosat-5.11.20-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e2f31eabe588fd2b868d28486043498ec8def7ac0455a7f2f6214f7cffd652c",
                "md5": "49626de04245a4c025a321476928154a",
                "sha256": "43095951d72c240f565741b4763d85ad7f696e69ac891b9badd2242ff25f3a0a"
            },
            "downloads": -1,
            "filename": "pycryptosat-5.11.20.tar.gz",
            "has_sig": false,
            "md5_digest": "49626de04245a4c025a321476928154a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 426806,
            "upload_time": "2024-02-08T21:04:42",
            "upload_time_iso_8601": "2024-02-08T21:04:42.021812Z",
            "url": "https://files.pythonhosted.org/packages/2e/2f/31eabe588fd2b868d28486043498ec8def7ac0455a7f2f6214f7cffd652c/pycryptosat-5.11.20.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-08 21:04:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "msoos",
    "github_project": "cryptominisat",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pycryptosat"
}
        
Elapsed time: 0.20439s