{"library":"sqlcipher3-binary","title":"sqlcipher3-wheels","type":"library","description":"A DB-API 2.0 interface for SQLCipher 3.x, providing encrypted SQLite databases. The 'wheels' variant includes precompiled SQLCipher binaries for easier installation. Current version: 0.5.7.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install sqlcipher3-binary"],"cli":null},"imports":["from sqlcipher3 import dbapi2 as sqlite","import sqlcipher3.dbapi2 as sqlite"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/coleifer/sqlcipher3","docs":null,"changelog":null,"pypi":"https://pypi.org/project/sqlcipher3-binary/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import sqlcipher3.dbapi2 as sqlite\nconn = sqlite.connect('encrypted.db')\nconn.execute(\"PRAGMA key = 'secret'\")\ncursor = conn.execute(\"SELECT 'Hello, encrypted world!'\")\nprint(cursor.fetchone()[0])\nconn.close()","lang":"python","description":"Create an encrypted SQLite database, set the encryption key with PRAGMA key, and execute a query.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}