Skip to main content

A lightweight terminal-based database and S3 client built with Textual.

Project description

Shovl

A lightweight terminal-based database and S3 client built with Textual.

Installation

Install Shovle using pip:

pip install shovl

Database-Specific Dependencies

Shovl requires additional drivers depending on your target database systems. Install the appropriate extras for your use case:

# Individual database support
pip install shovl[sqlite]        # SQLite support
pip install shovl[postgresql]    # PostgreSQL support
pip install shovl[mysql]         # MySQL support
pip install shovl[mariadb]       # MariaDB support
pip install shovl[oracle]        # Oracle Database support
pip install shovl[snowflake]     # Snowflake support
pip install shovl[duckdb]        # DuckDB support
pip install shovl[ibmdb]         # IBM DB2 support

# General database support (SQLAlchemy only)
pip install shovl[database]

# S3 and cloud storage support
pip install shovl[bucket]

# Complete installation with all features
pip install shovl[all]

Note: Shovl leverages SQLAlchemy's extensive database support. You may install additional SQLAlchemy-compatible drivers as needed for other database systems.

Configuration

Shovl uses a hierarchical configuration system to manage connection details and application settings. The configuration file is loaded in the following priority order:

  1. Path specified via the --config command-line option
  2. Local configuration file (.shovl in the current directory)
  3. Global user configuration file (~/.shovl or %USERPROFILE%\.shovl on Windows)
  4. Default configuration (fallback)

Generating Configuration Files

Create a sample configuration file:

# Local configuration
shovl --sample-config > .shovl

# Global configuration
shovl --sample-config > ~/.shovl

View the complete configuration schema with detailed parameter descriptions:

shovl --config-schema

Configuration of Database Connections

A mininmal configuration file with a single database connection looks like this:

{
  "connections": [
    {
      "description": "A short description",
      "name": "My Database",
      "url": "<sqlalchemy connection url>"
    }
  ]
}

The url field should be a valid SQLAlchemy connection string, which includes the database type, username, password, host, port, and database name. See the SQLAlchemy documentation for more details on constructing connection URLs.

See "Security Best Practices" below for how to handle credentials securely.

By default, Shovl will fetch a maximum of 1000 rows when executing a query. You can adjust this limit in the configuration file using the fetch_limit parameter.

You may also pass other parameters to SQLAlchemy via the engine_parameters field, which accepts a dictionary of key-value pairs. These options will be passed directly to the SQLAlchemy engine when establishing a connection.

{
  "connections": [
    {
      "description": "A short description",
      "engine_parameters": {
        "isolation_level": "REPEATABLE READ"
      },
      "fetch_limit": 2000,
      "name": "My Database",
      "url": "<sqlalchemy connection url>"
    }
  ]
}

A comprehensive list of available engine parameters can be found in the SQLAlchemy documentation. Here are some examples:

Database Example Common Engine Parameters
SQLite sqlite:///database.db
PostgreSQL postgresql://user:password@localhost:5432/mydatabase {"connect_args": {"sslmode": "require"}}
Oracle oracle://user:password@localhost:1521/?service_name=myservice {"thick_mode": true}

Configuration of S3 Connections

Shovl also supports connections to S3-compatible storage services. A minimal S3 connection configuration looks like this:

{
  "connections": [
    {
      "description": "A short description",
      "bucket_name": "my-bucket",
      "name": "My S3 Storage",
      "region_name": "us-east-1"
    }
  ]
}

This assumes that you have configured your AWS credentials using environment variables or the AWS CLI. You can also specify credentials directly in the configuration file (see "Security Best Practices" below):

{
  "connections": [
    {
      "aws_access_key_id": "{{AWS_ACCESS_KEY_ID}}",
      "aws_account_id": "{{AWS_ACCOUNT_ID}}",
      "aws_secret_access_key": "{{AWS_SECRET_ACCESS_KEY}}",
      "aws_secret_access_key": "{{AWS_SECRET_ACCESS_KEY}}",
      "bucket_name": "my-bucket",
      "description": "A short description",
      "name": "My S3 Storage",
      "region_name": "us-east-1"
    }
  ]
}

You may also use AWS Secure Token Service (STS) to generate temporary credentials for enhanced security:

{
  "connections": [
    {
      "aws_access_key_id": "{{AWS_ACCESS_KEY_ID}}",
      "aws_account_id": "{{AWS_ACCOUNT_ID}}",
      "aws_secret_access_key": "{{AWS_SECRET_ACCESS_KEY}}",
      "aws_secret_access_key": "{{AWS_SECRET_ACCESS_KEY}}",
      "bucket_name": "my-bucket",
      "description": "A short description",
      "name": "My S3 Storage",
      "profile_name": "{{AWS_PROFILE_NAME}}",
      "region_name": "us-east-1",
      "role_name": "{{AWS_ROLE_NAME}}",
      "use_sts": true
    }
  ]
}

If you do not have permissions to call the head bucket operation, you can disable the bucket existence check using test_connection:

{
  "connections": [
    {
      "description": "A short description",
      "bucket_name": "my-bucket"
      "test_connection": false,
      "name": "My S3 Storage",
      "region_name": "us-east-1"
    }
  ]
}

You may also specifiy a `head_prefix that is automatically applied to all S3 operations:

{
  "connections": [
    {
      "description": "A short description",
      "bucket_name": "my-bucket",
      "head_prefix": "my-prefix/",
      "name": "My S3 Storage",
      "region_name": "us-east-1"
    }
  ]
}

Configure Logging

By default, logging is disabled. You can enable logging and specify a log file path in the configuration file:

{
  "logging": {
    "enabled": true,
    "log_file": "~/.shovl.log",
    "log_level": "INFO",
    "mode": "w"
  }
}

Configure the GUI

Shovl's GUI can be customized using the gui section of the configuration file. You can specify a theme and the maximum number of list items displayed:

{
  "gui": {
    "theme": "tokyo-night",
    "max_list_items": 1000
  }
}

Valid themes can be found in the Textual documentation.

Security Best Practices

Important: Never store credentials in plain text within configuration files. Shovl supports environment variable substitution using double curly bracket syntax: {{VARIABLE_NAME}}.

Load environment variables from a .env file using the --env option.

Usage

Basic Usage

Launch Shovl with default settings:

shovl

Advanced Options

Load credentials from an environment file:

shovl --env .env

Specify a custom configuration file:

shovl --config /path/to/custom/config.json

Display all available command-line options:

shovl --help

System Requirements

  • Python 3.12 or higher
  • Terminal with Unicode support
  • Network connectivity for database and S3 operations

License

This project is distributed under the terms specified in the LICENSE.md file.

Contributing

Shovl is an open-source project. For bug reports, feature requests, or contributions, please visit the project repository.

Support

For issues and support requests, please use the project's issue tracker.

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

shovl-0.2.3.tar.gz (30.3 kB view details)

Uploaded Source

Built Distribution

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

shovl-0.2.3-py3-none-any.whl (38.5 kB view details)

Uploaded Python 3

File details

Details for the file shovl-0.2.3.tar.gz.

File metadata

  • Download URL: shovl-0.2.3.tar.gz
  • Upload date:
  • Size: 30.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for shovl-0.2.3.tar.gz
Algorithm Hash digest
SHA256 80fa64facfd179243de1a84d557ce2852fbdcdbfda22c924014cb07e80dd0cce
MD5 f016e0b636a7fba9f0773053be353b43
BLAKE2b-256 d9a4c455e125b8f6601a3ada30860c4370f5a016c1b240ef09261dd7b2189070

See more details on using hashes here.

File details

Details for the file shovl-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: shovl-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 38.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for shovl-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 35cf97aa3ae2611685f74a5c0fe877c1e72f25f0d630744d3dafa7520d719c4e
MD5 34bc5404b3628e999bdeab24b0808873
BLAKE2b-256 4a1eabf6d0265c6c6c30228b51352853731c6a2e22c0f4a09cafbb23b28cb0f2

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