[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/simo7/sqlc-gen-python/main/examples/sqlc.yaml [Back]  [Original]

version: '2'
plugins:
- name: py
  wasm:
    url: https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.2.0.wasm
    sha256: a6c5d174c407007c3717eea36ff0882744346e6ba991f92f71d6ab2895204c0e
sql:
- schema: "src/authors/schema.sql"
  queries: "src/authors/query.sql"
  engine: postgresql
  codegen:
  - out: src/authors
    plugin: py
    options:
      package: authors
      emit_sync_querier: true
      emit_async_querier: true
      query_parameter_limit: 5
- schema: "src/booktest/schema.sql"
  queries: "src/booktest/query.sql"
  engine: postgresql
  codegen:
  - out: src/booktest
    plugin: py
    options:
      package: booktest
      emit_async_querier: true
      query_parameter_limit: 5
- schema: "src/jets/schema.sql"
  queries: "src/jets/query-building.sql"
  engine: postgresql
  codegen:
  - out: src/jets
    plugin: py
    options:
      package: jets
      emit_async_querier: true
      query_parameter_limit: 5
- schema: "src/ondeck/schema"
  queries: "src/ondeck/query"
  engine: postgresql
  codegen:
  - out: src/ondeck
    plugin: py
    options:
      package: ondeck
      emit_async_querier: true
      query_parameter_limit: 5

Web Proxy Viewer  |  New URL  |  Original Page