Skip to main content

Small SQL helper utilities with optional external authsql.py config loading.

Project description

toolssql

Small SQL helper utilities (MySQL-focused) with flexible auth configuration.

Install

pip install toolssql

Auth config loading

This package will try to load CONNECTION_CONFIG and CONNECTION_CONFIG_DEFAULT from an authsql.py module/file in this order:

  1. AUTHSQL_MODULE env var (importable module path, e.g. myapp.authsql)
  2. Import authsql (works when your project root is on sys.path)
  3. AUTHSQL_PATH env var pointing directly to an authsql.py file (supports ~ and $HOME)
  4. Home directory fallbacks:
    • ~/authsql.py
    • ~/.authsql.py
    • ~/.config/authsql.py

Example config:

from typing import Dict, Any
CONNECTION_CONFIG: Dict[str, Any] = {
    'config1':
    {
        'host': 'localhost',
        'user': 'Analyst',
        'password': 'XXXXXXXXXXXXXXXXX',
        'database': 'Playground',
    },
    'config2':
    {
        'host': 'localhost',
        'user': 'Analyst2',
        'password': 'XXXXXXXXXXXXXXXXX',
    },
}

# default connection to be used, if nothing else is specified
CONNECTION_CONFIG_DEFAULT = "config1"

If none are found, it falls back to {} / None.

Important: Do not ship secrets inside this PyPI package. Keep authsql.py outside git.

Usage

from toolssql import MysqlConnect

db = MysqlConnect()  # uses loaded defaults if available
df = db.select_df("SELECT 1 AS one")
print(df)

Or inject config explicitly:

from toolssql import MysqlConnect

cfg = {
  "prod": {"host": "...", "user": "...", "password": "...", "database": "..."}
}
db = MysqlConnect(connection="prod", connection_config=cfg, connection_default="prod")

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

toolssql-0.1.2.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

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

toolssql-0.1.2-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file toolssql-0.1.2.tar.gz.

File metadata

  • Download URL: toolssql-0.1.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for toolssql-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8a939d88bf880b17c2c2496c3b1c01a2a58bcbe819da3a231ee315d490db95b0
MD5 63ab08c20f21cf20832acb9ebff0037a
BLAKE2b-256 7eb6ae2ca5a1d4e84e49a456ad8fd0a358f07f155478086761c3a4dab9a7e3a0

See more details on using hashes here.

File details

Details for the file toolssql-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: toolssql-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for toolssql-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 aa82107fbf74846cc9a479bc5970b67902418e36e87e1cf9d0ecd0026df55401
MD5 1e5ecbc1a9544fc31cc7c98f0fe041c0
BLAKE2b-256 0b487ee520a7c477ea9338f768dc698921e379a4ce48b7a7cc33a950c99de5cd

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