sqlcipher3-wheels


Namesqlcipher3-wheels JSON
Version 0.5.5 PyPI version JSON
download
home_pageNone
SummaryDB-API 2.0 interface for SQLCipher 3.x
upload_time2025-07-19 17:54:15
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
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": null,
    "name": "sqlcipher3-wheels",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Charles Leifer <coleifer@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/be/71/c9db8d95484263058936ede39b0657c28c586c8525ef8efc454d510829fe/sqlcipher3_wheels-0.5.5.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.5",
    "project_urls": {
        "homepage": "https://github.com/laggykiller/sqlcipher3"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7666acf645d52306d9ac23f0610dbad5034678da8893969f3570ea32694e6f48",
                "md5": "95227ab2abd802f97a1fdde372a9002e",
                "sha256": "8bba5c19167b6945bcb8cab0a712cd4b1db2f69b27d8d5a41a56e01ac2b6db0c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "95227ab2abd802f97a1fdde372a9002e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3548283,
            "upload_time": "2025-07-19T17:51:13",
            "upload_time_iso_8601": "2025-07-19T17:51:13.773242Z",
            "url": "https://files.pythonhosted.org/packages/76/66/acf645d52306d9ac23f0610dbad5034678da8893969f3570ea32694e6f48/sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d6a65e89c6f5ba9a0a352fd861e3cdfe2e70e9f7210e8802a718b294289bcbc",
                "md5": "d8d8b0441636b2d0d1e68230772e1b09",
                "sha256": "5fdbc0d7689b92c2c195e3958bb34e57dfc6156d4d5734d429ef97fb5cb3f40b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8d8b0441636b2d0d1e68230772e1b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1815157,
            "upload_time": "2025-07-19T17:51:15",
            "upload_time_iso_8601": "2025-07-19T17:51:15.694353Z",
            "url": "https://files.pythonhosted.org/packages/9d/6a/65e89c6f5ba9a0a352fd861e3cdfe2e70e9f7210e8802a718b294289bcbc/sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e20e6521aef4d5c89c115f75da9ef74364276134b25a2876a569baa0dfc4fd2",
                "md5": "fb2cc6992f1ef9e16b048e84bdde94c5",
                "sha256": "edcb2d3309a79bb46c08a860de6416c5ea9943d3afc573186b0229ea14dcddd8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb2cc6992f1ef9e16b048e84bdde94c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1744439,
            "upload_time": "2025-07-19T17:51:17",
            "upload_time_iso_8601": "2025-07-19T17:51:17.317816Z",
            "url": "https://files.pythonhosted.org/packages/8e/20/e6521aef4d5c89c115f75da9ef74364276134b25a2876a569baa0dfc4fd2/sqlcipher3_wheels-0.5.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24287f6d25f3c652e742a7060ef37ec8c0c078e267f9a6b24e87a77a02aeb6bc",
                "md5": "fdbb1873086749b66e774c6545ec7853",
                "sha256": "18fae4a1bc4c395eb208b89f56a95bb04bac3f5978dd5e59342983acbb7c5b15"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fdbb1873086749b66e774c6545ec7853",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5588947,
            "upload_time": "2025-07-19T17:51:19",
            "upload_time_iso_8601": "2025-07-19T17:51:19.062536Z",
            "url": "https://files.pythonhosted.org/packages/24/28/7f6d25f3c652e742a7060ef37ec8c0c078e267f9a6b24e87a77a02aeb6bc/sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b15f129f72dbc79bd40fb9d9298e40e2d60bd1f37768c0a121f82ccc8d206b5",
                "md5": "796d573623f29319abdad6e7ed9df6c0",
                "sha256": "59232edc3255e4733b4f6d9af9f1adfd7124cf0c427ffad15765fe9d3e869d73"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "796d573623f29319abdad6e7ed9df6c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5680171,
            "upload_time": "2025-07-19T17:51:20",
            "upload_time_iso_8601": "2025-07-19T17:51:20.633367Z",
            "url": "https://files.pythonhosted.org/packages/7b/15/f129f72dbc79bd40fb9d9298e40e2d60bd1f37768c0a121f82ccc8d206b5/sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98bd2493524468159e91108dae84cbebac22acd9fc6993e4ed932fbcc3632ebc",
                "md5": "6b066a601e76e28f1c18ac3b9c60ed32",
                "sha256": "f8e407a8e817cd5c2a49ae5e77a738c0c1861cf822091393efb3c6ca1668b039"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b066a601e76e28f1c18ac3b9c60ed32",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 6055069,
            "upload_time": "2025-07-19T17:51:22",
            "upload_time_iso_8601": "2025-07-19T17:51:22.433572Z",
            "url": "https://files.pythonhosted.org/packages/98/bd/2493524468159e91108dae84cbebac22acd9fc6993e4ed932fbcc3632ebc/sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f04ee0ddef835e196ff7950d09d2ad1153a010a2f47d74112c5eb08018a8850",
                "md5": "5ea2aed783db8f5c1d8514643402e01a",
                "sha256": "8136b1695190666ed1e08a4ebd0abc20b6c5466aef05087bda57ba2f09295505"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5ea2aed783db8f5c1d8514643402e01a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5675032,
            "upload_time": "2025-07-19T17:51:23",
            "upload_time_iso_8601": "2025-07-19T17:51:23.852747Z",
            "url": "https://files.pythonhosted.org/packages/2f/04/ee0ddef835e196ff7950d09d2ad1153a010a2f47d74112c5eb08018a8850/sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e9e94c360c5284552f6f835334aaaad6799eb70cca3915677f3a30b23435251",
                "md5": "21fd39a1e25231158551d750b24d738f",
                "sha256": "2468abf0e6d2b7568bf24eb46ec5901146b0ce2c4c7e3ac2a40ea487fb1d2111"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21fd39a1e25231158551d750b24d738f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5753355,
            "upload_time": "2025-07-19T17:51:26",
            "upload_time_iso_8601": "2025-07-19T17:51:26.844068Z",
            "url": "https://files.pythonhosted.org/packages/4e/9e/94c360c5284552f6f835334aaaad6799eb70cca3915677f3a30b23435251/sqlcipher3_wheels-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b2dda9d843a2bd0b5523892ff5510f03cc5dd8e1ed82c7b9322f315a385da71",
                "md5": "f83299881443ab3aacf1e99a87e280d3",
                "sha256": "d106054d45ddb171888ef9909b0583df222b81e571f8eb92e1c279a85270f759"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f83299881443ab3aacf1e99a87e280d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5697141,
            "upload_time": "2025-07-19T17:51:28",
            "upload_time_iso_8601": "2025-07-19T17:51:28.559443Z",
            "url": "https://files.pythonhosted.org/packages/7b/2d/da9d843a2bd0b5523892ff5510f03cc5dd8e1ed82c7b9322f315a385da71/sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e646541034ddfb967f54033ea4ea7e9e705f28400a5292ee32ea0db1afee3c04",
                "md5": "2655821cf968e16ac05e9ae058d5e3d6",
                "sha256": "6d69e9ea3e64720eef8c0c0ed9cabc091993489c8ee168b98b812616ed5a9af3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2655821cf968e16ac05e9ae058d5e3d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5901746,
            "upload_time": "2025-07-19T17:51:30",
            "upload_time_iso_8601": "2025-07-19T17:51:30.300648Z",
            "url": "https://files.pythonhosted.org/packages/e6/46/541034ddfb967f54033ea4ea7e9e705f28400a5292ee32ea0db1afee3c04/sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b93aaa29f33d50cc099a6a912bee8499e166d2195b4797996fac4b418fce2fe5",
                "md5": "394ca57857e9f0d73d3c69a5934c217a",
                "sha256": "27c1b49e9758b9d86b5ee2eb135baf9df1fc3a4cc7627578cd8e16e6a3b69d4b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "394ca57857e9f0d73d3c69a5934c217a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 6223588,
            "upload_time": "2025-07-19T17:51:31",
            "upload_time_iso_8601": "2025-07-19T17:51:31.694769Z",
            "url": "https://files.pythonhosted.org/packages/b9/3a/aa29f33d50cc099a6a912bee8499e166d2195b4797996fac4b418fce2fe5/sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7370b922810e0c3500235bb0a959767e7561201c32fc4bad71a9fbd3855bd61",
                "md5": "356037b2d7af1d1032f57976eb87a14e",
                "sha256": "65c6970ec2d7b6d4517d2f49dc3dbc07776a8a5ff9a3cdac9037d344b2cf8f52"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "356037b2d7af1d1032f57976eb87a14e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5932563,
            "upload_time": "2025-07-19T17:51:33",
            "upload_time_iso_8601": "2025-07-19T17:51:33.318728Z",
            "url": "https://files.pythonhosted.org/packages/a7/37/0b922810e0c3500235bb0a959767e7561201c32fc4bad71a9fbd3855bd61/sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ab3e439aba1c6e185afa071e12bcbb031b17a23ad8b26cb438043a378e63510",
                "md5": "8905d5db5d7944f61c36cc53125fe7f5",
                "sha256": "3779c5a2efef9ea3b75a0a02f806f6d77ac26642796bb7584d56fa798b395bd6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8905d5db5d7944f61c36cc53125fe7f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5940543,
            "upload_time": "2025-07-19T17:51:35",
            "upload_time_iso_8601": "2025-07-19T17:51:35.044988Z",
            "url": "https://files.pythonhosted.org/packages/9a/b3/e439aba1c6e185afa071e12bcbb031b17a23ad8b26cb438043a378e63510/sqlcipher3_wheels-0.5.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e1c6060704b54a4c603590713a4ea3ede37a2e30559b9e9cb4f5abe45401fd2",
                "md5": "f3a2bbdfbd93844dc1ff7b1236ad0bd4",
                "sha256": "480a9c2c08cc8ce57792a1813839b3b4a534d3a3eecf2a8186307d32266b6f5a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f3a2bbdfbd93844dc1ff7b1236ad0bd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1526460,
            "upload_time": "2025-07-19T17:51:36",
            "upload_time_iso_8601": "2025-07-19T17:51:36.302600Z",
            "url": "https://files.pythonhosted.org/packages/2e/1c/6060704b54a4c603590713a4ea3ede37a2e30559b9e9cb4f5abe45401fd2/sqlcipher3_wheels-0.5.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c0689c0a88f7a66e0a5254f9b0b0f7cc946a3b24838841513ab826eade9a801",
                "md5": "1693cfecaa40ce427d3cade46ce51dc8",
                "sha256": "a13ae6ee2fc63f446d72b7e6e84ec3e38a157e98538c1bb72ba524671db820e2"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1693cfecaa40ce427d3cade46ce51dc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1824258,
            "upload_time": "2025-07-19T17:51:37",
            "upload_time_iso_8601": "2025-07-19T17:51:37.563698Z",
            "url": "https://files.pythonhosted.org/packages/7c/06/89c0a88f7a66e0a5254f9b0b0f7cc946a3b24838841513ab826eade9a801/sqlcipher3_wheels-0.5.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "156f060120a295d09f52d71471316481245e842bffac0740cbce9dee8af8c584",
                "md5": "04b6342d7d815caa6500ce181398b9fe",
                "sha256": "66d1ce802631a0ef67981c0e3357c67405d4121b35140ea3d6f424cd6c673dac"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "04b6342d7d815caa6500ce181398b9fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1409094,
            "upload_time": "2025-07-19T17:51:39",
            "upload_time_iso_8601": "2025-07-19T17:51:39.138214Z",
            "url": "https://files.pythonhosted.org/packages/15/6f/060120a295d09f52d71471316481245e842bffac0740cbce9dee8af8c584/sqlcipher3_wheels-0.5.5-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d6a3b03d3c1dd8309c297cd32f28c2ab11827c362c628caea47ca3bc81f51f2",
                "md5": "787bbb6b899a0374871651aaa23fdb2b",
                "sha256": "cdce120676485b70d86831fb57d00f99139cb7a53d7633719276a11bea4fe936"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "787bbb6b899a0374871651aaa23fdb2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3549123,
            "upload_time": "2025-07-19T17:51:40",
            "upload_time_iso_8601": "2025-07-19T17:51:40.456560Z",
            "url": "https://files.pythonhosted.org/packages/6d/6a/3b03d3c1dd8309c297cd32f28c2ab11827c362c628caea47ca3bc81f51f2/sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "529ec622f50eb1e6449e9d131aeb5c06bc7a7184eb6d9f83d651b0cda2691710",
                "md5": "7f6b6254c2fd12eb4b65a13b944c72b4",
                "sha256": "b7e522d433b4e106ea17685a67006ecaa3866b6996a6e0cf592dce20a6681e6d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f6b6254c2fd12eb4b65a13b944c72b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1815724,
            "upload_time": "2025-07-19T17:51:41",
            "upload_time_iso_8601": "2025-07-19T17:51:41.716606Z",
            "url": "https://files.pythonhosted.org/packages/52/9e/c622f50eb1e6449e9d131aeb5c06bc7a7184eb6d9f83d651b0cda2691710/sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a08ddb71bc92035fc172d97a20a493e0b87b943ca810d02946e18b1399f2f4a9",
                "md5": "53b830d5dc86245485abc5ec020425e3",
                "sha256": "fd65a34d0a68c9660ebb7b8c5d1e8b2cef23854efe22ba49266204e98b2b883d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "53b830d5dc86245485abc5ec020425e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1745119,
            "upload_time": "2025-07-19T17:51:42",
            "upload_time_iso_8601": "2025-07-19T17:51:42.813113Z",
            "url": "https://files.pythonhosted.org/packages/a0/8d/db71bc92035fc172d97a20a493e0b87b943ca810d02946e18b1399f2f4a9/sqlcipher3_wheels-0.5.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9590f01f667d3c9634d70562a13a339ce3fa029ac2cd7382658887439430b811",
                "md5": "13f79bbc85139d8dbdff84c758be0538",
                "sha256": "fb496f9d85602b73449f763fdd5fc868cc658277e74401e256b335ddae0fc2dd"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13f79bbc85139d8dbdff84c758be0538",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5597196,
            "upload_time": "2025-07-19T17:51:44",
            "upload_time_iso_8601": "2025-07-19T17:51:44.539569Z",
            "url": "https://files.pythonhosted.org/packages/95/90/f01f667d3c9634d70562a13a339ce3fa029ac2cd7382658887439430b811/sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcc56556c60d49d450d29f2dd2877ff6f765c92b25a0941e25a47f6444fb2292",
                "md5": "e7e5bb31191d3de11099a36d0a253153",
                "sha256": "2bbd4c5dfac8fb87cf5b49d9fea22e12f87fb2212f7f9a78461b4e7b0653108f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e7e5bb31191d3de11099a36d0a253153",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5687358,
            "upload_time": "2025-07-19T17:51:45",
            "upload_time_iso_8601": "2025-07-19T17:51:45.970369Z",
            "url": "https://files.pythonhosted.org/packages/dc/c5/6556c60d49d450d29f2dd2877ff6f765c92b25a0941e25a47f6444fb2292/sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3772bd6c884670f8d39a0c0608148216a6b7d21c194ed417f5e19464da300366",
                "md5": "b3ee6f2fd6e9ea8c18faddf17abdb1ea",
                "sha256": "8745031ad9afeb02478004fa953af16f73962f3b9561c2bad1e77be7ec7e6986"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3ee6f2fd6e9ea8c18faddf17abdb1ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6060328,
            "upload_time": "2025-07-19T17:51:47",
            "upload_time_iso_8601": "2025-07-19T17:51:47.457103Z",
            "url": "https://files.pythonhosted.org/packages/37/72/bd6c884670f8d39a0c0608148216a6b7d21c194ed417f5e19464da300366/sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ae29071f66fb237dfd9a58db26210fc8ebda2d3f10bfec19df56488b9ae1701",
                "md5": "3ad9be9caa5a00e3a959dd3ae585e275",
                "sha256": "c1c6217262ac3a4ec32e8ccd301fed90f7f6336588761bc3e2627daca25319e6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3ad9be9caa5a00e3a959dd3ae585e275",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5683139,
            "upload_time": "2025-07-19T17:51:48",
            "upload_time_iso_8601": "2025-07-19T17:51:48.845215Z",
            "url": "https://files.pythonhosted.org/packages/7a/e2/9071f66fb237dfd9a58db26210fc8ebda2d3f10bfec19df56488b9ae1701/sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20c314335113071dc281b68b7bf8abc3471bf8b5e7c7ec38d859bae65b48a237",
                "md5": "abf52edd351eb00517eee9ff9b0fcedd",
                "sha256": "998b19c4d4fb5e46cd66b461cc93f79571ec4055bcac4a0f32d97d7224b651e5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abf52edd351eb00517eee9ff9b0fcedd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5762303,
            "upload_time": "2025-07-19T17:51:50",
            "upload_time_iso_8601": "2025-07-19T17:51:50.316824Z",
            "url": "https://files.pythonhosted.org/packages/20/c3/14335113071dc281b68b7bf8abc3471bf8b5e7c7ec38d859bae65b48a237/sqlcipher3_wheels-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "158217eb27a9d54c45dce7919fff5a8370f0460c142e207965510194f35a5296",
                "md5": "070e35dcd740813ab3e570fe8574098b",
                "sha256": "bbd48d5151a354d885a6b30074f7a756e2eee45bfc6902beed8443aa14ab607f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "070e35dcd740813ab3e570fe8574098b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5705573,
            "upload_time": "2025-07-19T17:51:51",
            "upload_time_iso_8601": "2025-07-19T17:51:51.928315Z",
            "url": "https://files.pythonhosted.org/packages/15/82/17eb27a9d54c45dce7919fff5a8370f0460c142e207965510194f35a5296/sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "564d3d581735e41a185f8cc923794691b6977223ea58557056b2c2411473d801",
                "md5": "4127f89cf34e18997aa0fcae1cd20528",
                "sha256": "aeb9284f5b2ab225c4ed2fbde5ebfc95d6e703899bc19b894601a132a7a4a8ee"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4127f89cf34e18997aa0fcae1cd20528",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5908338,
            "upload_time": "2025-07-19T17:51:53",
            "upload_time_iso_8601": "2025-07-19T17:51:53.684034Z",
            "url": "https://files.pythonhosted.org/packages/56/4d/3d581735e41a185f8cc923794691b6977223ea58557056b2c2411473d801/sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ec16ba6fe4605e9666cf07b5c61056fa792d0f52b3ac0aca1b16b413f04f720",
                "md5": "c6f8acf98e3e09a62672e84402b425b3",
                "sha256": "2e674a54f989502e1aa512c97b6a35612c89de91b036d65106f5f0a443b4e278"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c6f8acf98e3e09a62672e84402b425b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6230642,
            "upload_time": "2025-07-19T17:51:55",
            "upload_time_iso_8601": "2025-07-19T17:51:55.482485Z",
            "url": "https://files.pythonhosted.org/packages/7e/c1/6ba6fe4605e9666cf07b5c61056fa792d0f52b3ac0aca1b16b413f04f720/sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e682c3840fdbd1473a1d782360812516a9e6b244d193968f8077b61e0a6a19e",
                "md5": "6e11b4c20d2540b6a827aca16781e2bb",
                "sha256": "0846a5df480a4b3f10a486eb158f3b16707650dec199ca99529f14ec585d3814"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "6e11b4c20d2540b6a827aca16781e2bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5941248,
            "upload_time": "2025-07-19T17:51:56",
            "upload_time_iso_8601": "2025-07-19T17:51:56.874569Z",
            "url": "https://files.pythonhosted.org/packages/1e/68/2c3840fdbd1473a1d782360812516a9e6b244d193968f8077b61e0a6a19e/sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "baf20a60f8acb7c643d3dd45c8d55976edeed38fd6b857230216191c637cf72f",
                "md5": "8bd9705cb6723410493ec3c40bc7e627",
                "sha256": "aed1041d417614b0d14056f96c18b5f8675b3f03136bf1454599cf55aeb0a051"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bd9705cb6723410493ec3c40bc7e627",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5949434,
            "upload_time": "2025-07-19T17:51:58",
            "upload_time_iso_8601": "2025-07-19T17:51:58.533838Z",
            "url": "https://files.pythonhosted.org/packages/ba/f2/0a60f8acb7c643d3dd45c8d55976edeed38fd6b857230216191c637cf72f/sqlcipher3_wheels-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a32a03d7aad3dd00747b561cea85a725d43605dcb3f74917fee86bfeb9e05f4",
                "md5": "7e2f030a9567564acf648943a5bc0aeb",
                "sha256": "7fb23a6f8096914316a514eaa4f316f66974c227fbb222795e8852e08ab080ac"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "7e2f030a9567564acf648943a5bc0aeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1526391,
            "upload_time": "2025-07-19T17:52:00",
            "upload_time_iso_8601": "2025-07-19T17:52:00.131750Z",
            "url": "https://files.pythonhosted.org/packages/6a/32/a03d7aad3dd00747b561cea85a725d43605dcb3f74917fee86bfeb9e05f4/sqlcipher3_wheels-0.5.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea06acbdbd3e7b3942a63005a0536b88cad65e9060605b15e6dd50c23a91bb72",
                "md5": "d3eccb4fc4889999c43ef1453a1aec63",
                "sha256": "deca44acb79c1723ee7903348b663bea35fb71a9a2096efc7e6325c2d897b6d7"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d3eccb4fc4889999c43ef1453a1aec63",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1824260,
            "upload_time": "2025-07-19T17:52:01",
            "upload_time_iso_8601": "2025-07-19T17:52:01.574232Z",
            "url": "https://files.pythonhosted.org/packages/ea/06/acbdbd3e7b3942a63005a0536b88cad65e9060605b15e6dd50c23a91bb72/sqlcipher3_wheels-0.5.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "040ab7884766bd429e7b474b8e234a46f295e2bad79831d6c335303cfa812739",
                "md5": "84beb1192e9384cfba5a309fc84d29ea",
                "sha256": "dad9f9f1427c70d33624dfde0ca126fb02b20eda2f56180693e6ededaeb3bcb2"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "84beb1192e9384cfba5a309fc84d29ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1409097,
            "upload_time": "2025-07-19T17:52:02",
            "upload_time_iso_8601": "2025-07-19T17:52:02.788648Z",
            "url": "https://files.pythonhosted.org/packages/04/0a/b7884766bd429e7b474b8e234a46f295e2bad79831d6c335303cfa812739/sqlcipher3_wheels-0.5.5-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe75ae308122de9beae604deb264624c2b59911472b3536cac8538b2903f3187",
                "md5": "8a9db35f3fb8199a400e377bf4f3e472",
                "sha256": "f47d26d4aeb1894ad3c020840fef362352928f529d70e5e09f3ed03702420faa"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "8a9db35f3fb8199a400e377bf4f3e472",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3556495,
            "upload_time": "2025-07-19T17:52:04",
            "upload_time_iso_8601": "2025-07-19T17:52:04.016343Z",
            "url": "https://files.pythonhosted.org/packages/fe/75/ae308122de9beae604deb264624c2b59911472b3536cac8538b2903f3187/sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a287f967d713e8d35d5528517287bef23b2a8ce9704985697ea7ca7895daa16f",
                "md5": "18fbaff1e6d62df4062d101c17449f26",
                "sha256": "3c5056bca4ba11fb4caf9e5bea502dfbca6df56ddcc52fe9458844d0465eeb28"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18fbaff1e6d62df4062d101c17449f26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1818382,
            "upload_time": "2025-07-19T17:52:05",
            "upload_time_iso_8601": "2025-07-19T17:52:05.523616Z",
            "url": "https://files.pythonhosted.org/packages/a2/87/f967d713e8d35d5528517287bef23b2a8ce9704985697ea7ca7895daa16f/sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56d943c30c57e47d6f3690dfcfc86770246adc4f75b85e81b550f4825d256b32",
                "md5": "2db0211e40851e8a45ffec953f7c3a81",
                "sha256": "160f113ce148cc9aa4dff3e766e6af04592479fb12127879d1e7f86890d01ca1"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2db0211e40851e8a45ffec953f7c3a81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1747886,
            "upload_time": "2025-07-19T17:52:06",
            "upload_time_iso_8601": "2025-07-19T17:52:06.741670Z",
            "url": "https://files.pythonhosted.org/packages/56/d9/43c30c57e47d6f3690dfcfc86770246adc4f75b85e81b550f4825d256b32/sqlcipher3_wheels-0.5.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f13fef1a1d83d0c15a21b3246e2da01094cd3937ec1dd17fa4fbce52e0a0dc97",
                "md5": "de1fe3bd415f0eccdd0809e6c4be64ef",
                "sha256": "c7ee844347379d2b1a007f706f5ed53f3bf940c4529a22b727cd5c5588988bbe"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de1fe3bd415f0eccdd0809e6c4be64ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5603676,
            "upload_time": "2025-07-19T17:52:08",
            "upload_time_iso_8601": "2025-07-19T17:52:08.098796Z",
            "url": "https://files.pythonhosted.org/packages/f1/3f/ef1a1d83d0c15a21b3246e2da01094cd3937ec1dd17fa4fbce52e0a0dc97/sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff6eb866aecec749b4ce70689f6acb343019f301b9c745959f0817b50753f592",
                "md5": "64a8b90ea37207d72686a82ca5396f27",
                "sha256": "9376f3f1ace24322b2a564417f2681b80e8f000443f90042f986e54e68a35aaf"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "64a8b90ea37207d72686a82ca5396f27",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5694753,
            "upload_time": "2025-07-19T17:52:09",
            "upload_time_iso_8601": "2025-07-19T17:52:09.510922Z",
            "url": "https://files.pythonhosted.org/packages/ff/6e/b866aecec749b4ce70689f6acb343019f301b9c745959f0817b50753f592/sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c0a710be8f0ef62bca7f6dd293515ae30b104e5fd635b1f82aa5338b6239d1e",
                "md5": "85297052b952ac13abae53b61ec9fb33",
                "sha256": "65e8183eebde874a521b6c94fca4e78409067bcc3581b1f2cb34135acb570b1f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "85297052b952ac13abae53b61ec9fb33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 6067901,
            "upload_time": "2025-07-19T17:52:10",
            "upload_time_iso_8601": "2025-07-19T17:52:10.917558Z",
            "url": "https://files.pythonhosted.org/packages/8c/0a/710be8f0ef62bca7f6dd293515ae30b104e5fd635b1f82aa5338b6239d1e/sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da42be74f536139187d4d9b09b6a56a79937f73c0f11a02dbde0928ad98287d6",
                "md5": "a76827031a5aa0c898523071f4f53b36",
                "sha256": "ced2914db889e1b9d5e0b3bf8f5612565746b58de0a03e9b4432aedb9aa323ab"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a76827031a5aa0c898523071f4f53b36",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5690270,
            "upload_time": "2025-07-19T17:52:12",
            "upload_time_iso_8601": "2025-07-19T17:52:12.352398Z",
            "url": "https://files.pythonhosted.org/packages/da/42/be74f536139187d4d9b09b6a56a79937f73c0f11a02dbde0928ad98287d6/sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eebd3a003db204e122df4e0723bbb245cfb3dadc1fd4d209e302dc2a8ae6c80c",
                "md5": "dfe633bfe0cc5797c284553e57be1311",
                "sha256": "b509c218ded7b6a2559308bb95a9d3ba9e1f043b1f2b78cbcb8c3f0da48c9713"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfe633bfe0cc5797c284553e57be1311",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5770261,
            "upload_time": "2025-07-19T17:52:13",
            "upload_time_iso_8601": "2025-07-19T17:52:13.773570Z",
            "url": "https://files.pythonhosted.org/packages/ee/bd/3a003db204e122df4e0723bbb245cfb3dadc1fd4d209e302dc2a8ae6c80c/sqlcipher3_wheels-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b3ddc841b0f31c7b3f1879c117ec59e143521a397868c867f7b685c39c27595",
                "md5": "e31b5799c2756ca4cb658799faad7052",
                "sha256": "398b0b576aa3e5eb7b1b802b962389bc284d86a13095a88d7535eef4850490d9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e31b5799c2756ca4cb658799faad7052",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5712304,
            "upload_time": "2025-07-19T17:52:15",
            "upload_time_iso_8601": "2025-07-19T17:52:15.161213Z",
            "url": "https://files.pythonhosted.org/packages/6b/3d/dc841b0f31c7b3f1879c117ec59e143521a397868c867f7b685c39c27595/sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5da5d9fa0b80084414efc7ff68fe31c8903f22b3ec0553a5fbef4412d910f62b",
                "md5": "03cce1a04902f270344f9e1d3b5314a0",
                "sha256": "2f12e783bd2a544a92441ec4af71ed51a16d988067b8ed7fd85da3e778fb5276"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "03cce1a04902f270344f9e1d3b5314a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5916725,
            "upload_time": "2025-07-19T17:52:16",
            "upload_time_iso_8601": "2025-07-19T17:52:16.517442Z",
            "url": "https://files.pythonhosted.org/packages/5d/a5/d9fa0b80084414efc7ff68fe31c8903f22b3ec0553a5fbef4412d910f62b/sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ecae8396806fbcfb6739b8a4b75f3cbeb143b06577a10e8d4680d4c997c197e",
                "md5": "7150ce63cc4f78971c6a89021b945567",
                "sha256": "14ffcdd65c329a198301997ec9cc721d2036351c1c45fef387029a0a0705f818"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7150ce63cc4f78971c6a89021b945567",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 6235232,
            "upload_time": "2025-07-19T17:52:17",
            "upload_time_iso_8601": "2025-07-19T17:52:17.932417Z",
            "url": "https://files.pythonhosted.org/packages/8e/ca/e8396806fbcfb6739b8a4b75f3cbeb143b06577a10e8d4680d4c997c197e/sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49441b6372b28a83e7d73ae48295710279e295aedccd05a3f55608ab8f3f33c1",
                "md5": "666986ed9cd0d20e8238bd0cedba71c6",
                "sha256": "c5cb7de51ade888860bcf806638f8ced5d45b4efaf2d8795de737d00adfc0777"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "666986ed9cd0d20e8238bd0cedba71c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5947028,
            "upload_time": "2025-07-19T17:52:19",
            "upload_time_iso_8601": "2025-07-19T17:52:19.452768Z",
            "url": "https://files.pythonhosted.org/packages/49/44/1b6372b28a83e7d73ae48295710279e295aedccd05a3f55608ab8f3f33c1/sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b456852f36b7a1f6bb6894d29a8cfa8c2f78d0575f374baf25c29a0fdd1917c8",
                "md5": "64a3b4319d867bca3dc7add01fa1cafa",
                "sha256": "d1f7e0ea535ea29e10487ab9df2d66bff8b6c7334996c67d653bd64783dba3af"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64a3b4319d867bca3dc7add01fa1cafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5953369,
            "upload_time": "2025-07-19T17:52:20",
            "upload_time_iso_8601": "2025-07-19T17:52:20.842672Z",
            "url": "https://files.pythonhosted.org/packages/b4/56/852f36b7a1f6bb6894d29a8cfa8c2f78d0575f374baf25c29a0fdd1917c8/sqlcipher3_wheels-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e86008769889b14504b4a6fb9aa5271875ce05532c24a6ed7d6937ae3bdfe9fc",
                "md5": "9c3e3efa0fe8a60e8ed9286333d3641b",
                "sha256": "620e81b8d6cb5f1ba33d51ddf0989337516d6ab7a7cbe0ebd49f7760bf9c97d9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "9c3e3efa0fe8a60e8ed9286333d3641b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1527074,
            "upload_time": "2025-07-19T17:52:22",
            "upload_time_iso_8601": "2025-07-19T17:52:22.608492Z",
            "url": "https://files.pythonhosted.org/packages/e8/60/08769889b14504b4a6fb9aa5271875ce05532c24a6ed7d6937ae3bdfe9fc/sqlcipher3_wheels-0.5.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41dfee18eb45183e07c4b29d02e4a4ca01d5035ae8827a9267bb195b3580a172",
                "md5": "4b546d64bb85c2601538117586c2e840",
                "sha256": "652deb988815a1e8ee5e961d367c59122bf6d2accfd4a671487d54954aabb33f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b546d64bb85c2601538117586c2e840",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1824532,
            "upload_time": "2025-07-19T17:52:23",
            "upload_time_iso_8601": "2025-07-19T17:52:23.853496Z",
            "url": "https://files.pythonhosted.org/packages/41/df/ee18eb45183e07c4b29d02e4a4ca01d5035ae8827a9267bb195b3580a172/sqlcipher3_wheels-0.5.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f66f55439113a0f0bf6bbd2c6d3066b49b975ff5ecfa49da1883d319e9e6fc06",
                "md5": "ba3e6e87f0f29f38059689fcf23aa93f",
                "sha256": "a89a743a3fc9d073c64f34c41a7394c265ead28da1d708b881133c97c0d53c63"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba3e6e87f0f29f38059689fcf23aa93f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1409199,
            "upload_time": "2025-07-19T17:52:25",
            "upload_time_iso_8601": "2025-07-19T17:52:25.129360Z",
            "url": "https://files.pythonhosted.org/packages/f6/6f/55439113a0f0bf6bbd2c6d3066b49b975ff5ecfa49da1883d319e9e6fc06/sqlcipher3_wheels-0.5.5-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd2380c28260307952a41b11c2633b13bc364ae3594f47b6127c61875a56aa5d",
                "md5": "9c4c9619084957f28d3c747cab1342c5",
                "sha256": "3ff5a898701bb2d26f2c43a1fd822747f56bf04321023f858380ecc62ddb861d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "9c4c9619084957f28d3c747cab1342c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 3555893,
            "upload_time": "2025-07-19T17:52:26",
            "upload_time_iso_8601": "2025-07-19T17:52:26.437914Z",
            "url": "https://files.pythonhosted.org/packages/fd/23/80c28260307952a41b11c2633b13bc364ae3594f47b6127c61875a56aa5d/sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93bf52a764cb44ece98897b5726817380013c9e9ab263ff4fa06570fd7e7681d",
                "md5": "a30057ab38d6b7fd5fcb9fa3386000dd",
                "sha256": "78d33c520577ae0d25e32b048cabb3fc712ec3510b6b98299940607393147abc"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a30057ab38d6b7fd5fcb9fa3386000dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1818198,
            "upload_time": "2025-07-19T17:52:27",
            "upload_time_iso_8601": "2025-07-19T17:52:27.655938Z",
            "url": "https://files.pythonhosted.org/packages/93/bf/52a764cb44ece98897b5726817380013c9e9ab263ff4fa06570fd7e7681d/sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a6ca7a33a37001abf6fc903a466c126b8a39fbb7f7b66fc35f8bd098c976cb2",
                "md5": "9bc970552020977f149443f8c2bc1968",
                "sha256": "4cc62cd5a13d58a151d5c7177723b659b8178e9068b3c593fdf95533b0b259d5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9bc970552020977f149443f8c2bc1968",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1747633,
            "upload_time": "2025-07-19T17:52:28",
            "upload_time_iso_8601": "2025-07-19T17:52:28.863042Z",
            "url": "https://files.pythonhosted.org/packages/2a/6c/a7a33a37001abf6fc903a466c126b8a39fbb7f7b66fc35f8bd098c976cb2/sqlcipher3_wheels-0.5.5-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50921e2d79eb6aa46e3d45b20b5f439f42b18f829e7e19f4ee1c32b0995dfa5a",
                "md5": "2a930f10846b3b2d3a82593d6dbc9956",
                "sha256": "c9e17d023ea791ffe7b395e36e33bc46e88e614783b04a5b53929d27797f3863"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a930f10846b3b2d3a82593d6dbc9956",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5598228,
            "upload_time": "2025-07-19T17:52:30",
            "upload_time_iso_8601": "2025-07-19T17:52:30.232071Z",
            "url": "https://files.pythonhosted.org/packages/50/92/1e2d79eb6aa46e3d45b20b5f439f42b18f829e7e19f4ee1c32b0995dfa5a/sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ee9eb3b8c59e851d1185a6c57d15107a5acd2271259d9c50cf2d986dcef339a",
                "md5": "7b5112f7d1506b496ff38a205861bce4",
                "sha256": "9081a3644bb10a9e70f50f5530280b84f6c84174594bf5139ef5dafcf5a7a424"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7b5112f7d1506b496ff38a205861bce4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5691549,
            "upload_time": "2025-07-19T17:52:31",
            "upload_time_iso_8601": "2025-07-19T17:52:31.609364Z",
            "url": "https://files.pythonhosted.org/packages/0e/e9/eb3b8c59e851d1185a6c57d15107a5acd2271259d9c50cf2d986dcef339a/sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2240aa507db8654114482e54497ddb97eaacebcd0a1e5b61a8f3927c7158697c",
                "md5": "694835862a4e02c6a75625569d9a1520",
                "sha256": "0979c334ff1d576751cf8d50b1936d884be1acb5e96883acd8b1e58d5cb6fde3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "694835862a4e02c6a75625569d9a1520",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 6063213,
            "upload_time": "2025-07-19T17:52:32",
            "upload_time_iso_8601": "2025-07-19T17:52:32.997641Z",
            "url": "https://files.pythonhosted.org/packages/22/40/aa507db8654114482e54497ddb97eaacebcd0a1e5b61a8f3927c7158697c/sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cddb84ca6b24204b00a4e3c0611b2da594654c186d832c346e4e625a14050bf",
                "md5": "b068f9314639c584a4ab40f405b5077d",
                "sha256": "68801e51c906ff8d961014d4bee0a0ca5b61fa27a88aad8fe3934dcf46693273"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b068f9314639c584a4ab40f405b5077d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5686571,
            "upload_time": "2025-07-19T17:52:34",
            "upload_time_iso_8601": "2025-07-19T17:52:34.441891Z",
            "url": "https://files.pythonhosted.org/packages/1c/dd/b84ca6b24204b00a4e3c0611b2da594654c186d832c346e4e625a14050bf/sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c88207b687f97d94f1fe6cdb07bd0254d01fc5194be2f6a4c64f17249953c577",
                "md5": "2c5cec99eb8a7bc27d824d9c792fd628",
                "sha256": "17f17af32cfb74ed60cbe7ca8be9daa7f19a65eb737fb43bd7522f4e00abd8ea"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c5cec99eb8a7bc27d824d9c792fd628",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5767440,
            "upload_time": "2025-07-19T17:52:35",
            "upload_time_iso_8601": "2025-07-19T17:52:35.861582Z",
            "url": "https://files.pythonhosted.org/packages/c8/82/07b687f97d94f1fe6cdb07bd0254d01fc5194be2f6a4c64f17249953c577/sqlcipher3_wheels-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bdaaafc0ddb18eb013fbe2b20de3f122f285f981269d6dacdee0eff2936c3c6",
                "md5": "2a2a90e95da67de49342c327ee8c274f",
                "sha256": "1bf1189cd1deefa5bff0cf4e99490ebb32ad8aca3fd8a6b1057ea8b58719ae05"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a2a90e95da67de49342c327ee8c274f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5708491,
            "upload_time": "2025-07-19T17:52:37",
            "upload_time_iso_8601": "2025-07-19T17:52:37.279172Z",
            "url": "https://files.pythonhosted.org/packages/1b/da/aafc0ddb18eb013fbe2b20de3f122f285f981269d6dacdee0eff2936c3c6/sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b87a71b626bc28431b862547d306357cd9be04e69c4e98a3f9efc1bdc943e559",
                "md5": "9920546eeee6e145c93f3637fdd66bc6",
                "sha256": "0a150deef82891f16720c005d07aaf0ea48f793ee0c55ee0359255d8e716801a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9920546eeee6e145c93f3637fdd66bc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5912507,
            "upload_time": "2025-07-19T17:52:38",
            "upload_time_iso_8601": "2025-07-19T17:52:38.870382Z",
            "url": "https://files.pythonhosted.org/packages/b8/7a/71b626bc28431b862547d306357cd9be04e69c4e98a3f9efc1bdc943e559/sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6925e14441fb03ac70af1b775045e6b05f0653829c742477e261fd11abb99709",
                "md5": "5cfccde2827821dad6548e2a0b07deef",
                "sha256": "d843386656bcdbb282eca56a556375aa970098fa319f9473d1073f3c5e8e821c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5cfccde2827821dad6548e2a0b07deef",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 6232435,
            "upload_time": "2025-07-19T17:52:40",
            "upload_time_iso_8601": "2025-07-19T17:52:40.323692Z",
            "url": "https://files.pythonhosted.org/packages/69/25/e14441fb03ac70af1b775045e6b05f0653829c742477e261fd11abb99709/sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f0a2a38d7092a703f487a3ef684e6498c9831b076a8f291da1d5edd48c9aa5f",
                "md5": "a6a7bd999fcee4cbabd307f34934f1e6",
                "sha256": "c138d3af8a61e65ebd22df79066eb446ea472104c640c5f84ef3dbd17301ccf2"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "a6a7bd999fcee4cbabd307f34934f1e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5944027,
            "upload_time": "2025-07-19T17:52:41",
            "upload_time_iso_8601": "2025-07-19T17:52:41.720043Z",
            "url": "https://files.pythonhosted.org/packages/6f/0a/2a38d7092a703f487a3ef684e6498c9831b076a8f291da1d5edd48c9aa5f/sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b42a8aba080db1f8c15a87c91f2717e2a8c1a99abf4a3fd904b3b263bb352fe7",
                "md5": "2debdd2fb9ff0c23b338a71a77c5f424",
                "sha256": "6234b495554c331abc10088cbd1f7d6df863c913f66c1719b5c42a035eab290b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2debdd2fb9ff0c23b338a71a77c5f424",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5950258,
            "upload_time": "2025-07-19T17:52:43",
            "upload_time_iso_8601": "2025-07-19T17:52:43.069829Z",
            "url": "https://files.pythonhosted.org/packages/b4/2a/8aba080db1f8c15a87c91f2717e2a8c1a99abf4a3fd904b3b263bb352fe7/sqlcipher3_wheels-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f2839d09cb992c81e0d94d9ce075e29438a8d1c82d1a4b753316ad49969e460",
                "md5": "7c812ac2063bdaff46cea2bebc7e3926",
                "sha256": "160b00f255a192165f47ee7087cbd8d2a7ac38c816696caac028fc491ba9f6d2"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7c812ac2063bdaff46cea2bebc7e3926",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1526838,
            "upload_time": "2025-07-19T17:52:44",
            "upload_time_iso_8601": "2025-07-19T17:52:44.332934Z",
            "url": "https://files.pythonhosted.org/packages/9f/28/39d09cb992c81e0d94d9ce075e29438a8d1c82d1a4b753316ad49969e460/sqlcipher3_wheels-0.5.5-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e9051303be7c03f1f790a4bed50335b69d86a85a4d6e36d7baeb77d2b918b5d",
                "md5": "0eee768e1d52b215a08a5409890b5834",
                "sha256": "a2350df4052143e1d518805d7584060a2e26db5ba5e85a9da319a08a4d2eeb2a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0eee768e1d52b215a08a5409890b5834",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1824230,
            "upload_time": "2025-07-19T17:52:45",
            "upload_time_iso_8601": "2025-07-19T17:52:45.681412Z",
            "url": "https://files.pythonhosted.org/packages/1e/90/51303be7c03f1f790a4bed50335b69d86a85a4d6e36d7baeb77d2b918b5d/sqlcipher3_wheels-0.5.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3d8ff66f0a075f43cbae52258ad8aa5db79ac76c1293ddd093f36b4e639d5f8",
                "md5": "6791df79754a2aa8d955af856f52dbde",
                "sha256": "75245b1d728db85c3f232983cf2edb036fc6bdad702c8969803f02bec36c3e46"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6791df79754a2aa8d955af856f52dbde",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1408850,
            "upload_time": "2025-07-19T17:52:46",
            "upload_time_iso_8601": "2025-07-19T17:52:46.927540Z",
            "url": "https://files.pythonhosted.org/packages/c3/d8/ff66f0a075f43cbae52258ad8aa5db79ac76c1293ddd093f36b4e639d5f8/sqlcipher3_wheels-0.5.5-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be7879290303998cdc099d9bc77276f6501feea91ba643a0ccbac5bd605b70be",
                "md5": "46759d116c566a3a0c351bfb2044b9f8",
                "sha256": "cc46f5779da50198a3f5991d9248f23af492d1d8a62c758f627a123aa9d60d05"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46759d116c566a3a0c351bfb2044b9f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2123158,
            "upload_time": "2025-07-19T17:52:48",
            "upload_time_iso_8601": "2025-07-19T17:52:48.766743Z",
            "url": "https://files.pythonhosted.org/packages/be/78/79290303998cdc099d9bc77276f6501feea91ba643a0ccbac5bd605b70be/sqlcipher3_wheels-0.5.5-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e46b5ad5b11bd624027e95d21b26b034697440e11b2498cb6b63014d188dd9d0",
                "md5": "58f6e519279033d98ee22ad0e83450e4",
                "sha256": "c4937a08c74f7012e122ed69baaeb4ac9604322bea432dabb3773158665eb61c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "58f6e519279033d98ee22ad0e83450e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5568536,
            "upload_time": "2025-07-19T17:52:50",
            "upload_time_iso_8601": "2025-07-19T17:52:50.386894Z",
            "url": "https://files.pythonhosted.org/packages/e4/6b/5ad5b11bd624027e95d21b26b034697440e11b2498cb6b63014d188dd9d0/sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15c61c242499a3b26dedac6b891b9929276181d7de72683262634579a0998800",
                "md5": "b6747dcb9ecba36868558fae4a74b2a0",
                "sha256": "befb3511c3741c49bd40e58db32b2408d36d8299f13a8dc5b8d037b3290d0a8f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b6747dcb9ecba36868558fae4a74b2a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5657353,
            "upload_time": "2025-07-19T17:52:51",
            "upload_time_iso_8601": "2025-07-19T17:52:51.952668Z",
            "url": "https://files.pythonhosted.org/packages/15/c6/1c242499a3b26dedac6b891b9929276181d7de72683262634579a0998800/sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42ee355e9a9b8804c145f35a72e904f6e47fb25c46785247ebb065f98de18116",
                "md5": "f12ad223db7de868592405d2adbbfaec",
                "sha256": "b82f3597a1e7cce16ef61b5b3fbd2a9d41e55269377e6c284c7b532aadf1af26"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f12ad223db7de868592405d2adbbfaec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 6029865,
            "upload_time": "2025-07-19T17:52:53",
            "upload_time_iso_8601": "2025-07-19T17:52:53.301172Z",
            "url": "https://files.pythonhosted.org/packages/42/ee/355e9a9b8804c145f35a72e904f6e47fb25c46785247ebb065f98de18116/sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d59d4473be66fc66cb1403aec2d0d8e22b26fa76af98b26c0f854b0c68f1aae8",
                "md5": "6f5f96df21f847eba0b400667cd873a7",
                "sha256": "a186c8beceba3ccf23fd97baf6dfad75fa4d937300d7226fca3ab66f55e09e39"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6f5f96df21f847eba0b400667cd873a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5655331,
            "upload_time": "2025-07-19T17:52:54",
            "upload_time_iso_8601": "2025-07-19T17:52:54.718823Z",
            "url": "https://files.pythonhosted.org/packages/d5/9d/4473be66fc66cb1403aec2d0d8e22b26fa76af98b26c0f854b0c68f1aae8/sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13747c21a48ea68f138a1fdf243fd60ada91ff1c01527e446091dbc796fa7585",
                "md5": "c5a6b035edb4189f2c5a4092b7c48835",
                "sha256": "55531f2f1702e1574595a670affa8853aedb43d9830562bed9f9d1285364ed8b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5a6b035edb4189f2c5a4092b7c48835",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5734473,
            "upload_time": "2025-07-19T17:52:56",
            "upload_time_iso_8601": "2025-07-19T17:52:56.075231Z",
            "url": "https://files.pythonhosted.org/packages/13/74/7c21a48ea68f138a1fdf243fd60ada91ff1c01527e446091dbc796fa7585/sqlcipher3_wheels-0.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df4954dc50ba3652a5362711458a9d8eb52bf87d0b0794f1c5bea4850554cac7",
                "md5": "154e095d45c29f6521162042e4935e80",
                "sha256": "335905135131786848d528bdbf953284eb38f17f9c20efd0aa4f43497c8657f4"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "154e095d45c29f6521162042e4935e80",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5679472,
            "upload_time": "2025-07-19T17:52:57",
            "upload_time_iso_8601": "2025-07-19T17:52:57.835029Z",
            "url": "https://files.pythonhosted.org/packages/df/49/54dc50ba3652a5362711458a9d8eb52bf87d0b0794f1c5bea4850554cac7/sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f74c31accbe70ba9073921208aa433674134c7de3235415ccef9df886b51ac0f",
                "md5": "1913c3093c0ffeca8f77b16ec03691be",
                "sha256": "7271724c3b38da137702115880d8d7f5b4050e5d8f0f31b8f90d45bfb4afd51f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1913c3093c0ffeca8f77b16ec03691be",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5882056,
            "upload_time": "2025-07-19T17:52:59",
            "upload_time_iso_8601": "2025-07-19T17:52:59.278298Z",
            "url": "https://files.pythonhosted.org/packages/f7/4c/31accbe70ba9073921208aa433674134c7de3235415ccef9df886b51ac0f/sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0479ae8d56be0b7a49576aa0b1d91b67f4c3d6b49eef3d3eb661bf817e0f07f9",
                "md5": "4dc178691b1328950c3f91148b2e799a",
                "sha256": "8c742d83c6b5caae0643a7af88e4143230456394ee22faf3a920391062d1b1ee"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4dc178691b1328950c3f91148b2e799a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 6202246,
            "upload_time": "2025-07-19T17:53:00",
            "upload_time_iso_8601": "2025-07-19T17:53:00.838212Z",
            "url": "https://files.pythonhosted.org/packages/04/79/ae8d56be0b7a49576aa0b1d91b67f4c3d6b49eef3d3eb661bf817e0f07f9/sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cda446831600744994f012593cf8e3bbcfb9a4dc628469c1312ccd224f3b4fe",
                "md5": "418551f7aff819902eb3a617c47ddd71",
                "sha256": "d83af2aa202e126bbfe46f3ae26bb4665e37231a47ddc010472c4138c63b5fff"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "418551f7aff819902eb3a617c47ddd71",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5915497,
            "upload_time": "2025-07-19T17:53:02",
            "upload_time_iso_8601": "2025-07-19T17:53:02.168086Z",
            "url": "https://files.pythonhosted.org/packages/5c/da/446831600744994f012593cf8e3bbcfb9a4dc628469c1312ccd224f3b4fe/sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1866effa5a7022220b6a720674c935a56840c2df2e48d813a0d181d0d761d59c",
                "md5": "ba40e219993668cd25ff0d9ea0b76fa3",
                "sha256": "9cf7dda384891c6afa807b886de8ee6f7423dee103746dd13fe4e50c3e059a4f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba40e219993668cd25ff0d9ea0b76fa3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5923438,
            "upload_time": "2025-07-19T17:53:03",
            "upload_time_iso_8601": "2025-07-19T17:53:03.607258Z",
            "url": "https://files.pythonhosted.org/packages/18/66/effa5a7022220b6a720674c935a56840c2df2e48d813a0d181d0d761d59c/sqlcipher3_wheels-0.5.5-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a22ee3fc0deab5ff90fc4df56033d1c9f8cf449e4cc4401a3f8cce668f79b497",
                "md5": "307d045cfb3d029754df63c98588087d",
                "sha256": "93feb77a4e8d64a06cf3a2ba269ac535c32dc500a392c56b43d570c3b09e619e"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "307d045cfb3d029754df63c98588087d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1579950,
            "upload_time": "2025-07-19T17:53:04",
            "upload_time_iso_8601": "2025-07-19T17:53:04.848359Z",
            "url": "https://files.pythonhosted.org/packages/a2/2e/e3fc0deab5ff90fc4df56033d1c9f8cf449e4cc4401a3f8cce668f79b497/sqlcipher3_wheels-0.5.5-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16b6587681749d6d2b22032f5e282cb78f8e481209fb00d839dd40577583b3dc",
                "md5": "4af8150b8f39f316130a70c2780fd965",
                "sha256": "222437b9d6c509f44499dcc5a33a2d67d11ff8ab1ba713ce4d624ad464b6830a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4af8150b8f39f316130a70c2780fd965",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1906404,
            "upload_time": "2025-07-19T17:53:06",
            "upload_time_iso_8601": "2025-07-19T17:53:06.013119Z",
            "url": "https://files.pythonhosted.org/packages/16/b6/587681749d6d2b22032f5e282cb78f8e481209fb00d839dd40577583b3dc/sqlcipher3_wheels-0.5.5-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7309f3adf9e111da2008848eb2b60fee77a5b052710faceebcaff6660394776d",
                "md5": "57a18f8b25c39d214b20b629e672c743",
                "sha256": "4c456f6436a8ba9bfc4f8763548833bcedba5dc1f679acfa28f7e58aef9b9d74"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57a18f8b25c39d214b20b629e672c743",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2125432,
            "upload_time": "2025-07-19T17:53:08",
            "upload_time_iso_8601": "2025-07-19T17:53:08.393978Z",
            "url": "https://files.pythonhosted.org/packages/73/09/f3adf9e111da2008848eb2b60fee77a5b052710faceebcaff6660394776d/sqlcipher3_wheels-0.5.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46c01607b6efeac9cadd9ad40e063d0d6f55f62a5cdd8a5fc0e30e9698db74bf",
                "md5": "6f3ce93954dc3c08c9a08bd62a41518f",
                "sha256": "62abc395cb6bc8be9f4e5054381b4202935b2c042600704c80c3a40416925f3a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6f3ce93954dc3c08c9a08bd62a41518f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5576758,
            "upload_time": "2025-07-19T17:53:10",
            "upload_time_iso_8601": "2025-07-19T17:53:10.256113Z",
            "url": "https://files.pythonhosted.org/packages/46/c0/1607b6efeac9cadd9ad40e063d0d6f55f62a5cdd8a5fc0e30e9698db74bf/sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b474913ef2d72f68934475096a802a5a7aaa60360cb9861ce8a9c3f78df10c8",
                "md5": "e1f119e446817491bf1a5647c13e7bda",
                "sha256": "87093942fbfe0e13f4cc45e2210f8546acd9ba18483e643e75990cbe6c56a9d0"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e1f119e446817491bf1a5647c13e7bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5666573,
            "upload_time": "2025-07-19T17:53:11",
            "upload_time_iso_8601": "2025-07-19T17:53:11.699281Z",
            "url": "https://files.pythonhosted.org/packages/0b/47/4913ef2d72f68934475096a802a5a7aaa60360cb9861ce8a9c3f78df10c8/sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c12feb94b4d837e4656895567be98ce403292eb84b9f2248fa8fd32de561236c",
                "md5": "6685f1c155d6d04a5d08586406bcaf44",
                "sha256": "18e08168aac54216a46a4e7b9ee7524f096e6808b6f7af2cced363fb0e83b969"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6685f1c155d6d04a5d08586406bcaf44",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 6041182,
            "upload_time": "2025-07-19T17:53:13",
            "upload_time_iso_8601": "2025-07-19T17:53:13.658383Z",
            "url": "https://files.pythonhosted.org/packages/c1/2f/eb94b4d837e4656895567be98ce403292eb84b9f2248fa8fd32de561236c/sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77c08b4e224744b6d645ec9ecb4b9fe9726ec4f06ca82e780ba8b24659e8ab05",
                "md5": "7ad0817e84f2166cbef10587bafbc065",
                "sha256": "d101613d452dfa2c275ba33a000dcff64b78a2375569fdbba54437abbf0e2d5f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7ad0817e84f2166cbef10587bafbc065",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5664397,
            "upload_time": "2025-07-19T17:53:15",
            "upload_time_iso_8601": "2025-07-19T17:53:15.168669Z",
            "url": "https://files.pythonhosted.org/packages/77/c0/8b4e224744b6d645ec9ecb4b9fe9726ec4f06ca82e780ba8b24659e8ab05/sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a647c185ed3099822c6d8970711a7ad1fb188e62656b4cdae80ea2f0c595e2b",
                "md5": "620f1885afb8f56459003589a009136a",
                "sha256": "5317cba0098765658f28118165f3873a43e8146033ec01d4410d6cc27d99ae8a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "620f1885afb8f56459003589a009136a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5742675,
            "upload_time": "2025-07-19T17:53:16",
            "upload_time_iso_8601": "2025-07-19T17:53:16.580405Z",
            "url": "https://files.pythonhosted.org/packages/6a/64/7c185ed3099822c6d8970711a7ad1fb188e62656b4cdae80ea2f0c595e2b/sqlcipher3_wheels-0.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d54bf554f2dcabd1e2fdc80c6728142e7f34dfefff431dd5ece9ad644de87ed6",
                "md5": "88fb6f2ad194844a8fbf5310ee7cc09e",
                "sha256": "27437ddb647f945a03fcc428a8ce34d531c275184f19f83d7c244a5900c8cc8b"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88fb6f2ad194844a8fbf5310ee7cc09e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5686116,
            "upload_time": "2025-07-19T17:53:18",
            "upload_time_iso_8601": "2025-07-19T17:53:18.143342Z",
            "url": "https://files.pythonhosted.org/packages/d5/4b/f554f2dcabd1e2fdc80c6728142e7f34dfefff431dd5ece9ad644de87ed6/sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de29309f061abec09c687cacbd39c09f99fb6a5383d6c775e5cb3e72a1a37dae",
                "md5": "d542074a7f0c799f148f1da49fe54ca2",
                "sha256": "28de5a2d5ec4a6e48912ef60b6b975f40fb9cc04b680bfc17f7f2d3d79f043f8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d542074a7f0c799f148f1da49fe54ca2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5890531,
            "upload_time": "2025-07-19T17:53:19",
            "upload_time_iso_8601": "2025-07-19T17:53:19.926753Z",
            "url": "https://files.pythonhosted.org/packages/de/29/309f061abec09c687cacbd39c09f99fb6a5383d6c775e5cb3e72a1a37dae/sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df303eef05e43dc59cf53655d1f097d75b8dbcbd2a45a7692468b215b48b71a6",
                "md5": "d9b81038b59b6384709152142233ed67",
                "sha256": "623f974668caec75ca7a248f1d8b69640421c9779bd08998cf5366538288ad4a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d9b81038b59b6384709152142233ed67",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 6210006,
            "upload_time": "2025-07-19T17:53:21",
            "upload_time_iso_8601": "2025-07-19T17:53:21.414534Z",
            "url": "https://files.pythonhosted.org/packages/df/30/3eef05e43dc59cf53655d1f097d75b8dbcbd2a45a7692468b215b48b71a6/sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79d2d4d71793278047cce897ca759e566305d2dcbc3c8d7ab661432ffc55b890",
                "md5": "3ba539b1db13981dd52e01e03893b6e6",
                "sha256": "22b3682d75b0d04ab7d2cebbfcd99a5bbd8bbecfbe0740cef3013ea4de2ef916"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "3ba539b1db13981dd52e01e03893b6e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5923685,
            "upload_time": "2025-07-19T17:53:23",
            "upload_time_iso_8601": "2025-07-19T17:53:23.244397Z",
            "url": "https://files.pythonhosted.org/packages/79/d2/d4d71793278047cce897ca759e566305d2dcbc3c8d7ab661432ffc55b890/sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97d00e9afd86ad311f37e4bd474d5ee3b0d7929d93d81cff7ab22a64b859c321",
                "md5": "780cc75d635e5b075e19af363e42bab9",
                "sha256": "7cecea71fac0b20d0646849893cef547c91a72b1beb0ad7c3d64494107c541a9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "780cc75d635e5b075e19af363e42bab9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5930348,
            "upload_time": "2025-07-19T17:53:24",
            "upload_time_iso_8601": "2025-07-19T17:53:24.824624Z",
            "url": "https://files.pythonhosted.org/packages/97/d0/0e9afd86ad311f37e4bd474d5ee3b0d7929d93d81cff7ab22a64b859c321/sqlcipher3_wheels-0.5.5-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8c0129f5aaf8df33f9325e7d7dc52fee5796956a938f8dba882e4f13af5e5bc",
                "md5": "014ca9d09285797c53c8782917dd8fd5",
                "sha256": "89cbe988eb61cc334ee47c524abe177d57e6a1477f4b3ac93f38f9ae4e951e2d"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "014ca9d09285797c53c8782917dd8fd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1522582,
            "upload_time": "2025-07-19T17:53:26",
            "upload_time_iso_8601": "2025-07-19T17:53:26.446972Z",
            "url": "https://files.pythonhosted.org/packages/b8/c0/129f5aaf8df33f9325e7d7dc52fee5796956a938f8dba882e4f13af5e5bc/sqlcipher3_wheels-0.5.5-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9187f8d79581ce3e192a9bc05da559f07851d65480b0c04322d2dab4c7f8f47e",
                "md5": "8141727477600a7e3bb9778c648559b9",
                "sha256": "2292c75b8d4700ac3f1ea7bb8e10cb81394e66ad31bd876d1e9ff861c936e269"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8141727477600a7e3bb9778c648559b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1820648,
            "upload_time": "2025-07-19T17:53:27",
            "upload_time_iso_8601": "2025-07-19T17:53:27.710245Z",
            "url": "https://files.pythonhosted.org/packages/91/87/f8d79581ce3e192a9bc05da559f07851d65480b0c04322d2dab4c7f8f47e/sqlcipher3_wheels-0.5.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f4a313d838243f5e31b286b31321fabc743ea5d77a6df968886470072da26ad",
                "md5": "1bb3d2fc54d6deb0b1a93b1ee05a0854",
                "sha256": "52654f0eb37dd6e80f69037bb710d807559e72d504fda02297e25e82446839ab"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1bb3d2fc54d6deb0b1a93b1ee05a0854",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4063567,
            "upload_time": "2025-07-19T17:53:29",
            "upload_time_iso_8601": "2025-07-19T17:53:29.562887Z",
            "url": "https://files.pythonhosted.org/packages/9f/4a/313d838243f5e31b286b31321fabc743ea5d77a6df968886470072da26ad/sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd61754f684ffd23d259ed9e428098eddd39cdd9c643f7a4a28b9a3ae995fbfc",
                "md5": "4c783b7546462be29c4f39488b872a4f",
                "sha256": "0239d11c656ca93281be78f24fad6ceb8b5e93c8a25308e373c2b4252f7b80e4"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c783b7546462be29c4f39488b872a4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2129493,
            "upload_time": "2025-07-19T17:53:30",
            "upload_time_iso_8601": "2025-07-19T17:53:30.910782Z",
            "url": "https://files.pythonhosted.org/packages/bd/61/754f684ffd23d259ed9e428098eddd39cdd9c643f7a4a28b9a3ae995fbfc/sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2c14c2ee79a4398493309cc1a737c85ff7a34eae3380882a6032a469759184b",
                "md5": "cc3efc71acf4fec180f0fc80ad880e89",
                "sha256": "74ef4e6bd55f9e24c8c6467d22591ce6de60319849d9ef8291b25075707969ae"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc3efc71acf4fec180f0fc80ad880e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1943823,
            "upload_time": "2025-07-19T17:53:32",
            "upload_time_iso_8601": "2025-07-19T17:53:32.044045Z",
            "url": "https://files.pythonhosted.org/packages/f2/c1/4c2ee79a4398493309cc1a737c85ff7a34eae3380882a6032a469759184b/sqlcipher3_wheels-0.5.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84d4b59ce4b8181d08200b095dcfe39d127ab94e1b884355535727e47436902e",
                "md5": "7ab7a5d77930400953609489eec534ea",
                "sha256": "3465f6a515f6b2264721679478e9fdea1f65ce1b5c3304105eed8ae6a28fda3c"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ab7a5d77930400953609489eec534ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5590121,
            "upload_time": "2025-07-19T17:53:33",
            "upload_time_iso_8601": "2025-07-19T17:53:33.418059Z",
            "url": "https://files.pythonhosted.org/packages/84/d4/b59ce4b8181d08200b095dcfe39d127ab94e1b884355535727e47436902e/sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c2dc4258ef7b9c6fd11ebacc39d5a06e124d6d72a1f76a9b31387de1f72ccc6",
                "md5": "85c6edec7b6d2d2d8d2de23f7fe7adb5",
                "sha256": "357437be8e9f41d401ae45df26ca9ea205c8915545b71a57a4bd3466e49ba8de"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "85c6edec7b6d2d2d8d2de23f7fe7adb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5681255,
            "upload_time": "2025-07-19T17:53:34",
            "upload_time_iso_8601": "2025-07-19T17:53:34.860585Z",
            "url": "https://files.pythonhosted.org/packages/7c/2d/c4258ef7b9c6fd11ebacc39d5a06e124d6d72a1f76a9b31387de1f72ccc6/sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b8996606446a1e7e9f04fdaefb48d142f378f6db694c300349887d34108ad7c",
                "md5": "c49a2a0054e69726625cea87927d31dc",
                "sha256": "ab61183baf5ea632ba960aa8d80186f6e299180d89d973cd9e565a85f54f6658"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c49a2a0054e69726625cea87927d31dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 6056240,
            "upload_time": "2025-07-19T17:53:36",
            "upload_time_iso_8601": "2025-07-19T17:53:36.327446Z",
            "url": "https://files.pythonhosted.org/packages/1b/89/96606446a1e7e9f04fdaefb48d142f378f6db694c300349887d34108ad7c/sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e81db74ba8ef74239633c813bf0513f633738db72eaf0b4f99db6ac04888fd0",
                "md5": "9b2b90b7f0f0dce6f754daed322b8cb6",
                "sha256": "3c505895e4e43bbe14efab872b2fd8e2479d3caf8a4f01979295618cb0889e39"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9b2b90b7f0f0dce6f754daed322b8cb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5676502,
            "upload_time": "2025-07-19T17:53:37",
            "upload_time_iso_8601": "2025-07-19T17:53:37.840629Z",
            "url": "https://files.pythonhosted.org/packages/6e/81/db74ba8ef74239633c813bf0513f633738db72eaf0b4f99db6ac04888fd0/sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "571c2c3c4ae0062d9c535223d58573ee8593a5d4eca328a577b4999f912b0624",
                "md5": "2f9f4af0a6941eb83b8e41af903a9ac1",
                "sha256": "4a13633b60e15862b64dcb5605d5d8eaacfd9e3b0b39ce78a50dafa92a9068f6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f9f4af0a6941eb83b8e41af903a9ac1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5754883,
            "upload_time": "2025-07-19T17:53:39",
            "upload_time_iso_8601": "2025-07-19T17:53:39.633037Z",
            "url": "https://files.pythonhosted.org/packages/57/1c/2c3c4ae0062d9c535223d58573ee8593a5d4eca328a577b4999f912b0624/sqlcipher3_wheels-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc8dbed521c3ecc317b02bf1b423c3fb1f0c2d7ef52ed22aa5660d0fe39ad3ac",
                "md5": "98b54614e6d62b7b11506fcab19b6cf5",
                "sha256": "40e8fd775553dd67362003790a83d6a454471c5eb692fcf5ea6b20cec8aad4e9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98b54614e6d62b7b11506fcab19b6cf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5698755,
            "upload_time": "2025-07-19T17:53:41",
            "upload_time_iso_8601": "2025-07-19T17:53:41.520713Z",
            "url": "https://files.pythonhosted.org/packages/dc/8d/bed521c3ecc317b02bf1b423c3fb1f0c2d7ef52ed22aa5660d0fe39ad3ac/sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b94067934fd3e51076b2c413c9f1330106979dc281484855e09617b8d9d16a4",
                "md5": "3c31875f21b8750d6356f30659ffcb15",
                "sha256": "d789a1b1d514cbd2a85b7c44513edcf56fe1d7602fd5f1d3ca267b62105413fc"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c31875f21b8750d6356f30659ffcb15",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5903041,
            "upload_time": "2025-07-19T17:53:42",
            "upload_time_iso_8601": "2025-07-19T17:53:42.986769Z",
            "url": "https://files.pythonhosted.org/packages/3b/94/067934fd3e51076b2c413c9f1330106979dc281484855e09617b8d9d16a4/sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "422aef4a8d74b94425025dd59110dedb547f0a3eb89f6f3fa5b0eac8ffdf2166",
                "md5": "c3633bbf5f7a72e3c2eb46f5e40e40c3",
                "sha256": "4c3ba682d66b2444839e3bf9ed0086f6042654588dfa5879bd3979199f3a32d6"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c3633bbf5f7a72e3c2eb46f5e40e40c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 6225174,
            "upload_time": "2025-07-19T17:53:44",
            "upload_time_iso_8601": "2025-07-19T17:53:44.393329Z",
            "url": "https://files.pythonhosted.org/packages/42/2a/ef4a8d74b94425025dd59110dedb547f0a3eb89f6f3fa5b0eac8ffdf2166/sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2be1b295d629081b5c6cc63d769912fcd3908a3c4b5fb10d7819822f092860d4",
                "md5": "61e0be87834dd8febcc34aa0c4cf0eac",
                "sha256": "02debc51dfb86c636adfdf3c08f5f468b3d05a0d5dc090d7d9f095b758027db7"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "61e0be87834dd8febcc34aa0c4cf0eac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5934030,
            "upload_time": "2025-07-19T17:53:45",
            "upload_time_iso_8601": "2025-07-19T17:53:45.803399Z",
            "url": "https://files.pythonhosted.org/packages/2b/e1/b295d629081b5c6cc63d769912fcd3908a3c4b5fb10d7819822f092860d4/sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f12b2da4ac5ac7538328f76e1ac3c04eee834303f88ec4c8a3b84ecc755a232",
                "md5": "5f6295c30c74e2cf8a25c0f68739fe9e",
                "sha256": "2227aad2d71993359d38fddc8a40ec01e114244e7809786abf29f2eca3077371"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f6295c30c74e2cf8a25c0f68739fe9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5942484,
            "upload_time": "2025-07-19T17:53:47",
            "upload_time_iso_8601": "2025-07-19T17:53:47.633808Z",
            "url": "https://files.pythonhosted.org/packages/4f/12/b2da4ac5ac7538328f76e1ac3c04eee834303f88ec4c8a3b84ecc755a232/sqlcipher3_wheels-0.5.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd4c8eae93b531bb8c6d63fc38dbd16acbeaa23a7d7eafebc88e44526342550e",
                "md5": "44bab1cb443be5a1e830be622e8558f4",
                "sha256": "cce1970cc0c79104c829009a4582669b5c4545339516f438e5c014d34e0415a9"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "44bab1cb443be5a1e830be622e8558f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1526534,
            "upload_time": "2025-07-19T17:53:48",
            "upload_time_iso_8601": "2025-07-19T17:53:48.868274Z",
            "url": "https://files.pythonhosted.org/packages/fd/4c/8eae93b531bb8c6d63fc38dbd16acbeaa23a7d7eafebc88e44526342550e/sqlcipher3_wheels-0.5.5-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6e8dd276aa342c5cb4eda3ebf651a01a203b6933b56f2f1745872cf16f4f07a",
                "md5": "010a21cc8ed9f6876c0ce93095a04874",
                "sha256": "28fbc2205851104ed945d8ff8ca255d326d1974245b19a0a5f5df50ad84907f5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "010a21cc8ed9f6876c0ce93095a04874",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1824255,
            "upload_time": "2025-07-19T17:53:50",
            "upload_time_iso_8601": "2025-07-19T17:53:50.200862Z",
            "url": "https://files.pythonhosted.org/packages/e6/e8/dd276aa342c5cb4eda3ebf651a01a203b6933b56f2f1745872cf16f4f07a/sqlcipher3_wheels-0.5.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ea7ca2f2aea34fbe456643994a936a6ad986a47113539c93ff53b5f0015449b",
                "md5": "e2c9bb3f360519aa6bde0a1a67481b82",
                "sha256": "7e7bf5def7a33c535da65b8e7c367306ed85e70ffcc05c713ccf5fc9294343c5"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e2c9bb3f360519aa6bde0a1a67481b82",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3548283,
            "upload_time": "2025-07-19T17:53:51",
            "upload_time_iso_8601": "2025-07-19T17:53:51.576714Z",
            "url": "https://files.pythonhosted.org/packages/1e/a7/ca2f2aea34fbe456643994a936a6ad986a47113539c93ff53b5f0015449b/sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a54e00ecd030b2973bbc7f2ee0d6218ecf7d41d3fdd8a61f05e147499285e9bd",
                "md5": "eb3a32aa6c9486b67c1397ec058fda06",
                "sha256": "4b0a1d40b4c73b24cca37f1844e5f6071c1514a22fda29b6a81e401a527962f8"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb3a32aa6c9486b67c1397ec058fda06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1815192,
            "upload_time": "2025-07-19T17:53:52",
            "upload_time_iso_8601": "2025-07-19T17:53:52.954098Z",
            "url": "https://files.pythonhosted.org/packages/a5/4e/00ecd030b2973bbc7f2ee0d6218ecf7d41d3fdd8a61f05e147499285e9bd/sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9294e13e62197428d382896824b93bc6a286e4d4a6e11d49bbe5fb33a2596e7a",
                "md5": "34cea3d4d4bcb84b6bf32fa627d49950",
                "sha256": "b443dd3df4b455a0891c6618ce0a1e1fa0d41f0fc72aeb1d3c512c9d43a93bac"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "34cea3d4d4bcb84b6bf32fa627d49950",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1744326,
            "upload_time": "2025-07-19T17:53:55",
            "upload_time_iso_8601": "2025-07-19T17:53:55.130349Z",
            "url": "https://files.pythonhosted.org/packages/92/94/e13e62197428d382896824b93bc6a286e4d4a6e11d49bbe5fb33a2596e7a/sqlcipher3_wheels-0.5.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e2bb3e76949d7da076630d0bb4813e02420cac6ff87c7c1e3186de801b5bd71",
                "md5": "c081e509384691ba01a59c0269e3b437",
                "sha256": "c79291d0256961d5368ad0a76a1c2cc2521ca70caebd39b8c91fd31f67972691"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c081e509384691ba01a59c0269e3b437",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5586812,
            "upload_time": "2025-07-19T17:53:56",
            "upload_time_iso_8601": "2025-07-19T17:53:56.499854Z",
            "url": "https://files.pythonhosted.org/packages/5e/2b/b3e76949d7da076630d0bb4813e02420cac6ff87c7c1e3186de801b5bd71/sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d9e588a3cbc0ae6fe4c0b56a4a379beed3f259f8c9475cb7b8e1fa81bfb8f90",
                "md5": "35dcc960bd2a3ed5c9f9ef792eb27390",
                "sha256": "4258ad4c83396d2bfc4aab39b425749d6277af8306c1bc86db7d73a57a849b57"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "35dcc960bd2a3ed5c9f9ef792eb27390",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5677841,
            "upload_time": "2025-07-19T17:53:57",
            "upload_time_iso_8601": "2025-07-19T17:53:57.880152Z",
            "url": "https://files.pythonhosted.org/packages/9d/9e/588a3cbc0ae6fe4c0b56a4a379beed3f259f8c9475cb7b8e1fa81bfb8f90/sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cf63adf0294a9eaee587c10b2d833e432684a5a5ffa4f3facc2dbdf15eee447",
                "md5": "58e4708816c04b132d66c43761b90240",
                "sha256": "5b0516258f466bfd21c39155b8c1fea854562d7fee59c89dbf3f8711993dadea"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "58e4708816c04b132d66c43761b90240",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 6052889,
            "upload_time": "2025-07-19T17:53:59",
            "upload_time_iso_8601": "2025-07-19T17:53:59.315475Z",
            "url": "https://files.pythonhosted.org/packages/2c/f6/3adf0294a9eaee587c10b2d833e432684a5a5ffa4f3facc2dbdf15eee447/sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4da1e947ad67ae77872be5e8f320fb9cb41c5f20d95713fb2b598ac54f0b861e",
                "md5": "1bb3f59ed730617bf0b43263176236eb",
                "sha256": "3f0ca994ce32c18a1a94515f013b550adf52abb4202e08ece8bb09baeb178c55"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1bb3f59ed730617bf0b43263176236eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5673459,
            "upload_time": "2025-07-19T17:54:00",
            "upload_time_iso_8601": "2025-07-19T17:54:00.695981Z",
            "url": "https://files.pythonhosted.org/packages/4d/a1/e947ad67ae77872be5e8f320fb9cb41c5f20d95713fb2b598ac54f0b861e/sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d35c88688b69a52f13176c6e86cf8be163b9c5b00d11b3401da0a7c2a0ad2344",
                "md5": "b88ade613208d760613bef4c2b8bedb0",
                "sha256": "7bf1e35dcceef729d1276d92034796fe778eaa3b84934e05ba398fffb9c83b6a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b88ade613208d760613bef4c2b8bedb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5751185,
            "upload_time": "2025-07-19T17:54:02",
            "upload_time_iso_8601": "2025-07-19T17:54:02.593944Z",
            "url": "https://files.pythonhosted.org/packages/d3/5c/88688b69a52f13176c6e86cf8be163b9c5b00d11b3401da0a7c2a0ad2344/sqlcipher3_wheels-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af59cc773d5bfb927086511b51592627b21fc06c0f3f669831cd34d9422d2cdf",
                "md5": "e952064dbdf1865721edfdbd80325de3",
                "sha256": "2af6a201b1e6486a7389676b9a2a58590705ed360d51274740ead3a48de00708"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e952064dbdf1865721edfdbd80325de3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5695583,
            "upload_time": "2025-07-19T17:54:03",
            "upload_time_iso_8601": "2025-07-19T17:54:03.998994Z",
            "url": "https://files.pythonhosted.org/packages/af/59/cc773d5bfb927086511b51592627b21fc06c0f3f669831cd34d9422d2cdf/sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5d60f189ab89f861ef27343b640d5a17451fe6da9e21fe233012f2f66175f3e",
                "md5": "eb2bf0a606116184b3792a41636f5e93",
                "sha256": "6b2a2d1a1d36b309bebf281acc39339979c456545b51d5e587e3e68b7f5c2d3f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "eb2bf0a606116184b3792a41636f5e93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5900395,
            "upload_time": "2025-07-19T17:54:05",
            "upload_time_iso_8601": "2025-07-19T17:54:05.777244Z",
            "url": "https://files.pythonhosted.org/packages/e5/d6/0f189ab89f861ef27343b640d5a17451fe6da9e21fe233012f2f66175f3e/sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "849c5b1752975531fcdf9020c8983334944dffa9ed6299798abd500c0779641e",
                "md5": "312127f0b9f5efcacd91f1729499ba89",
                "sha256": "75f7a1e9c3d6ba4cb9c1dc91e67fbbd93472450a7c06b1ad2d37872b7470f6f3"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "312127f0b9f5efcacd91f1729499ba89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 6221469,
            "upload_time": "2025-07-19T17:54:07",
            "upload_time_iso_8601": "2025-07-19T17:54:07.221183Z",
            "url": "https://files.pythonhosted.org/packages/84/9c/5b1752975531fcdf9020c8983334944dffa9ed6299798abd500c0779641e/sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaf4cc975a7b6c10d3c8d9bbe2c0aa8372b00fbf6aef8d17e341e6ec97f5ab03",
                "md5": "64a9f0342ee6f4c2bfcc2e3b8e56f143",
                "sha256": "827d39b1f39e566327362d557f340fed05a084bf02c760f75642b5242feb2fcf"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "64a9f0342ee6f4c2bfcc2e3b8e56f143",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5930760,
            "upload_time": "2025-07-19T17:54:08",
            "upload_time_iso_8601": "2025-07-19T17:54:08.593186Z",
            "url": "https://files.pythonhosted.org/packages/ea/f4/cc975a7b6c10d3c8d9bbe2c0aa8372b00fbf6aef8d17e341e6ec97f5ab03/sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f4cdb80ceae7736b164e87fec5df81012c8ac303b35d7ee6b116907817bad8c",
                "md5": "444a35ba0ee445c8fc6edb38e84e2110",
                "sha256": "e4d5a1a1358f1589a054e4221058c82780aea25a00d289339b3f65481e3dfba0"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "444a35ba0ee445c8fc6edb38e84e2110",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5939246,
            "upload_time": "2025-07-19T17:54:10",
            "upload_time_iso_8601": "2025-07-19T17:54:10.333910Z",
            "url": "https://files.pythonhosted.org/packages/1f/4c/db80ceae7736b164e87fec5df81012c8ac303b35d7ee6b116907817bad8c/sqlcipher3_wheels-0.5.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1ea65f350e751739b53784735cd8dcc00e0b4214856c06bc46d7fba33962c2d",
                "md5": "fc9232e7e77aa2f29f0c682d7382f8e6",
                "sha256": "657323b8dbaed0dc9acf317940c3673ccf67594ef1d22c1de9ecf17d8a67c85a"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "fc9232e7e77aa2f29f0c682d7382f8e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1526571,
            "upload_time": "2025-07-19T17:54:11",
            "upload_time_iso_8601": "2025-07-19T17:54:11.793602Z",
            "url": "https://files.pythonhosted.org/packages/f1/ea/65f350e751739b53784735cd8dcc00e0b4214856c06bc46d7fba33962c2d/sqlcipher3_wheels-0.5.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c02e331beca6e483685a6e4e9af44897b046ec0bbe4f1310ff4524336da87c0f",
                "md5": "037ab8b30cc3c269327933976da35b18",
                "sha256": "12637b5cebdae6b97fece824c87b5b4b2192990bfd018a763e997f3d045ce5f7"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "037ab8b30cc3c269327933976da35b18",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1824257,
            "upload_time": "2025-07-19T17:54:13",
            "upload_time_iso_8601": "2025-07-19T17:54:13.075287Z",
            "url": "https://files.pythonhosted.org/packages/c0/2e/331beca6e483685a6e4e9af44897b046ec0bbe4f1310ff4524336da87c0f/sqlcipher3_wheels-0.5.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "361eff97dad2a9413169ec6a641ac9db43cff7ac1a179e3426091f0caf2313f4",
                "md5": "e5a640efb53eebb26b25e4c282ff7f9f",
                "sha256": "da3a187076f499e787868f5ee1c17f32bd9887c688e0e3017f23bef92f8da11f"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5a640efb53eebb26b25e4c282ff7f9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1409073,
            "upload_time": "2025-07-19T17:54:14",
            "upload_time_iso_8601": "2025-07-19T17:54:14.363084Z",
            "url": "https://files.pythonhosted.org/packages/36/1e/ff97dad2a9413169ec6a641ac9db43cff7ac1a179e3426091f0caf2313f4/sqlcipher3_wheels-0.5.5-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be71c9db8d95484263058936ede39b0657c28c586c8525ef8efc454d510829fe",
                "md5": "9bf0b3c8c760260e90f1c43d1cfca820",
                "sha256": "beff1e8bde374fc76ecdfba6de74155f5b5b608c7247e527e698cffcae60e2b7"
            },
            "downloads": -1,
            "filename": "sqlcipher3_wheels-0.5.5.tar.gz",
            "has_sig": false,
            "md5_digest": "9bf0b3c8c760260e90f1c43d1cfca820",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2581279,
            "upload_time": "2025-07-19T17:54:15",
            "upload_time_iso_8601": "2025-07-19T17:54:15.546419Z",
            "url": "https://files.pythonhosted.org/packages/be/71/c9db8d95484263058936ede39b0657c28c586c8525ef8efc454d510829fe/sqlcipher3_wheels-0.5.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-19 17:54:15",
    "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: 1.58147s