Skip to main content

Quill SDK for Python.

Project description

Quill Python SDK

Quickstart

First, install the quillsql package by running:

$ pip install quillsql

Then, add a /quill endpoint to your existing python server. For example, if you were running a FASTAPI app, you would just add the endpoint like this:

from quillsql import Quill

quill = Quill(
    private_key=os.getenv("QULL_PRIVATE_KEY"),
    database_connection_string=os.getenv("POSTGRES_READ"),
    database_type="postgresql"
)

security = HTTPBearer()

async def authenticate_jwt(token: str = Depends(security)):
    # Your JWT validation logic here
    # Return user object or raise HTTPException
    user = validate_jwt_token(token.credentials)
    return user

@app.post("/quill")
async def quill_post(data: Request, user: dict = Depends(authenticate_jwt)):
    # assuming user fetched via auth middleware has an userId
    user_id = user["user_id"]
    body = await data.json()
    metadata = body.get("metadata")

    result = quill.query(
        tenants=[{"tenantField": "user_id", "tenantIds": [user_id]}],
        metadata=metadata
    )
    return result

Then you can run your app like normally. Pass in this route to our react library on the frontend and you all set!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quillsql-2.2.4.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

quillsql-2.2.4-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

Details for the file quillsql-2.2.4.tar.gz.

File metadata

  • Download URL: quillsql-2.2.4.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for quillsql-2.2.4.tar.gz
Algorithm Hash digest
SHA256 0b0bbeb9e9f9e006cb6cbcec8a4a31498887a22622cc07651a40bb1db6337523
MD5 523854ce90c60fb3066daaaa397fc375
BLAKE2b-256 c695faee353d5a0724ee1ddc3ce3e310ba74e6b58edffc69b91513ec6b9df63a

See more details on using hashes here.

File details

Details for the file quillsql-2.2.4-py3-none-any.whl.

File metadata

  • Download URL: quillsql-2.2.4-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for quillsql-2.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 454b92c28589e6d4132053b4dbbc999e05ddd7a45705c4b0c7795b78d02f0b78
MD5 bd145516824e4cd4a19088633e0de4fe
BLAKE2b-256 feb75d6580c529484c309ff691eba2295110733d4bef27d517df7572bad75093

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page