Skip to main content

Database Interaction Services for GeneWeaver

Project description

Geneweaver DB

Tests Style Coverage

The Geneweaver DB library provides database access functionality for the Geneweaver project. The library contains SQL queries wrapped in standard python functions, as well as a database connection manager.

Installation

To install the Geneweaver DB library, run one of the following commands:

Using Pip

pip install geneweaver-db

Using Poetry

poetry add geneweaver-db

Usage

The Geneweaver DB library is intended to be used as a dependency for other Geneweaver packages, but can also be used as a stand-alone pacakge.

The package has three main sections:

  • geneweaver.db - contains non-async database functions.
  • geneweaver.db.aio - contains async database functions.
  • geneweaver.db.query - contains SQL queries and SQL generation functions.

Database functions usually take a Cursor or AsyncCursor object as their first argument.

Non-Async Functions

import psycopg
import geneweaver
from geneweaver.db.core.settings import settings

def get_my_gene():
    with psycopg.connect(settings.URI) as conn:
            with conn.cursor() as cur:
                result = geneweaver.db.gene.get(cur, 'my_gene')
    return result

Async Functions

import psycopg
import geneweaver
from geneweaver.db.core.settings import settings

async def get_my_gene():
    async with psycopg.AsyncConnection.connect(settings.URI) as conn:
            async with conn.cursor() as cur:
                result = await geneweaver.db.aio.gene.get(cur, 'my_gene')
    return result

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

geneweaver_db-0.5.0.tar.gz (34.4 kB view details)

Uploaded Source

Built Distribution

geneweaver_db-0.5.0-py3-none-any.whl (53.1 kB view details)

Uploaded Python 3

File details

Details for the file geneweaver_db-0.5.0.tar.gz.

File metadata

  • Download URL: geneweaver_db-0.5.0.tar.gz
  • Upload date:
  • Size: 34.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.9.20 Linux/6.8.0-1014-azure

File hashes

Hashes for geneweaver_db-0.5.0.tar.gz
Algorithm Hash digest
SHA256 170ee8fdc7efe5f3a6989014db0b6e2c02d9da3ff8b085ca218168f3cfcc8d21
MD5 7d44a8a3fad6cc3af361397eb26d1224
BLAKE2b-256 4a2214e4f1d353b0a288eb928081ac6981e57067f5d3b2c6329194dab16d7c2e

See more details on using hashes here.

File details

Details for the file geneweaver_db-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: geneweaver_db-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 53.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.9.20 Linux/6.8.0-1014-azure

File hashes

Hashes for geneweaver_db-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7bb40b7a50783a48092ddf6529aca70c49bfb69da6e52420076cc300769db297
MD5 03e7fa032cac423f68c241dde8e5a3d9
BLAKE2b-256 1db4a4b5dce17f225c64f6309a038627848c5593a294a90c4a846728b581436f

See more details on using hashes here.

Supported by

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