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.1.tar.gz (9.4 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.1-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: toolssql-0.1.1.tar.gz
  • Upload date:
  • Size: 9.4 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.1.tar.gz
Algorithm Hash digest
SHA256 120dbc62e092fdbf6a9b4e0c2c89df8bcbd04f6e8089e255826e5bede7950fa0
MD5 1465dd924a2e27b4b65e78a97932887c
BLAKE2b-256 4e89adef2da056018e9c48095979af2e7026fea3e2823ca9523d2f787aa971ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toolssql-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.4 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 684a18d60d415c2227409986577b5d4da84fc6d21eab0882497be90caa7c6234
MD5 b726ed3e972ba61746f49fdbb8ca22c0
BLAKE2b-256 6805bdecf44dfce7b4ee72fd427b74f5cdd07b509acbaa296ea9e0997224f20e

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