sqlcipher3-wheels


Namesqlcipher3-wheels JSON
Version 0.5.2.post0 PyPI version JSON
download
home_page
SummaryDB-API 2.0 interface for SQLCipher 3.x
upload_time2024-02-25 09:16:34
maintainer
docs_urlNone
author
requires_python
licensezlib/libpng
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            sqlcipher3
==========

*NOTICE*: This is a fork of [sqlcipher3](https://github.com/coleifer/sqlcipher3)
which adds github action for creating wheels for Windows, MacOS and Linux.
The unofficial wheels from this fork are uploaded to `sqlcipher3-wheels` on pypi,
while the official wheels are `sqlcipher3-binary`.
To install openssl easily, conan is used. I made some reference with
[this fork of pysqlite3 by Dobatymo](https://github.com/Dobatymo/pysqlite3)

*NOTICE*: To build from this fork, copy `sqlite3.c` and `sqlite3.h`
to `src/sqlcipher`, then run `pip wheel .` or `python -m build .`

*NOTICE*: The wheels are built with sqlcipher version 4. You have to execute
`PRAGMA cipher_compatibility = 3` before doing any operations on a database
encrypted with SQLCipher version 3 when a newer version is installed.
Keep in mind, you have to add `PRAGMA cipher_compatibility` after `PRAGMA key`:

```python
from sqlcipher3 import dbapi2 as sqlite
conn = sqlite.connect('test.db')
c = conn.cursor()
c.execute("PRAGMA key='password'")
c.execute("PRAGMA cipher_compatibility = 3")
c.execute('''create table stocks (date text, trans text, symbol text, qty real, price real)''')
c.execute("""insert into stocks values ('2006-01-05','BUY','RHAT',100,35.14)""")
conn.commit()
c.close()
```

This library takes [pysqlite3](https://github.com/coleifer/pysqlite3) and makes
some small modifications so it is suitable for use with
[sqlcipher](https://github.com/sqlcipher/sqlcipher) (sqlite with encryption).

Additional features:

* User-defined window functions (requires SQLite >= 3.25)
* Flags and VFS an be specified when opening connection
* Incremental BLOB I/O, [bpo-24905](https://github.com/python/cpython/pull/271)
* Improved error messages, [bpo-16379](https://github.com/python/cpython/pull/1108)
* Simplified detection of DML statements via `sqlite3_stmt_readonly`.
* Sqlite native backup API (also present in standard library 3.7 and newer).

A completely self-contained binary package (wheel) is available for versions
0.4.0 and newer as `sqlcipher3-binary`. This package contains the latest
release of sqlcipher compiled with numerous extensions, and requires no
external dependencies.

Building with System SQLCipher
------------------------------

To build `sqlcipher3` linked against the system SQLCipher, run:

```
$ python setup.py build
```

Building a statically-linked library
------------------------------------

To build `sqlcipher3` statically-linked against a particular version of
SQLCipher, you need to obtain the SQLCipher source code and copy `sqlite3.c`
and `sqlite3.h` into the source tree.

```
# Download the latest version of SQLCipher source code and build the source
# amalgamation files (sqlite3.c and sqlite3.h).
$ git clone https://github.com/sqlcipher/sqlcipher
$ cd sqlcipher/
$ ./configure
$ make sqlite3.c

# Copy the sqlcipher amalgamation files into the root of the sqlcipher3
# checkout and run build_static + build:
$ cp sqlcipher/sqlite3.[ch] sqlcipher3/
$ cd sqlcipher3
$ python setup.py build_static build
```

You now have a statically-linked, completely self-contained `sqlcipher3`.

Using the binary package
------------------------

A binary package (wheel) is available for linux with a completely
self-contained  `sqlcipher3`, statically-linked against the most recent release
of sqlcipher.

```
$ pip install sqlcipher3-binary
```


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sqlcipher3-wheels",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Charles Leifer <coleifer@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/2a/89/5435034db62e62fbe3148b477325840c76d7093205063224a343d1997248/sqlcipher3-wheels-0.5.2.post0.tar.gz",
    "platform": null,
    "description": "sqlcipher3\n==========\n\n*NOTICE*: This is a fork of [sqlcipher3](https://github.com/coleifer/sqlcipher3)\nwhich adds github action for creating wheels for Windows, MacOS and Linux.\nThe unofficial wheels from this fork are uploaded to `sqlcipher3-wheels` on pypi,\nwhile the official wheels are `sqlcipher3-binary`.\nTo install openssl easily, conan is used. I made some reference with\n[this fork of pysqlite3 by Dobatymo](https://github.com/Dobatymo/pysqlite3)\n\n*NOTICE*: To build from this fork, copy `sqlite3.c` and `sqlite3.h`\nto `src/sqlcipher`, then run `pip wheel .` or `python -m build .`\n\n*NOTICE*: The wheels are built with sqlcipher version 4. You have to execute\n`PRAGMA cipher_compatibility = 3` before doing any operations on a database\nencrypted with SQLCipher version 3 when a newer version is installed.\nKeep in mind, you have to add `PRAGMA cipher_compatibility` after `PRAGMA key`:\n\n```python\nfrom sqlcipher3 import dbapi2 as sqlite\nconn = sqlite.connect('test.db')\nc = conn.cursor()\nc.execute(\"PRAGMA key='password'\")\nc.execute(\"PRAGMA cipher_compatibility = 3\")\nc.execute('''create table stocks (date text, trans text, symbol text, qty real, price real)''')\nc.execute(\"\"\"insert into stocks values ('2006-01-05','BUY','RHAT',100,35.14)\"\"\")\nconn.commit()\nc.close()\n```\n\nThis library takes [pysqlite3](https://github.com/coleifer/pysqlite3) and makes\nsome small modifications so it is suitable for use with\n[sqlcipher](https://github.com/sqlcipher/sqlcipher) (sqlite with encryption).\n\nAdditional features:\n\n* User-defined window functions (requires SQLite >= 3.25)\n* Flags and VFS an be specified when opening connection\n* Incremental BLOB I/O, [bpo-24905](https://github.com/python/cpython/pull/271)\n* Improved error messages, [bpo-16379](https://github.com/python/cpython/pull/1108)\n* Simplified detection of DML statements via `sqlite3_stmt_readonly`.\n* Sqlite native backup API (also present in standard library 3.7 and newer).\n\nA completely self-contained binary package (wheel) is available for versions\n0.4.0 and newer as `sqlcipher3-binary`. This package contains the latest\nrelease of sqlcipher compiled with numerous extensions, and requires no\nexternal dependencies.\n\nBuilding with System SQLCipher\n------------------------------\n\nTo build `sqlcipher3` linked against the system SQLCipher, run:\n\n```\n$ python setup.py build\n```\n\nBuilding a statically-linked library\n------------------------------------\n\nTo build `sqlcipher3` statically-linked against a particular version of\nSQLCipher, you need to obtain the SQLCipher source code and copy `sqlite3.c`\nand `sqlite3.h` into the source tree.\n\n```\n# Download the latest version of SQLCipher source code and build the source\n# amalgamation files (sqlite3.c and sqlite3.h).\n$ git clone https://github.com/sqlcipher/sqlcipher\n$ cd sqlcipher/\n$ ./configure\n$ make sqlite3.c\n\n# Copy the sqlcipher amalgamation files into the root of the sqlcipher3\n# checkout and run build_static + build:\n$ cp sqlcipher/sqlite3.[ch] sqlcipher3/\n$ cd sqlcipher3\n$ python setup.py build_static build\n```\n\nYou now have a statically-linked, completely self-contained `sqlcipher3`.\n\nUsing the binary package\n------------------------\n\nA binary package (wheel) is available for linux with a completely\nself-contained  `sqlcipher3`, statically-linked against the most recent release\nof sqlcipher.\n\n```\n$ pip install sqlcipher3-binary\n```\n\n",
    "bugtrack_url": null,
    "license": "zlib/libpng",
    "summary": "DB-API 2.0 interface for SQLCipher 3.x",
    "version": "0.5.2.post0",
    "project_urls": {
        "homepage": "https://github.com/laggykiller/sqlcipher3"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6be286067af78b36b64e2aa2903eed0dbf2549fc9b348c9a7bd995db7692e721",
                "md5": "f2148edde6fbdac14d0e61b52734fd20",
                "sha256": "2f8557495a5d71a1cbf8f96647d16c846d79d55284d09637c422af90ce931a10"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f2148edde6fbdac14d0e61b52734fd20",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2624879,
            "upload_time": "2024-02-25T09:13:29",
            "upload_time_iso_8601": "2024-02-25T09:13:29.336830Z",
            "url": "https://files.pythonhosted.org/packages/6b/e2/86067af78b36b64e2aa2903eed0dbf2549fc9b348c9a7bd995db7692e721/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b2da279f2dce080f89e13160a51992b0f13a9aa2aced6c3a1b08570cc5a0cdb",
                "md5": "f00d8cae2829fad0559087b5c1e55aaf",
                "sha256": "134e205a7a82915fb0590b42f38caa0a098cf3599522847cce31213fc9d79f80"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f00d8cae2829fad0559087b5c1e55aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1905838,
            "upload_time": "2024-02-25T09:13:31",
            "upload_time_iso_8601": "2024-02-25T09:13:31.667890Z",
            "url": "https://files.pythonhosted.org/packages/0b/2d/a279f2dce080f89e13160a51992b0f13a9aa2aced6c3a1b08570cc5a0cdb/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49967624d2951387ee520eae4f7347384cb72b8cf919ab00cc7c8bf394434c1a",
                "md5": "bf814a4984acb3ef925f90c00635c540",
                "sha256": "19a32724d74d4f67f544c94364b13b55446ef7ae69e832d433886305872d185f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bf814a4984acb3ef925f90c00635c540",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1724865,
            "upload_time": "2024-02-25T09:13:33",
            "upload_time_iso_8601": "2024-02-25T09:13:33.719112Z",
            "url": "https://files.pythonhosted.org/packages/49/96/7624d2951387ee520eae4f7347384cb72b8cf919ab00cc7c8bf394434c1a/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d07d971a274bca72a8cb5783e3b2c4c42b07ee343858b9bac276064abc7d372d",
                "md5": "413d59882af05af2a69d7b4bb0cc6161",
                "sha256": "781733843b2863be03b1ab14f9acbc57e60eaedb11c339c95eea0309631ee04a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "413d59882af05af2a69d7b4bb0cc6161",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4409425,
            "upload_time": "2024-02-25T09:13:35",
            "upload_time_iso_8601": "2024-02-25T09:13:35.744199Z",
            "url": "https://files.pythonhosted.org/packages/d0/7d/971a274bca72a8cb5783e3b2c4c42b07ee343858b9bac276064abc7d372d/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27a6d2b4e1284ac7a8f405b7bf979c720898c114e410e461e2c71aaf1834b5a1",
                "md5": "8d5e6afca02486aedbad5957a1414d3c",
                "sha256": "db6fc0e8503e7274b6a32834abcc9dad741726e099ca51d5c1e29133b3e32833"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8d5e6afca02486aedbad5957a1414d3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4487051,
            "upload_time": "2024-02-25T09:13:37",
            "upload_time_iso_8601": "2024-02-25T09:13:37.861046Z",
            "url": "https://files.pythonhosted.org/packages/27/a6/d2b4e1284ac7a8f405b7bf979c720898c114e410e461e2c71aaf1834b5a1/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0a70aa83fe51cd81df609aeee07c432ad108a0ffa96885f0b96dc4345ee237",
                "md5": "d1603f71d86d9aabac36efb2f1153013",
                "sha256": "3ba024f8fa034a36e104ffbe24082b460eb35448869f4b539ebd839d6589d9c6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d1603f71d86d9aabac36efb2f1153013",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4790537,
            "upload_time": "2024-02-25T09:13:40",
            "upload_time_iso_8601": "2024-02-25T09:13:40.355646Z",
            "url": "https://files.pythonhosted.org/packages/8e/0a/70aa83fe51cd81df609aeee07c432ad108a0ffa96885f0b96dc4345ee237/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96972c14038fac38ca1bb9f3904a24c4ce5cdee87bc354b7782816d9ccd2ff9c",
                "md5": "f7ad523958a6d7dd28c0e98aab3931ae",
                "sha256": "90a6726da7591a369a6b6cc1af798cde350f47726e48ac1e0d5320f8b306fd97"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f7ad523958a6d7dd28c0e98aab3931ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4441500,
            "upload_time": "2024-02-25T09:13:42",
            "upload_time_iso_8601": "2024-02-25T09:13:42.772806Z",
            "url": "https://files.pythonhosted.org/packages/96/97/2c14038fac38ca1bb9f3904a24c4ce5cdee87bc354b7782816d9ccd2ff9c/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f51bac364bcbbd893923011f54e07c429789a386a5f1ab362c414a803bafc39e",
                "md5": "08dfa29413bf38c577ca0c8d63def625",
                "sha256": "47c9a542e620e111da78235942256043c7d38199bd4710738eb18bfa72a45f96"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08dfa29413bf38c577ca0c8d63def625",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4550632,
            "upload_time": "2024-02-25T09:13:44",
            "upload_time_iso_8601": "2024-02-25T09:13:44.907058Z",
            "url": "https://files.pythonhosted.org/packages/f5/1b/ac364bcbbd893923011f54e07c429789a386a5f1ab362c414a803bafc39e/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9209c21a71ce4c60d95e5cb0e8b176e4f9f6d908b7792c2e14477502b102ce12",
                "md5": "f816e8c30c763aecb3655830f53fd05a",
                "sha256": "6ba9f076a827877480abb06705e84350a46865b87d12d64dd075d678a12286c3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f816e8c30c763aecb3655830f53fd05a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4400530,
            "upload_time": "2024-02-25T09:13:47",
            "upload_time_iso_8601": "2024-02-25T09:13:47.253557Z",
            "url": "https://files.pythonhosted.org/packages/92/09/c21a71ce4c60d95e5cb0e8b176e4f9f6d908b7792c2e14477502b102ce12/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef5d9b8978ae4a084428c383e7686309ed1bf60dff734d515dad028f273042a5",
                "md5": "86dab8f0c53c548dd89b0e1ad844b05b",
                "sha256": "893e3aa6746b517748e9deb61570b2f70ce194858eb3ed9635ee6928c856b72a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "86dab8f0c53c548dd89b0e1ad844b05b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4461210,
            "upload_time": "2024-02-25T09:13:49",
            "upload_time_iso_8601": "2024-02-25T09:13:49.197020Z",
            "url": "https://files.pythonhosted.org/packages/ef/5d/9b8978ae4a084428c383e7686309ed1bf60dff734d515dad028f273042a5/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0599d5bfa40b6e2237d6334b2dcc49c7c479a42b2be919c1a7845f42b716c2bc",
                "md5": "5db268a34425f387a864d0b4348ee871",
                "sha256": "fee80b2023a32e19d3f9975a714eb1de7a0e646b0277a440191e7b65d2b4bf52"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5db268a34425f387a864d0b4348ee871",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4752215,
            "upload_time": "2024-02-25T09:13:51",
            "upload_time_iso_8601": "2024-02-25T09:13:51.470890Z",
            "url": "https://files.pythonhosted.org/packages/05/99/d5bfa40b6e2237d6334b2dcc49c7c479a42b2be919c1a7845f42b716c2bc/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "542525441a1c9ca4c9a64261fccbf8cc76ac409a80cb8e1ce91f4f9c690169ce",
                "md5": "81a55509723232c63a101ff1de6dc514",
                "sha256": "652e7782a12ba81c37dfbd4ab4e41eef44f1289a8850176e5f51ea6cdfb2db6d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "81a55509723232c63a101ff1de6dc514",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4406294,
            "upload_time": "2024-02-25T09:13:53",
            "upload_time_iso_8601": "2024-02-25T09:13:53.391604Z",
            "url": "https://files.pythonhosted.org/packages/54/25/25441a1c9ca4c9a64261fccbf8cc76ac409a80cb8e1ce91f4f9c690169ce/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9777879b66ea841f87c1faf58241d8f9f349198a5e9288187b3ae0d8d7711209",
                "md5": "a802ad4b4fd0d07aad2c4b9bef9f67d0",
                "sha256": "1f83df2cc87c1e76222a7584a6e68039989bd36c64f736f4cd318a502473bac5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a802ad4b4fd0d07aad2c4b9bef9f67d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4531190,
            "upload_time": "2024-02-25T09:13:54",
            "upload_time_iso_8601": "2024-02-25T09:13:54.791834Z",
            "url": "https://files.pythonhosted.org/packages/97/77/879b66ea841f87c1faf58241d8f9f349198a5e9288187b3ae0d8d7711209/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cec2fcd39ac81de2701af55fc1c2f7e8456aad9f15289078818c335b94f570d7",
                "md5": "513e1387c28540db0307d9c12a62594b",
                "sha256": "f93a6fd11ca88a340a618161431fa4dba3bc7614cc36fd617839812b01ed6e3a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "513e1387c28540db0307d9c12a62594b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1308847,
            "upload_time": "2024-02-25T09:13:56",
            "upload_time_iso_8601": "2024-02-25T09:13:56.147058Z",
            "url": "https://files.pythonhosted.org/packages/ce/c2/fcd39ac81de2701af55fc1c2f7e8456aad9f15289078818c335b94f570d7/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "951be9255f444fedebad0412b9846d80395f613c55a63bfc19f8a38a8fd85d26",
                "md5": "e367730b0c596379fe4b74cce53f3d09",
                "sha256": "70f6b1b5f99a951e5e203fa41040f27199912bd460690519f93dde2a3018ef5c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e367730b0c596379fe4b74cce53f3d09",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1550423,
            "upload_time": "2024-02-25T09:13:58",
            "upload_time_iso_8601": "2024-02-25T09:13:58.200828Z",
            "url": "https://files.pythonhosted.org/packages/95/1b/e9255f444fedebad0412b9846d80395f613c55a63bfc19f8a38a8fd85d26/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "474c0a09178ec21e346e668bc9e7d302883f256b8c64b36f051418da4322de07",
                "md5": "46dab6138f72797c8b5af2f8d5337845",
                "sha256": "4e1b80ef9a099ebdf785c4aeb2f71adc8326b36734c9b37d3e5de35792aa6d7b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "46dab6138f72797c8b5af2f8d5337845",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1158985,
            "upload_time": "2024-02-25T09:13:59",
            "upload_time_iso_8601": "2024-02-25T09:13:59.419464Z",
            "url": "https://files.pythonhosted.org/packages/47/4c/0a09178ec21e346e668bc9e7d302883f256b8c64b36f051418da4322de07/sqlcipher3_wheels-0.5.2.post0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f8d61b28b817c8eb252bcca09153130cfd837b103fb1d8ccfbccd86ee6f41c3",
                "md5": "41843925d0121de12488adf6175a2acb",
                "sha256": "867dc0f791c7e3599a46e3e7667e8c773722e959243c076ecf1879502e5e065e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "41843925d0121de12488adf6175a2acb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2624961,
            "upload_time": "2024-02-25T09:14:01",
            "upload_time_iso_8601": "2024-02-25T09:14:01.063943Z",
            "url": "https://files.pythonhosted.org/packages/6f/8d/61b28b817c8eb252bcca09153130cfd837b103fb1d8ccfbccd86ee6f41c3/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d10299eb6b33d458fd728539cfc657f575b58e1ff9d33afee9355911a5e89951",
                "md5": "cb9e9b567ca8163c6fa95180aaf7cd6f",
                "sha256": "e8ba9fc12501c609143086b114cc1c38a0e99bbf7ae8587713da46567eda499a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb9e9b567ca8163c6fa95180aaf7cd6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1905870,
            "upload_time": "2024-02-25T09:14:02",
            "upload_time_iso_8601": "2024-02-25T09:14:02.971388Z",
            "url": "https://files.pythonhosted.org/packages/d1/02/99eb6b33d458fd728539cfc657f575b58e1ff9d33afee9355911a5e89951/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba92f6e5546414435b0129221255f654789cb07803394a838284d32ab7748f55",
                "md5": "b9f288d1a83d0a0799fc55041d8bfec3",
                "sha256": "4c5c3ea8540ad010cf64fec65307b94c55f8635b978e35284d5dcd3e19cc6c4f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b9f288d1a83d0a0799fc55041d8bfec3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1724900,
            "upload_time": "2024-02-25T09:14:04",
            "upload_time_iso_8601": "2024-02-25T09:14:04.438113Z",
            "url": "https://files.pythonhosted.org/packages/ba/92/f6e5546414435b0129221255f654789cb07803394a838284d32ab7748f55/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e77a3bbee714f13109b60e09af22efcf0681d32c8449663ee30312ae7ed2215",
                "md5": "126163ba4a37edea30b64726328dffd8",
                "sha256": "166a63db4e462f0d6e7b1c1e99e34df01b2acea8bbf031a45605a724835b2184"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "126163ba4a37edea30b64726328dffd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4418619,
            "upload_time": "2024-02-25T09:14:05",
            "upload_time_iso_8601": "2024-02-25T09:14:05.852973Z",
            "url": "https://files.pythonhosted.org/packages/1e/77/a3bbee714f13109b60e09af22efcf0681d32c8449663ee30312ae7ed2215/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "890efe8f4c8ac7178596a04b5b3f1c1b8eded1d732443b1092bfe6dd468d3bc8",
                "md5": "5f3c04b9e52ca3b9d43422dc5514047d",
                "sha256": "c21ae3e5b963a61741e862b0039829cfc58e1559b331d61724655321d9db2542"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f3c04b9e52ca3b9d43422dc5514047d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4495066,
            "upload_time": "2024-02-25T09:14:07",
            "upload_time_iso_8601": "2024-02-25T09:14:07.440453Z",
            "url": "https://files.pythonhosted.org/packages/89/0e/fe8f4c8ac7178596a04b5b3f1c1b8eded1d732443b1092bfe6dd468d3bc8/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0038668820b3dbca59f95911f82854be633e9edfcfa96c23e65c314ccba90e0f",
                "md5": "ada774a081a06bbcaa1bafc2ae8d6ca7",
                "sha256": "617d8da17a31129758f31275641ec00e8027e6c0b58a58dbb68ad968bee81994"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ada774a081a06bbcaa1bafc2ae8d6ca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4798575,
            "upload_time": "2024-02-25T09:14:09",
            "upload_time_iso_8601": "2024-02-25T09:14:09.786069Z",
            "url": "https://files.pythonhosted.org/packages/00/38/668820b3dbca59f95911f82854be633e9edfcfa96c23e65c314ccba90e0f/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b74897940aa6fd655b6ef8796bfbfdbad9b2029f2c87a0236540db1eed8f973",
                "md5": "e460527732877ca3c03862934fcc3f2e",
                "sha256": "b1017c5a97282c0e7d763dd09c62bfa41fec364640ad0c12c0c829b9da65eff3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e460527732877ca3c03862934fcc3f2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4451290,
            "upload_time": "2024-02-25T09:14:11",
            "upload_time_iso_8601": "2024-02-25T09:14:11.243532Z",
            "url": "https://files.pythonhosted.org/packages/6b/74/897940aa6fd655b6ef8796bfbfdbad9b2029f2c87a0236540db1eed8f973/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b93aacc347d0d28d305a44ed7d1d04278b467ee1ad5b0c234b7b2dd45b2e0cb5",
                "md5": "3a50fd4bf5e479be4ff73d5910d3cf1e",
                "sha256": "f5b40783be22da876aede5a5c1cb1e13c0ba64ba85618092dfce29b6e55be604"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a50fd4bf5e479be4ff73d5910d3cf1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4559872,
            "upload_time": "2024-02-25T09:14:12",
            "upload_time_iso_8601": "2024-02-25T09:14:12.798378Z",
            "url": "https://files.pythonhosted.org/packages/b9/3a/acc347d0d28d305a44ed7d1d04278b467ee1ad5b0c234b7b2dd45b2e0cb5/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8361c2635d67ce40e878473918eb9739085c36d70588d9cec616c23fe3301b3",
                "md5": "79bec21fd9c3487489f45163e1808940",
                "sha256": "f8a282fc94b749da6ea864698d9e072943c826254f00a545df3544ca8262ed4a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79bec21fd9c3487489f45163e1808940",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4413569,
            "upload_time": "2024-02-25T09:14:14",
            "upload_time_iso_8601": "2024-02-25T09:14:14.381404Z",
            "url": "https://files.pythonhosted.org/packages/f8/36/1c2635d67ce40e878473918eb9739085c36d70588d9cec616c23fe3301b3/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfa39cbc99f3b0e20255fbe4d375b34b6bec100c9f24476f2a8893c47618177e",
                "md5": "0d756b4877ec5528db2e074461e38314",
                "sha256": "6ea98a88613d9079037e4d3bc9e3e52c84fe018b9f2ad9b4250feb6df962329f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0d756b4877ec5528db2e074461e38314",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4476461,
            "upload_time": "2024-02-25T09:14:16",
            "upload_time_iso_8601": "2024-02-25T09:14:16.000033Z",
            "url": "https://files.pythonhosted.org/packages/df/a3/9cbc99f3b0e20255fbe4d375b34b6bec100c9f24476f2a8893c47618177e/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d1fc0d9bb11bf902b6397ccddeba51b7db75e80aecaf77b9a56cc53c14a4572",
                "md5": "2c08aa92d1b635c54f5819e324d68a37",
                "sha256": "b08df70dfcddac166341680811285d2db36d56788df6afba1ca1016a9b17b852"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2c08aa92d1b635c54f5819e324d68a37",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4767517,
            "upload_time": "2024-02-25T09:14:17",
            "upload_time_iso_8601": "2024-02-25T09:14:17.790090Z",
            "url": "https://files.pythonhosted.org/packages/1d/1f/c0d9bb11bf902b6397ccddeba51b7db75e80aecaf77b9a56cc53c14a4572/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11432b299634c137568b2b702205f4e1488b11c526b2b3e99d9dc8ce8a075a82",
                "md5": "e8879ad7522e55daf3714b02674d1cff",
                "sha256": "f4d62cc4b89e94f963f62120a852e67e5ca4c4a23d32c54efcd0700a34c4b8be"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "e8879ad7522e55daf3714b02674d1cff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4421372,
            "upload_time": "2024-02-25T09:14:19",
            "upload_time_iso_8601": "2024-02-25T09:14:19.611316Z",
            "url": "https://files.pythonhosted.org/packages/11/43/2b299634c137568b2b702205f4e1488b11c526b2b3e99d9dc8ce8a075a82/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3669464c7c0cea60ff4233c32b2f7b8cbaadb1312f7daf06658d723ba47ceddd",
                "md5": "bbf0ebeb544620696c15a88aa33e56f3",
                "sha256": "db79fc80e56bc44ea020b8742897aaa9d12f2da71097101989470e054acd04b6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbf0ebeb544620696c15a88aa33e56f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4548142,
            "upload_time": "2024-02-25T09:14:21",
            "upload_time_iso_8601": "2024-02-25T09:14:21.919542Z",
            "url": "https://files.pythonhosted.org/packages/36/69/464c7c0cea60ff4233c32b2f7b8cbaadb1312f7daf06658d723ba47ceddd/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "682f8889d7fbd5a2df81138473261c58e083161f3ee5e46dfc92ed167c34eb10",
                "md5": "b15fffdabf871419e2169bc18a060e4b",
                "sha256": "a006f7560d1e21ffcb6aaaa5d47a3a307160101f9ca27342e2733a0083d661bc"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b15fffdabf871419e2169bc18a060e4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1308970,
            "upload_time": "2024-02-25T09:14:24",
            "upload_time_iso_8601": "2024-02-25T09:14:24.184768Z",
            "url": "https://files.pythonhosted.org/packages/68/2f/8889d7fbd5a2df81138473261c58e083161f3ee5e46dfc92ed167c34eb10/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f131f56841762fad937da3818d11e98e8eb76bbe36d5502af502ea994917677",
                "md5": "e60e279c128f2f7f46dc2d3c28b9134d",
                "sha256": "01b4522de2667c77d46c1359e49be1ebd30b82e494c7c1a3f5027f13093e06d5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e60e279c128f2f7f46dc2d3c28b9134d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1550440,
            "upload_time": "2024-02-25T09:14:26",
            "upload_time_iso_8601": "2024-02-25T09:14:26.067074Z",
            "url": "https://files.pythonhosted.org/packages/7f/13/1f56841762fad937da3818d11e98e8eb76bbe36d5502af502ea994917677/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0059c40ce0fc4fea2bee1770a74ca2e5e82c3d4f0a1d396cda060662443a8ea2",
                "md5": "e5a52a4e32464992a890f5f9104c12e2",
                "sha256": "313e62e778e9707b575f4ef05d19e22bd9b8484d80194bca0754c2f7db8b1183"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5a52a4e32464992a890f5f9104c12e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1159009,
            "upload_time": "2024-02-25T09:14:28",
            "upload_time_iso_8601": "2024-02-25T09:14:28.025580Z",
            "url": "https://files.pythonhosted.org/packages/00/59/c40ce0fc4fea2bee1770a74ca2e5e82c3d4f0a1d396cda060662443a8ea2/sqlcipher3_wheels-0.5.2.post0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2782d66c032d43cec2b5a08b5626fae69760ee3b0f38bc27d2723789353f0766",
                "md5": "7256a1cf63903c21b93587fb9ee90e60",
                "sha256": "203e38a0e9ecddd5a21d0fd03decfdc620b12c9141baf20c0fe3f234c3710d0b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7256a1cf63903c21b93587fb9ee90e60",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2625793,
            "upload_time": "2024-02-25T09:14:29",
            "upload_time_iso_8601": "2024-02-25T09:14:29.323465Z",
            "url": "https://files.pythonhosted.org/packages/27/82/d66c032d43cec2b5a08b5626fae69760ee3b0f38bc27d2723789353f0766/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4472ea79bb7a799ab49a66ebc8d27ecea321b507d8013cbdf9d2ddb799f5359",
                "md5": "33fa85192c492b301ed16783a141958d",
                "sha256": "74e208ddac4dab92f5d0dad6977bedc8321113d899d36b83bfe46a9af6d49a1f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33fa85192c492b301ed16783a141958d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1906251,
            "upload_time": "2024-02-25T09:14:30",
            "upload_time_iso_8601": "2024-02-25T09:14:30.622358Z",
            "url": "https://files.pythonhosted.org/packages/e4/47/2ea79bb7a799ab49a66ebc8d27ecea321b507d8013cbdf9d2ddb799f5359/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a59b7bd73a99926faf7e413da8d5a7f5b5ca2568c7867cdbf1420708095231",
                "md5": "58ae6c39e683efb20c67f5dd546f9fcb",
                "sha256": "37a8e7c64d2d2e75d84060b891d0ec8b724b7c1cc94801b13a2c79bc96464d12"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "58ae6c39e683efb20c67f5dd546f9fcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1725104,
            "upload_time": "2024-02-25T09:14:31",
            "upload_time_iso_8601": "2024-02-25T09:14:31.955779Z",
            "url": "https://files.pythonhosted.org/packages/84/a5/9b7bd73a99926faf7e413da8d5a7f5b5ca2568c7867cdbf1420708095231/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3a2c3919ec8228d2b4bf06f4a0316d9be48e6f44dca78659637f5f953e976d5",
                "md5": "897a7505407af052b7da4406bb8472ec",
                "sha256": "ce8b0889d6c96193d4cd78df1f14cb2015bc27ef7d141329f0187e95a5321b15"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "897a7505407af052b7da4406bb8472ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4421376,
            "upload_time": "2024-02-25T09:14:33",
            "upload_time_iso_8601": "2024-02-25T09:14:33.610616Z",
            "url": "https://files.pythonhosted.org/packages/f3/a2/c3919ec8228d2b4bf06f4a0316d9be48e6f44dca78659637f5f953e976d5/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9ad89816415b3eecd56bb17d10d3a30c98046f9f2f76304544d7c8f171273f1",
                "md5": "4744137f804184055de16ae28dede197",
                "sha256": "5fa7cb51ddd46ec000070ff3cf2416365fef14184e20497f760cacce99547068"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4744137f804184055de16ae28dede197",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4499054,
            "upload_time": "2024-02-25T09:14:35",
            "upload_time_iso_8601": "2024-02-25T09:14:35.297695Z",
            "url": "https://files.pythonhosted.org/packages/b9/ad/89816415b3eecd56bb17d10d3a30c98046f9f2f76304544d7c8f171273f1/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c5d0f5dd7fa637db15043cb019643d0cda938ae7f4552ed01e41fcb626886b4",
                "md5": "61aab161ea5b3c43e211d5557934af26",
                "sha256": "75eeec9b9503958be069f30a468b2495872bf287a130d0901f4fa37b20859835"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "61aab161ea5b3c43e211d5557934af26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4802945,
            "upload_time": "2024-02-25T09:14:36",
            "upload_time_iso_8601": "2024-02-25T09:14:36.761230Z",
            "url": "https://files.pythonhosted.org/packages/7c/5d/0f5dd7fa637db15043cb019643d0cda938ae7f4552ed01e41fcb626886b4/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd08f94e3446faade3b025f7d1e17d34d2fa87affeebac873fd20b4c074d1064",
                "md5": "bb747b06477f9291d8454a9219061daa",
                "sha256": "c05cfd30d0d0825d0aacd38879ae0fcf8db17cc221a48b34eee420d268eff2e0"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bb747b06477f9291d8454a9219061daa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4456860,
            "upload_time": "2024-02-25T09:14:38",
            "upload_time_iso_8601": "2024-02-25T09:14:38.972355Z",
            "url": "https://files.pythonhosted.org/packages/dd/08/f94e3446faade3b025f7d1e17d34d2fa87affeebac873fd20b4c074d1064/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71a6af4c96b1b802d17d5ad2dc430c3dcc9401509ec7be97a655f7954e865ad7",
                "md5": "b5a93321561fde21b53efae01bf0054a",
                "sha256": "d4be98d760051af745e127c70a45cc2ea78b4ae6951350c83612d7cdb5b5e6d1"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5a93321561fde21b53efae01bf0054a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4566726,
            "upload_time": "2024-02-25T09:14:40",
            "upload_time_iso_8601": "2024-02-25T09:14:40.456526Z",
            "url": "https://files.pythonhosted.org/packages/71/a6/af4c96b1b802d17d5ad2dc430c3dcc9401509ec7be97a655f7954e865ad7/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2312e574b759e8d857d87dd4c5e4b1ae59c7a853df8b9659ec26f9ec35218db",
                "md5": "54adcf0fae2c5865592a25d6e27e6807",
                "sha256": "443067c7b0a1be61505df3c4972cc94f80f7932721e0bcfa215b3afdad55f5ac"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54adcf0fae2c5865592a25d6e27e6807",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4415737,
            "upload_time": "2024-02-25T09:14:41",
            "upload_time_iso_8601": "2024-02-25T09:14:41.810003Z",
            "url": "https://files.pythonhosted.org/packages/a2/31/2e574b759e8d857d87dd4c5e4b1ae59c7a853df8b9659ec26f9ec35218db/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb8c3aa49736922b1d34a872cde3f0425bf43cd3b72ead96495903b49bc32ab9",
                "md5": "a5ab7fb5f894d84a4cef713468880cfa",
                "sha256": "6dc69e96d40a968f1ff9636880d7d4c27314487c5e7b74eefbbf54a86872e96c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a5ab7fb5f894d84a4cef713468880cfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4473278,
            "upload_time": "2024-02-25T09:14:43",
            "upload_time_iso_8601": "2024-02-25T09:14:43.310499Z",
            "url": "https://files.pythonhosted.org/packages/cb/8c/3aa49736922b1d34a872cde3f0425bf43cd3b72ead96495903b49bc32ab9/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27ff69838b56e914ed1f668729e79280e11c10fc74529bd27d273ac6b21d4ff8",
                "md5": "14f0453c70b89f38eed30915cefe6cc6",
                "sha256": "2c1a262d765cd607344aa1d23ef7afa7d83964cfb2c325be08dac3cce355d255"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "14f0453c70b89f38eed30915cefe6cc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4766815,
            "upload_time": "2024-02-25T09:14:44",
            "upload_time_iso_8601": "2024-02-25T09:14:44.700784Z",
            "url": "https://files.pythonhosted.org/packages/27/ff/69838b56e914ed1f668729e79280e11c10fc74529bd27d273ac6b21d4ff8/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae5bdb09b3b45dcfc1e6b259606dd63d47c0b854a5e73bc3d30c58259fa25efc",
                "md5": "7d7e47322cad897a14668ae224759338",
                "sha256": "180ecb5c7bea2de2dff160fcbd05d298366884182edd2d49ff1608d28bb6cba8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "7d7e47322cad897a14668ae224759338",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4422929,
            "upload_time": "2024-02-25T09:14:46",
            "upload_time_iso_8601": "2024-02-25T09:14:46.338877Z",
            "url": "https://files.pythonhosted.org/packages/ae/5b/db09b3b45dcfc1e6b259606dd63d47c0b854a5e73bc3d30c58259fa25efc/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4ab7fb3c596261a745d26569a84f2d7caa4a3b5864ecf555c74900ed78d19b3",
                "md5": "f0bc3124cf0b9f7153f55d32b88cbad5",
                "sha256": "7aae74e8b13a5e55be009bff7450c42be2aacf8c4bc1d350681583c0ecad9df1"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0bc3124cf0b9f7153f55d32b88cbad5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4552182,
            "upload_time": "2024-02-25T09:14:47",
            "upload_time_iso_8601": "2024-02-25T09:14:47.932700Z",
            "url": "https://files.pythonhosted.org/packages/c4/ab/7fb3c596261a745d26569a84f2d7caa4a3b5864ecf555c74900ed78d19b3/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "022f8cf96453331000c123cb25e8a12873be7534013846004f8ab8680a6e1db5",
                "md5": "87be6ad94087dcb6ab203643aa1bbfcc",
                "sha256": "93818457e12a9762b3a18cccc71197eae13912fac81ade2bd1300514b5e0a1bf"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "87be6ad94087dcb6ab203643aa1bbfcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1309267,
            "upload_time": "2024-02-25T09:14:49",
            "upload_time_iso_8601": "2024-02-25T09:14:49.332392Z",
            "url": "https://files.pythonhosted.org/packages/02/2f/8cf96453331000c123cb25e8a12873be7534013846004f8ab8680a6e1db5/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa0ca6c807ba583bc74bf51795b43cd7482a35880f01a9419db9f0285737e47f",
                "md5": "cf6ccc60bc919273e3c5cc66d3c46686",
                "sha256": "dc231d54f704e184292e5dc875261da48dde9914c97024b23d289b1292e6587c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf6ccc60bc919273e3c5cc66d3c46686",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1550844,
            "upload_time": "2024-02-25T09:14:51",
            "upload_time_iso_8601": "2024-02-25T09:14:51.567469Z",
            "url": "https://files.pythonhosted.org/packages/fa/0c/a6c807ba583bc74bf51795b43cd7482a35880f01a9419db9f0285737e47f/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa39536926066a39f958242a37f354be9f47bc9dfaf5aabf444eaba6135e8679",
                "md5": "bac580134e1e62f007ca94902def717c",
                "sha256": "fe585347cd626c609847a618aeae146d9dc26e90a5fd0664c144479c0e47304a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "bac580134e1e62f007ca94902def717c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1158960,
            "upload_time": "2024-02-25T09:14:53",
            "upload_time_iso_8601": "2024-02-25T09:14:53.589176Z",
            "url": "https://files.pythonhosted.org/packages/fa/39/536926066a39f958242a37f354be9f47bc9dfaf5aabf444eaba6135e8679/sqlcipher3_wheels-0.5.2.post0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f07be5004d40d9a891d421e7796c4345094f837009342e65edafeb0e2783af97",
                "md5": "abd28b8fcb8e8e5c5255248afe5320b7",
                "sha256": "b9f2d3785093d4850fa05c904068df2781a397cc01ae78afa29fb898c4511bcb"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abd28b8fcb8e8e5c5255248afe5320b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1903388,
            "upload_time": "2024-02-25T09:14:54",
            "upload_time_iso_8601": "2024-02-25T09:14:54.931321Z",
            "url": "https://files.pythonhosted.org/packages/f0/7b/e5004d40d9a891d421e7796c4345094f837009342e65edafeb0e2783af97/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea9a72c19f73b64f99dc69bb0ada49f959553fcda5235ff1fa06532134ba0182",
                "md5": "37130aeaae813b77c1301c29102842aa",
                "sha256": "08e516589f3135915a70aee2c6acb70cb964703733a15946bfab7bba276f853e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "37130aeaae813b77c1301c29102842aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4393435,
            "upload_time": "2024-02-25T09:14:56",
            "upload_time_iso_8601": "2024-02-25T09:14:56.424685Z",
            "url": "https://files.pythonhosted.org/packages/ea/9a/72c19f73b64f99dc69bb0ada49f959553fcda5235ff1fa06532134ba0182/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42c269ad1d2fcd20078b46a93180082bfd21a0c6220c0390d55d6b7bc0205f53",
                "md5": "c9f0f5d5699c312bde72ef90f111d3ab",
                "sha256": "d5a72ffd2227f6a68671809897b39cc828a2373c31c86e0e746c981a237a7143"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c9f0f5d5699c312bde72ef90f111d3ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4470466,
            "upload_time": "2024-02-25T09:14:58",
            "upload_time_iso_8601": "2024-02-25T09:14:58.034918Z",
            "url": "https://files.pythonhosted.org/packages/42/c2/69ad1d2fcd20078b46a93180082bfd21a0c6220c0390d55d6b7bc0205f53/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ec02d77243597a162ae84e005e26f754af9bf35ae212f441e3a63a13b7b932d",
                "md5": "37ca84928b9d9f3a576025f804cd7456",
                "sha256": "d2064be064dd24bf64954093baa2bab07ecc3767d30e3e2bbe90a2eb4338cde1"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "37ca84928b9d9f3a576025f804cd7456",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4774164,
            "upload_time": "2024-02-25T09:14:59",
            "upload_time_iso_8601": "2024-02-25T09:14:59.536152Z",
            "url": "https://files.pythonhosted.org/packages/2e/c0/2d77243597a162ae84e005e26f754af9bf35ae212f441e3a63a13b7b932d/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f473f2db14927e6791507367d7a128a662b9a5c1021bafbf0650146845bef8",
                "md5": "2888a589300572dfd0c25ae96e074e7d",
                "sha256": "43a2e48201c728c4c749c8b0ffdc05024e110dbdc389799de47bd7a3b9687f3e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2888a589300572dfd0c25ae96e074e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4428282,
            "upload_time": "2024-02-25T09:15:01",
            "upload_time_iso_8601": "2024-02-25T09:15:01.379494Z",
            "url": "https://files.pythonhosted.org/packages/c0/f4/73f2db14927e6791507367d7a128a662b9a5c1021bafbf0650146845bef8/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f1590761b02f4904cb492160e5720db1b9de404d3e1d065b0f9580077c77898",
                "md5": "7b76dd565ca97ca7818425e2336053d5",
                "sha256": "64db5a2c7ba7ab591dde890b7ea90ac212585268d94c83d9342103f15f988a1a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b76dd565ca97ca7818425e2336053d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4536801,
            "upload_time": "2024-02-25T09:15:03",
            "upload_time_iso_8601": "2024-02-25T09:15:03.426700Z",
            "url": "https://files.pythonhosted.org/packages/4f/15/90761b02f4904cb492160e5720db1b9de404d3e1d065b0f9580077c77898/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b775ecfd909ccfc5a8ed2bdddfb53740f4aa8e917177f686398bb00bbd388d0",
                "md5": "adb81b1dcd510ae665f1e59b2c1d0b26",
                "sha256": "de97809815076bf352fe591f6a07eba338cb37f1f0e12dcc408804001f7cc549"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "adb81b1dcd510ae665f1e59b2c1d0b26",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4381725,
            "upload_time": "2024-02-25T09:15:05",
            "upload_time_iso_8601": "2024-02-25T09:15:05.153623Z",
            "url": "https://files.pythonhosted.org/packages/7b/77/5ecfd909ccfc5a8ed2bdddfb53740f4aa8e917177f686398bb00bbd388d0/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2607383281cb051c51d186d9b51863394641d2f23c6d2a60c681e701a4540d00",
                "md5": "f7701bd282121d6cc4bc58d3dc7400ec",
                "sha256": "0743e64c6a7ca4e5779bb3b3b63d2133a76f8d9ac1c16a53d7c843566231dffc"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f7701bd282121d6cc4bc58d3dc7400ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4443070,
            "upload_time": "2024-02-25T09:15:07",
            "upload_time_iso_8601": "2024-02-25T09:15:07.368162Z",
            "url": "https://files.pythonhosted.org/packages/26/07/383281cb051c51d186d9b51863394641d2f23c6d2a60c681e701a4540d00/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3831162c85e91cbdefa3495c6e79444dab522c512b946f4c62b3bc04504c94a",
                "md5": "79e740e88d2e674bc9b75000ff25c429",
                "sha256": "ac6cfc8b34f449f6dd5e6703e0c7d10d55473ce47a373cced7b1453221a339b3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "79e740e88d2e674bc9b75000ff25c429",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4734391,
            "upload_time": "2024-02-25T09:15:09",
            "upload_time_iso_8601": "2024-02-25T09:15:09.363208Z",
            "url": "https://files.pythonhosted.org/packages/b3/83/1162c85e91cbdefa3495c6e79444dab522c512b946f4c62b3bc04504c94a/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c471e4bf52f385cbb35840a1e803e5e67a5218f3d095a6b9fda26674c9c22e84",
                "md5": "bf83a47317bb20b22469a3cc2aa463a2",
                "sha256": "51edae0315f5c5380250a24c07a4cf64c9438361bb93655783797b4750b0f416"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "bf83a47317bb20b22469a3cc2aa463a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4388463,
            "upload_time": "2024-02-25T09:15:11",
            "upload_time_iso_8601": "2024-02-25T09:15:11.031643Z",
            "url": "https://files.pythonhosted.org/packages/c4/71/e4bf52f385cbb35840a1e803e5e67a5218f3d095a6b9fda26674c9c22e84/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43e0c3c496c29c192ad610b20f06a900d4cf47701e299ed6b78856237a7e5c77",
                "md5": "93c765608bfb337a150d4df61c91bdea",
                "sha256": "71579b9f2a0b32b1463c408ce6687c658e3587c6c328e828fe5629577d45d517"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93c765608bfb337a150d4df61c91bdea",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4517122,
            "upload_time": "2024-02-25T09:15:12",
            "upload_time_iso_8601": "2024-02-25T09:15:12.871830Z",
            "url": "https://files.pythonhosted.org/packages/43/e0/c3c496c29c192ad610b20f06a900d4cf47701e299ed6b78856237a7e5c77/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc90f5849f8040763eff550b157953cc6fb499168ed174c903bbf1e9933549ef",
                "md5": "a7bf8a750e7dcac8bff1b7f3ed098b5b",
                "sha256": "670e0211473b32c56a3b5e917acb438d32d3add6d6a08c8c23ea6c68aea4a443"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "a7bf8a750e7dcac8bff1b7f3ed098b5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1338151,
            "upload_time": "2024-02-25T09:15:15",
            "upload_time_iso_8601": "2024-02-25T09:15:15.019088Z",
            "url": "https://files.pythonhosted.org/packages/cc/90/f5849f8040763eff550b157953cc6fb499168ed174c903bbf1e9933549ef/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc1445e2a59a08fcccdcbe00124abb7b515ac3c0d8ca442c1920c5c0ec0053d9",
                "md5": "6586075baf7c20684b2d5a169b12dca1",
                "sha256": "485f82b4fa4532019e5508e166a9ebbbafe8ab97f032a76d60c6d3cd3e842325"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6586075baf7c20684b2d5a169b12dca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1593943,
            "upload_time": "2024-02-25T09:15:16",
            "upload_time_iso_8601": "2024-02-25T09:15:16.836308Z",
            "url": "https://files.pythonhosted.org/packages/cc/14/45e2a59a08fcccdcbe00124abb7b515ac3c0d8ca442c1920c5c0ec0053d9/sqlcipher3_wheels-0.5.2.post0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4457ac59888dfa829b01f94b8b5362a5bb6532fd4976c564b815120919acca5d",
                "md5": "d4c3bcfbe67522a56610c3888b8504f7",
                "sha256": "f95ca230aa6abab3aac3ad3b170ff2fefa466d77dc16758a5c42e030bf46253d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4c3bcfbe67522a56610c3888b8504f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1905436,
            "upload_time": "2024-02-25T09:15:18",
            "upload_time_iso_8601": "2024-02-25T09:15:18.291467Z",
            "url": "https://files.pythonhosted.org/packages/44/57/ac59888dfa829b01f94b8b5362a5bb6532fd4976c564b815120919acca5d/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f071e3ce2e2307a195a9b7596ce117b07a25eb54f55d1c422c88319093440177",
                "md5": "4a9994614b547015f23acd18b880d04e",
                "sha256": "0004e2a732e9eadb1c01b629e25bddd5f13d85d67924568887322480fc2dd31f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4a9994614b547015f23acd18b880d04e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4402325,
            "upload_time": "2024-02-25T09:15:20",
            "upload_time_iso_8601": "2024-02-25T09:15:20.039468Z",
            "url": "https://files.pythonhosted.org/packages/f0/71/e3ce2e2307a195a9b7596ce117b07a25eb54f55d1c422c88319093440177/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e55256319704fb8dd118b2885c091a1346ae12a6a3c8295a1b8814cdb93403a4",
                "md5": "d5833cd8989464fa33ff54dda40192cf",
                "sha256": "5704a4a6b6711aa4988493c934690213bf367caf3bc6f1333d52d16a2d1c1b28"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d5833cd8989464fa33ff54dda40192cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4478429,
            "upload_time": "2024-02-25T09:15:21",
            "upload_time_iso_8601": "2024-02-25T09:15:21.904529Z",
            "url": "https://files.pythonhosted.org/packages/e5/52/56319704fb8dd118b2885c091a1346ae12a6a3c8295a1b8814cdb93403a4/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63b7e7d91ff5104725fdacdb965f2eaeab1325d73585a50644f4fdbd3148e852",
                "md5": "5c500ab4ffb9ed98e0d08598bf9bedec",
                "sha256": "7164420b62258fcb886272214d03e723e55fe406a3274d0d0570467a293144f9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c500ab4ffb9ed98e0d08598bf9bedec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4781681,
            "upload_time": "2024-02-25T09:15:24",
            "upload_time_iso_8601": "2024-02-25T09:15:24.176593Z",
            "url": "https://files.pythonhosted.org/packages/63/b7/e7d91ff5104725fdacdb965f2eaeab1325d73585a50644f4fdbd3148e852/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38bfabebce3b583e72b279d259e3f182287e4215fa96d435b8115bf633b523c3",
                "md5": "97dd02833c0679d6b594c73d20a1899c",
                "sha256": "074ed7bdfbe514ba0cd331b6364f6ddc00bca76cd9c376e545cc49c6f9f5876e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "97dd02833c0679d6b594c73d20a1899c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4434851,
            "upload_time": "2024-02-25T09:15:25",
            "upload_time_iso_8601": "2024-02-25T09:15:25.797441Z",
            "url": "https://files.pythonhosted.org/packages/38/bf/abebce3b583e72b279d259e3f182287e4215fa96d435b8115bf633b523c3/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73fa3f3e8d75e41b0d0ee6d82e2301b6842d912fb5b9cbd012d6bfb9dcbbf4c4",
                "md5": "7d5cdea76af3eff890faa57de2cc71ed",
                "sha256": "cf88737818af86d0bca7ff9979525143d65666fd27c4cc0e115058130a854a89"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d5cdea76af3eff890faa57de2cc71ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4544663,
            "upload_time": "2024-02-25T09:15:27",
            "upload_time_iso_8601": "2024-02-25T09:15:27.454291Z",
            "url": "https://files.pythonhosted.org/packages/73/fa/3f3e8d75e41b0d0ee6d82e2301b6842d912fb5b9cbd012d6bfb9dcbbf4c4/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ba2d81b52bf11e692aab91bcf223198691f081f072ca00a01953639d3666eb7",
                "md5": "263837c3e4fdfca5fda806356a54d4be",
                "sha256": "aaa02ec150fc3b8817829aa2a93579ad34ef7906acdd01e20ed6fb1c6b2b5af5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "263837c3e4fdfca5fda806356a54d4be",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4388744,
            "upload_time": "2024-02-25T09:15:29",
            "upload_time_iso_8601": "2024-02-25T09:15:29.212588Z",
            "url": "https://files.pythonhosted.org/packages/0b/a2/d81b52bf11e692aab91bcf223198691f081f072ca00a01953639d3666eb7/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0bd668f4d9bb67ed2f5361c3c16f3d9ef148a72416467fe31b70570e1d24955",
                "md5": "089d283ccdfb9a76b6fa9ec239460098",
                "sha256": "ae196e604b5bc2eaf7d0f3f893bdf90bdf93f5243e94de09d285a93610e7c471"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "089d283ccdfb9a76b6fa9ec239460098",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4449309,
            "upload_time": "2024-02-25T09:15:30",
            "upload_time_iso_8601": "2024-02-25T09:15:30.811621Z",
            "url": "https://files.pythonhosted.org/packages/e0/bd/668f4d9bb67ed2f5361c3c16f3d9ef148a72416467fe31b70570e1d24955/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1df6479f83f4f4a1650ed3923cb0d0454bacafe551fcfc23ca573de4f850f13b",
                "md5": "604eeafae7698098baee6351c61e7548",
                "sha256": "f326c89c6283280db2f998d16de08fb5f5ddabe4a51b3793035974a9286e0974"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "604eeafae7698098baee6351c61e7548",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4742157,
            "upload_time": "2024-02-25T09:15:32",
            "upload_time_iso_8601": "2024-02-25T09:15:32.292050Z",
            "url": "https://files.pythonhosted.org/packages/1d/f6/479f83f4f4a1650ed3923cb0d0454bacafe551fcfc23ca573de4f850f13b/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d17e2030fe3db8b8bd96f0bb7e540d8c5a9f5e4fbcdee3b273d7ee1d0e3ef8c5",
                "md5": "3d7330e284a826c9ee9d1b21ac943ade",
                "sha256": "0c4662fe0e615776252c9167366257dcac7ac35c5fecc7ff44420a64f73eafb4"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "3d7330e284a826c9ee9d1b21ac943ade",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4395838,
            "upload_time": "2024-02-25T09:15:33",
            "upload_time_iso_8601": "2024-02-25T09:15:33.888259Z",
            "url": "https://files.pythonhosted.org/packages/d1/7e/2030fe3db8b8bd96f0bb7e540d8c5a9f5e4fbcdee3b273d7ee1d0e3ef8c5/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd5522ed6722ea213eec54d793947dd2802458bc4a04a8bc6e8320b08d10851a",
                "md5": "aafa94af7164234c475cf05291844c5f",
                "sha256": "0fe7707da41a24db2b8edcc4bc48c0507f51b46b7e85a83bd45c662e847a74aa"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aafa94af7164234c475cf05291844c5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4523984,
            "upload_time": "2024-02-25T09:15:35",
            "upload_time_iso_8601": "2024-02-25T09:15:35.533021Z",
            "url": "https://files.pythonhosted.org/packages/dd/55/22ed6722ea213eec54d793947dd2802458bc4a04a8bc6e8320b08d10851a/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cbd38f055c1f51725cdb65ab883088041fe003baf2c53dfcb4b0c56923ecade",
                "md5": "06fa76f34fd4a3a15ce611023afa0a47",
                "sha256": "b00df959ecbac6c8c3485332919095e7586467e061edfc7f886d143454802fee"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "06fa76f34fd4a3a15ce611023afa0a47",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1308984,
            "upload_time": "2024-02-25T09:15:37",
            "upload_time_iso_8601": "2024-02-25T09:15:37.222015Z",
            "url": "https://files.pythonhosted.org/packages/1c/bd/38f055c1f51725cdb65ab883088041fe003baf2c53dfcb4b0c56923ecade/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "107e32924d3906ada8f18d38c7e36bbfa086596f619b7da6ecbf9159bcea0500",
                "md5": "589d59fc37685e8e59365960a7e5613d",
                "sha256": "109fe8985b75bd8175313891de56e9119a80bacc4f02c7c0f0dd49a6787e2cd3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "589d59fc37685e8e59365960a7e5613d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1551074,
            "upload_time": "2024-02-25T09:15:39",
            "upload_time_iso_8601": "2024-02-25T09:15:39.370682Z",
            "url": "https://files.pythonhosted.org/packages/10/7e/32924d3906ada8f18d38c7e36bbfa086596f619b7da6ecbf9159bcea0500/sqlcipher3_wheels-0.5.2.post0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87d08ae05685452567c268a164be7f9109f727b8d7a7f4cab538aa46cfb3a025",
                "md5": "ccd5f2a9b0c234f66fa2b778c7846d56",
                "sha256": "6522b932596dd28c1a3631412bc5e1b68e140e1a2bfa545711177c2b89b48e4f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ccd5f2a9b0c234f66fa2b778c7846d56",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2625005,
            "upload_time": "2024-02-25T09:15:40",
            "upload_time_iso_8601": "2024-02-25T09:15:40.845990Z",
            "url": "https://files.pythonhosted.org/packages/87/d0/8ae05685452567c268a164be7f9109f727b8d7a7f4cab538aa46cfb3a025/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10d1ee1c70b5d6b0b26bb02416f62dd2aec8a55b1e7cbd7f23eeba68fae6754b",
                "md5": "d64b8057233f8936ddb85d77811cf727",
                "sha256": "81192ae4e2cae9f1515120b0782a2718b7de406855d8b24c277c4b9f302cc161"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d64b8057233f8936ddb85d77811cf727",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1905850,
            "upload_time": "2024-02-25T09:15:42",
            "upload_time_iso_8601": "2024-02-25T09:15:42.351528Z",
            "url": "https://files.pythonhosted.org/packages/10/d1/ee1c70b5d6b0b26bb02416f62dd2aec8a55b1e7cbd7f23eeba68fae6754b/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22cc59d4f318d5bf0c0ac758c3048c1bc087697b4ccc703e55a791776a797c1f",
                "md5": "4aac3d8da83e72999a1a9f71b6944956",
                "sha256": "b0813a91e0d7cca971d3a154f4b89ce6f4cafc13c9004c47ceab423b41382ad3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4aac3d8da83e72999a1a9f71b6944956",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1724665,
            "upload_time": "2024-02-25T09:15:44",
            "upload_time_iso_8601": "2024-02-25T09:15:44.471735Z",
            "url": "https://files.pythonhosted.org/packages/22/cc/59d4f318d5bf0c0ac758c3048c1bc087697b4ccc703e55a791776a797c1f/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd726e8c41a2735c7fe344ca6c3afae9874bb9415efb3934f83b7d136bcab9d5",
                "md5": "0699061fc03cedb6bdcd7335a39e7dfa",
                "sha256": "48e90a9af4a87ce9d89197da3ea57fefd117917f96ebe559b05bd35ed924eef8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0699061fc03cedb6bdcd7335a39e7dfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4411744,
            "upload_time": "2024-02-25T09:15:45",
            "upload_time_iso_8601": "2024-02-25T09:15:45.947501Z",
            "url": "https://files.pythonhosted.org/packages/bd/72/6e8c41a2735c7fe344ca6c3afae9874bb9415efb3934f83b7d136bcab9d5/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eccb573860ee01c354cef5fd77ca4cf106a0618cccc79a2ca5557c89204197a",
                "md5": "44efda7db66cce22b09e35327cf799ad",
                "sha256": "d641488d2acbb05814f72b1a8bf0ebbd8bfc48a5ff912263db5a7bf5b50dc21f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "44efda7db66cce22b09e35327cf799ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4489241,
            "upload_time": "2024-02-25T09:15:47",
            "upload_time_iso_8601": "2024-02-25T09:15:47.576722Z",
            "url": "https://files.pythonhosted.org/packages/0e/cc/b573860ee01c354cef5fd77ca4cf106a0618cccc79a2ca5557c89204197a/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cb75072e344974ab6317556373346866ef698c0e63e06aefb25b7ea566d4e56",
                "md5": "9edb9a43edb8edd8b7ac0b4ec6f9676c",
                "sha256": "c3946e8983458961d4ea989c746a7b83c42d9c7103d8f8c709c4623f0f6b164f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9edb9a43edb8edd8b7ac0b4ec6f9676c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4792325,
            "upload_time": "2024-02-25T09:15:49",
            "upload_time_iso_8601": "2024-02-25T09:15:49.067739Z",
            "url": "https://files.pythonhosted.org/packages/4c/b7/5072e344974ab6317556373346866ef698c0e63e06aefb25b7ea566d4e56/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29f18f184e4339df985df3a9f83160f7956abb4dca6c62083a499957b8a65760",
                "md5": "4935f0d6877323a141b8fa22a81ddc2a",
                "sha256": "3fff059dc9db99bf8d5a4a3d6e79faf4a39a4ce9efd9c22fe421ea1347249df5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4935f0d6877323a141b8fa22a81ddc2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4443326,
            "upload_time": "2024-02-25T09:15:50",
            "upload_time_iso_8601": "2024-02-25T09:15:50.725684Z",
            "url": "https://files.pythonhosted.org/packages/29/f1/8f184e4339df985df3a9f83160f7956abb4dca6c62083a499957b8a65760/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8455d90bf1323fd8f0a934e3d113d86a3ea905dde57e084c2c9360149bf93749",
                "md5": "655d517458b3166da3ca679ef2a6b95f",
                "sha256": "5c0339dded6a26f6cb7fc8909b1c244e905463ef8f0c46881418467f67dc6e75"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "655d517458b3166da3ca679ef2a6b95f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4552691,
            "upload_time": "2024-02-25T09:15:52",
            "upload_time_iso_8601": "2024-02-25T09:15:52.211889Z",
            "url": "https://files.pythonhosted.org/packages/84/55/d90bf1323fd8f0a934e3d113d86a3ea905dde57e084c2c9360149bf93749/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c0b47bbbe8b42e8d0ff48aab52f705e0a33a3b31927f61c6410743d434de9b7",
                "md5": "a18f7f3d3464b24eecebcd56b397dd7c",
                "sha256": "2233c7abc3455e615f47be1e133a39ed446be46e4058eeeb296f024d67448b48"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a18f7f3d3464b24eecebcd56b397dd7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4403021,
            "upload_time": "2024-02-25T09:15:54",
            "upload_time_iso_8601": "2024-02-25T09:15:54.459742Z",
            "url": "https://files.pythonhosted.org/packages/1c/0b/47bbbe8b42e8d0ff48aab52f705e0a33a3b31927f61c6410743d434de9b7/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e79d730a4081dc6c06c96931414e0fdae4200e75563f11c484288be82585f373",
                "md5": "c1aa6e2a9f579525aa13be7a76b08d16",
                "sha256": "a2981bbbcf1fcd3b12bbbd48c5f4e8bf8000162f0f638bb8297692d0b8b01bac"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c1aa6e2a9f579525aa13be7a76b08d16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4463004,
            "upload_time": "2024-02-25T09:15:55",
            "upload_time_iso_8601": "2024-02-25T09:15:55.980885Z",
            "url": "https://files.pythonhosted.org/packages/e7/9d/730a4081dc6c06c96931414e0fdae4200e75563f11c484288be82585f373/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a55559cdd79413dfe349cee2de9e70a666fc93973f2bef3161a2d50db0aa0e9e",
                "md5": "cbf1d363569c391936bdbe78bd15cd3c",
                "sha256": "163858ae07ba1e130d4233d2f904ab80d2ccd728f4d1a841cbddeff1990a3345"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cbf1d363569c391936bdbe78bd15cd3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4754783,
            "upload_time": "2024-02-25T09:15:57",
            "upload_time_iso_8601": "2024-02-25T09:15:57.688941Z",
            "url": "https://files.pythonhosted.org/packages/a5/55/59cdd79413dfe349cee2de9e70a666fc93973f2bef3161a2d50db0aa0e9e/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788dd1e3f2bfd8e8aae04b13a1cc364e9166695ca4eb1fe66ea7f98c9606e960",
                "md5": "22aa464c945991878063e9b317e1acaf",
                "sha256": "f7bce34a298b09327e78c198194931d965176af4c4cf69cb32488e4cee5f843e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "22aa464c945991878063e9b317e1acaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4407951,
            "upload_time": "2024-02-25T09:15:59",
            "upload_time_iso_8601": "2024-02-25T09:15:59.445174Z",
            "url": "https://files.pythonhosted.org/packages/78/8d/d1e3f2bfd8e8aae04b13a1cc364e9166695ca4eb1fe66ea7f98c9606e960/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17a0f315d2fb5812b4f64a1092ff97f8c5a378fd789d26a8a707e80a60adcf0e",
                "md5": "d947d5bf4a8ccbf4c76de08961a05184",
                "sha256": "12ee44402c8e656b144ab6570ad84de1d83a7eb2529e6f88dde3abcef2a679f6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d947d5bf4a8ccbf4c76de08961a05184",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4533534,
            "upload_time": "2024-02-25T09:16:01",
            "upload_time_iso_8601": "2024-02-25T09:16:01.261917Z",
            "url": "https://files.pythonhosted.org/packages/17/a0/f315d2fb5812b4f64a1092ff97f8c5a378fd789d26a8a707e80a60adcf0e/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b73788a9d1ccc69d80eef7dac4c790eb50bafd99345e94faee3a6b204fea90d6",
                "md5": "2990218b8916824579dae8014391280f",
                "sha256": "7fd738435748f8c0f74d48e56cea04d38cb2a6033513cd8ed5b42c05a058a67d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "2990218b8916824579dae8014391280f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1308973,
            "upload_time": "2024-02-25T09:16:02",
            "upload_time_iso_8601": "2024-02-25T09:16:02.682969Z",
            "url": "https://files.pythonhosted.org/packages/b7/37/88a9d1ccc69d80eef7dac4c790eb50bafd99345e94faee3a6b204fea90d6/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1794b96066e41c194ab3fc57a77688a8e627cf25fdc976c1c8dea2a5425145c9",
                "md5": "cae13719c3d8aad2da3548ea854eec51",
                "sha256": "c249664914e28cb15e9c18b462402646049f5088322b80a52443dad9fae234aa"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cae13719c3d8aad2da3548ea854eec51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1550650,
            "upload_time": "2024-02-25T09:16:04",
            "upload_time_iso_8601": "2024-02-25T09:16:04.877024Z",
            "url": "https://files.pythonhosted.org/packages/17/94/b96066e41c194ab3fc57a77688a8e627cf25fdc976c1c8dea2a5425145c9/sqlcipher3_wheels-0.5.2.post0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3167b528feab05475c1fd37f909b984fd366afd7b3e901a43965ae119436f37",
                "md5": "bb7b85d644b2e80dac3ce422a8287b6e",
                "sha256": "efa5d3da522c15bb3e8cd6363887ff344acdff95dac27d2f4df43df2be4b16a3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "bb7b85d644b2e80dac3ce422a8287b6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2624974,
            "upload_time": "2024-02-25T09:16:06",
            "upload_time_iso_8601": "2024-02-25T09:16:06.469974Z",
            "url": "https://files.pythonhosted.org/packages/c3/16/7b528feab05475c1fd37f909b984fd366afd7b3e901a43965ae119436f37/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d751163b4e0995bfc58dbeb3bc070a3bcf2d7b4508f66cadaaf4fe5cb30207d",
                "md5": "7259f91c1336ddabb5385dd5358983f3",
                "sha256": "f935dc622434c2d5ef960f21ffbf55d6b427ea416e8da9c8eb84fef78d3676f8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7259f91c1336ddabb5385dd5358983f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1905784,
            "upload_time": "2024-02-25T09:16:07",
            "upload_time_iso_8601": "2024-02-25T09:16:07.857813Z",
            "url": "https://files.pythonhosted.org/packages/0d/75/1163b4e0995bfc58dbeb3bc070a3bcf2d7b4508f66cadaaf4fe5cb30207d/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2810d231f4c34fa5f7a90b2677eacac7d2611b23f228a720a90bec4e5873eba",
                "md5": "5a7e27cdb4e7005973d1b427fda4e535",
                "sha256": "56e664f92c24edfbef85d2808c0f6c9d19e2c68119e558be79ac88de0f76b040"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a7e27cdb4e7005973d1b427fda4e535",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1724810,
            "upload_time": "2024-02-25T09:16:09",
            "upload_time_iso_8601": "2024-02-25T09:16:09.746542Z",
            "url": "https://files.pythonhosted.org/packages/d2/81/0d231f4c34fa5f7a90b2677eacac7d2611b23f228a720a90bec4e5873eba/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a2d448a23a2779d84366e0bece796db9a8609393317c4090a578f531322c62a",
                "md5": "6bd42f07512868100eba50f03e13b08a",
                "sha256": "4dcfa0c1df1903e0f3095e0313e18a74ce5af410efd12f984ae94151a4d1fcc7"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6bd42f07512868100eba50f03e13b08a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4407228,
            "upload_time": "2024-02-25T09:16:12",
            "upload_time_iso_8601": "2024-02-25T09:16:12.247237Z",
            "url": "https://files.pythonhosted.org/packages/5a/2d/448a23a2779d84366e0bece796db9a8609393317c4090a578f531322c62a/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48dd0b3982ed483090b3a895f3a9de2214e3d497474da3290d2ba39680601801",
                "md5": "32c1951337586eaf8cda6b36b8da6050",
                "sha256": "75bf5246143364146836fb8e85c929e14e8ed303b7d79d81f61774a8417fbce2"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "32c1951337586eaf8cda6b36b8da6050",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4485199,
            "upload_time": "2024-02-25T09:16:14",
            "upload_time_iso_8601": "2024-02-25T09:16:14.531623Z",
            "url": "https://files.pythonhosted.org/packages/48/dd/0b3982ed483090b3a895f3a9de2214e3d497474da3290d2ba39680601801/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9602c5c92544cbd5baec12aaf55592f092e53486721023d5c571899c710343d0",
                "md5": "474f0a8e26812f320c8b530ec3d4e54d",
                "sha256": "e1ade48ba6da0edfa6bd6d9013ce3167508ce985d1011eb1f23077f0d09278ed"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "474f0a8e26812f320c8b530ec3d4e54d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4788453,
            "upload_time": "2024-02-25T09:16:16",
            "upload_time_iso_8601": "2024-02-25T09:16:16.188484Z",
            "url": "https://files.pythonhosted.org/packages/96/02/c5c92544cbd5baec12aaf55592f092e53486721023d5c571899c710343d0/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1bbe3499df43bf7505255f0d0fc30c1c56c10f948316cd7f9f3180ca9a2acfd",
                "md5": "45321462295a7b113aeb7b00e357908b",
                "sha256": "8ced87719e520a59a660681bb3dfcebccc1507de4f22eb5169ef9978bae6e7f9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "45321462295a7b113aeb7b00e357908b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4440102,
            "upload_time": "2024-02-25T09:16:17",
            "upload_time_iso_8601": "2024-02-25T09:16:17.748410Z",
            "url": "https://files.pythonhosted.org/packages/d1/bb/e3499df43bf7505255f0d0fc30c1c56c10f948316cd7f9f3180ca9a2acfd/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05f33b662e6203a4a4c2f533bc0afeaebc47bff3fdeeb0c835e45ab35465ee47",
                "md5": "445a6f45755ca1a8565082ac1a8d5f3e",
                "sha256": "51505b92ad62c3a473b44750ec8490fffe4c8c7d74dccccb964ef3e6ec2baaf4"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "445a6f45755ca1a8565082ac1a8d5f3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4548888,
            "upload_time": "2024-02-25T09:16:19",
            "upload_time_iso_8601": "2024-02-25T09:16:19.167400Z",
            "url": "https://files.pythonhosted.org/packages/05/f3/3b662e6203a4a4c2f533bc0afeaebc47bff3fdeeb0c835e45ab35465ee47/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ffa7fcfb1dacc993c250f735736124fb387cad6d64940237a2c9589ee88ac7c",
                "md5": "3e5fb8ed13edadfaf08f0cbf0c392268",
                "sha256": "e29c8270a69a1ba8442dbd3fd1aa2656729a9463b6f98e664d4bedeb7eb95083"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e5fb8ed13edadfaf08f0cbf0c392268",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4397959,
            "upload_time": "2024-02-25T09:16:20",
            "upload_time_iso_8601": "2024-02-25T09:16:20.789696Z",
            "url": "https://files.pythonhosted.org/packages/2f/fa/7fcfb1dacc993c250f735736124fb387cad6d64940237a2c9589ee88ac7c/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea5b1f527bc9e9dcbe2f3549b17ab47277687eb709aa8fd5ca059ae9bda0c177",
                "md5": "713db973bcb70a3f42ab7b807ecb3d49",
                "sha256": "71cef45296deed4daa84b70b76d6d76d52edcea2b7950c8abdf33ff5c22c9528"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "713db973bcb70a3f42ab7b807ecb3d49",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4459096,
            "upload_time": "2024-02-25T09:16:22",
            "upload_time_iso_8601": "2024-02-25T09:16:22.465177Z",
            "url": "https://files.pythonhosted.org/packages/ea/5b/1f527bc9e9dcbe2f3549b17ab47277687eb709aa8fd5ca059ae9bda0c177/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f01dbaab2c52c5cd0b1643c87307a7abbab1b6e2c45b6922c04f182a95478903",
                "md5": "2b8ca3992842c006ee5fb7453d167806",
                "sha256": "995230d5637af4988e68bdc2470ca589e1bbedb1fef43aa51bdec830a0c84a71"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2b8ca3992842c006ee5fb7453d167806",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4750954,
            "upload_time": "2024-02-25T09:16:24",
            "upload_time_iso_8601": "2024-02-25T09:16:24.674763Z",
            "url": "https://files.pythonhosted.org/packages/f0/1d/baab2c52c5cd0b1643c87307a7abbab1b6e2c45b6922c04f182a95478903/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a6aa0d09e83bffcf4f1b65365d0322df20a72d99ece62985f6824f0292c3cb3",
                "md5": "c09b907924589fa9befe24dcac14fe6f",
                "sha256": "e9ee6eef464e63cb737556922aaa8437a36287eef083a46a639511f222061ab8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "c09b907924589fa9befe24dcac14fe6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4404456,
            "upload_time": "2024-02-25T09:16:26",
            "upload_time_iso_8601": "2024-02-25T09:16:26.323071Z",
            "url": "https://files.pythonhosted.org/packages/1a/6a/a0d09e83bffcf4f1b65365d0322df20a72d99ece62985f6824f0292c3cb3/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33f60c1d04833673edc08f1443d137511b2600e35ff2641148fda53e9df26b62",
                "md5": "a8de3db893afe879be36b4a63ed5616c",
                "sha256": "e9b4834e62936d5c3e4851875cc0809fe7a1c7c5cfcb52fd0fe1616afe3ae1c0"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8de3db893afe879be36b4a63ed5616c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4529517,
            "upload_time": "2024-02-25T09:16:28",
            "upload_time_iso_8601": "2024-02-25T09:16:28.084837Z",
            "url": "https://files.pythonhosted.org/packages/33/f6/0c1d04833673edc08f1443d137511b2600e35ff2641148fda53e9df26b62/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffe9d029f5cc3286205456b0e902cb1d379da300bf0a864c6c031831b125e9f3",
                "md5": "04bce40090dca2bb211b8e71f16bc810",
                "sha256": "e5860f3b80dfb38de41a222b3d1e4186f5d2a696e121ccc567dd6f1afb3b8022"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "04bce40090dca2bb211b8e71f16bc810",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1309016,
            "upload_time": "2024-02-25T09:16:29",
            "upload_time_iso_8601": "2024-02-25T09:16:29.611948Z",
            "url": "https://files.pythonhosted.org/packages/ff/e9/d029f5cc3286205456b0e902cb1d379da300bf0a864c6c031831b125e9f3/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4980750aab6074f288a109710fb83c7954720cefab59e2436a37956f4a8dea54",
                "md5": "3d00eecae40d8d40c7732810891af5f9",
                "sha256": "3f284ecc5e20ad6bc3b46c0a685a4a1fc563dfd3e60b8157eb8960801ab30dbb"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d00eecae40d8d40c7732810891af5f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1550805,
            "upload_time": "2024-02-25T09:16:31",
            "upload_time_iso_8601": "2024-02-25T09:16:31.600108Z",
            "url": "https://files.pythonhosted.org/packages/49/80/750aab6074f288a109710fb83c7954720cefab59e2436a37956f4a8dea54/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4692977dc997f4537741439bed34b9cc31fb81a0320265804f59455b6b064638",
                "md5": "327190864645c08d92c3a3248294956f",
                "sha256": "770c5878f02bfe97657a01d78da8bc91d1de2fbece845911674f7ae6faf3244a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "327190864645c08d92c3a3248294956f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1158951,
            "upload_time": "2024-02-25T09:16:33",
            "upload_time_iso_8601": "2024-02-25T09:16:33.008749Z",
            "url": "https://files.pythonhosted.org/packages/46/92/977dc997f4537741439bed34b9cc31fb81a0320265804f59455b6b064638/sqlcipher3_wheels-0.5.2.post0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a895435034db62e62fbe3148b477325840c76d7093205063224a343d1997248",
                "md5": "08f10e454c388df449a61760526abdd2",
                "sha256": "c748adbc2a0df150568f4fa42f1662cf1814629afd2b3d141709cb4ab3c81380"
            },
            "downloads": -1,
            "filename": "sqlcipher3-wheels-0.5.2.post0.tar.gz",
            "has_sig": false,
            "md5_digest": "08f10e454c388df449a61760526abdd2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2551672,
            "upload_time": "2024-02-25T09:16:34",
            "upload_time_iso_8601": "2024-02-25T09:16:34.474602Z",
            "url": "https://files.pythonhosted.org/packages/2a/89/5435034db62e62fbe3148b477325840c76d7093205063224a343d1997248/sqlcipher3-wheels-0.5.2.post0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-25 09:16:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "laggykiller",
    "github_project": "sqlcipher3",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sqlcipher3-wheels"
}
        
Elapsed time: 0.19643s