Skip to main content

Credbl: database settings and credentials simplified

There are many moving parts when setting up programmatic access to a database. Credbl divides (and conquers) those bits and pieces the following way:

  • [connect-where] database server specific settings are read from a YAML configuration file provided by the database admin

  • [connect-who] user's credentials are requested and stored in keyring or winreg (on Windows).

    The first time the user connects to the database with connect_* functions, the credentials will be requested and stored. Subsequent times, they will be silently retrieved and used to authenticate. If authentication fails due to wrong credentials, the user will be asked to enter credentials again.

  • [connect-how] database drivers are chosen based on user's Operation system.

Currently credbl focuses on MS SQL Server and MongoDB connections. You are welcome to submit issues and pull requests for other database types.

Installation

Python package

from terminal shell (standard):

  • latest release: pip install credbl

  • bleeding edge: pip install git+git://github.com/BCHSI/credbl.git#egg=credbl

  • development mode

      git clone https://github.com/BCHSI/credbl
      cd credbl
      pip install -e .
    

R package

from R:

install.packages('devtools')
library(devtools)
install_github('https://github.com/BCHSI/credbl')

or terminal + R:

git clone https://github.com/BCHSI/credbl
cd credbl
R
> install.packages('devtools')
> library(devtools)
> install('.')

get help:

?credbl

Usage examples:

connecting to a MS SQL Server

from credbl import connect_mssql
conn = connect_mssql("tp-mssql-settings.yaml")

Contents of database configuration file

In a previous example, "tp-mssql-settings.yaml" must contain:

server:    12.34.56.78 (OR) mydatabase.mybusiness.com
port:      1234
database:  tp-inventory
driver:    FreeTDS (optional)

Low-level interface:

You might need to understand it if you would like to use SQL drivers or driver wrappers other than pyodbc, such as SQLAlchemy.

with pyodbc

import pyodbc
from credbl import get_mssql_connection_string 

# if called for the first time, will request credentials
# second time may ask for your _system_ credentials; mark "always allow"

connection_str = get_mssql_connection_string("tp-mssql-settings.yaml")
# you'll be requested to enter your credentials when running it for the first time
conn = pyodbc.connect(connection_str)

if you believe you've entered wrong credentials first time, call with reset=True

connection_str = get_mssql_connection_string("tp-mssql-settings.yaml", reset=True)

conn = pyodbc.connect(connection_str)

with SqlAlchemy

import sqlalchemy
from credbl import get_mssql_connection_string 

connection_str_encoded = get_mssql_connection_string('covid19_omop.yaml',
                                                 urlencode=True)
connection_uri = 'mssql+pyodbc:///?odbc_connect={}'.format(connection_str_encoded)
conn = sqlalchemy.create_engine(connection_uri)

connecting to mongodb

from credbl import connect_mongodb

# if called for the first time, will request database credentials
mdb = connect_mongodb("mongo-settings.yaml")

mdb.list_collection_names()

The "mongo-settings.yaml" file must contain following:

url: mongodb://10.20.30.40:27017
db: 'databasename'

Alternatively / optionally to URL, server or IP address and port can be provided:

server: xyz.company.org
ip: 10.20.30.40
port: 27017

storing credentials in keyring (Mac, Unix) or Windows key storage:

In [1]: import credbl

In [2]: credbl.get_credentials('something')
enter user name for 'something': []: myname
enter password for 'myname':
Out[2]: ('myname', 'xyz')

In [3]: credbl.get_credentials('something')
Out[3]: ('myname', 'xyz')

Files

Release files for credbl 0.0.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for credbl 0.0.4
File Size Uploaded
credbl-0.0.4.tar.gz 7.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for credbl 0.0.4
File Interpreter ABI Platform
credbl-0.0.4-py3-none-any.whl Python 3 none any Details

Total release size: 15.2 kB

Release files / credbl-0.0.4.tar.gz

Download URL credbl-0.0.4.tar.gz
Size 7.0 kB
Tags Source
SHA-256 checksum
How to use checksums
06e7444cd50835370b8726e05c9d50a69d628bda9be97e0fd6dcbf3c3725f6b8
BLAKE2b-256 checksum
How to use checksums
0f5fcbdfa895d3a1f6ecde0f4d9c5379192e4bc6f379112e5db2fc2a13f10383
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6

Release files / credbl-0.0.4-py3-none-any.whl

Download URL credbl-0.0.4-py3-none-any.whl
Size 8.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c8bf28d7927a40db64328eb72decdb037e0aa42f727c1b386d354f5712096fe5
BLAKE2b-256 checksum
How to use checksums
bdff6d1e8bace634409e159c0fa297c6108a59a46708758047af0bb12975381b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6

Release history Release notifications | RSS feed

This release

0.0.4 This release

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page