Skip to main content

A command-line tool for querying databases.

Project description

databow

databow GitHub Release GitHub Actions Workflow Status GitHub License

A command-line tool for querying databases via ADBC.

Highlights

  • Multi-database support - Connect to any database with a compatible ADBC driver
  • Interactive SQL shell - Execute SQL queries with command history and intuitive navigation
  • Syntax highlighting - SQL queries highlighted for improved readability
  • Formatted output - Results displayed in clean, aligned tables with dynamic column width
  • File export - Export query results to JSON, CSV, or Arrow IPC files
  • Fast and lightweight - Built in Rust for high performance and minimal resource usage

Installation

Install with uv:

uv tool install databow

Install with Cargo:

cargo install databow

Getting Started

Install the DuckDB ADBC driver with dbc:

dbc install duckdb

Interactive Usage

Connect to DuckDB (in-memory):

databow --driver duckdb

Execute SQL queries:

> CREATE TABLE penguins AS FROM 'https://blobs.duckdb.org/data/penguins.csv';
┌───────┐
│ Count │
├───────┤
│ 344   │
└───────┘
> SELECT *
. FROM penguins
. LIMIT 5;
┌─────────┬───────────┬────────────────┬───────────────┬───────────────────┬─────────────┬────────┬──────┐
│ species │ island    │ bill_length_mm │ bill_depth_mm │ flipper_length_mm │ body_mass_g │ sex    │ year │
├─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼──────┤
│ Adelie  │ Torgersen │ 39.1           │ 18.7          │ 181               │ 3750        │ male   │ 2007 │
│ Adelie  │ Torgersen │ 39.5           │ 17.4          │ 186               │ 3800        │ female │ 2007 │
│ Adelie  │ Torgersen │ 40.3           │ 18            │ 195               │ 3250        │ female │ 2007 │
│ Adelie  │ Torgersen │ NA             │ NA            │ NA                │ NA          │ NA     │ 2007 │
│ Adelie  │ Torgersen │ 36.7           │ 19.3          │ 193               │ 3450        │ female │ 2007 │
└─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴──────┘

Non-interactive Usage

Execute a query directly and exit:

databow --driver duckdb --query "SELECT 42 AS the_answer"

Execute a query from stdin and exit:

echo "SELECT 42 AS the_answer" | databow --driver duckdb

Execute a query from a file and exit:

databow --driver duckdb --file select_example.sql

Execute a query and output the result to a file:

databow --driver duckdb --query "SELECT 42 AS the_answer" --output result.json
databow --driver duckdb --query "SELECT 42 AS the_answer" --output result.csv
databow --driver duckdb --query "SELECT 42 AS the_answer" --output result.arrow

Reference

$ databow --help
Query databases via ADBC

Usage: databow [OPTIONS]

Options:
      --profile <profile>    Connection profile name or path
      --driver <driver>      Driver name (required if --profile not specified)
      --uri <uri>            Database uniform resource identifier
      --username <username>  Database user username
      --password <password>  Database user password
      --option <option>      Driver-specific database option
      --mode <mode>          Table display style [default: utf8-compact]
      --query <query>        Execute query and exit
      --file <file>          Read and execute file and exit
      --output <file>        Write result to file
  -h, --help                 Print help
  -V, --version              Print version

License

This project is licensed under Apache-2.0.

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

databow-0.1.1.tar.gz (42.2 kB view details)

Uploaded Source

Built Distributions

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

databow-0.1.1-py3-none-win_arm64.whl (2.0 MB view details)

Uploaded Python 3Windows ARM64

databow-0.1.1-py3-none-win_amd64.whl (2.1 MB view details)

Uploaded Python 3Windows x86-64

databow-0.1.1-py3-none-win32.whl (2.0 MB view details)

Uploaded Python 3Windows x86

databow-0.1.1-py3-none-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

databow-0.1.1-py3-none-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

databow-0.1.1-py3-none-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

databow-0.1.1-py3-none-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

databow-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

databow-0.1.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

databow-0.1.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

databow-0.1.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

databow-0.1.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

databow-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

databow-0.1.1-py3-none-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

databow-0.1.1-py3-none-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: databow-0.1.1.tar.gz
  • Upload date:
  • Size: 42.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b6cc6278b4a33aee2e0394b343dce7ef624e08abbeb3debd7087710ae7e4660a
MD5 e80385c1a339c92db901525a4e512cf9
BLAKE2b-256 a3c9cf30a6b2c27d76c0f79cd083f006d323d0f62502b1f29ae91d359caab0df

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-win_arm64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 91817eebe3bef076283806029b4cd3b40de7bd56958951455ac031bda07fa699
MD5 2330ea7097de1b20a793c7927df3513a
BLAKE2b-256 63369bcc12baaa7fd486e1a5fbe62f7409d2c1be0679bd8dc8c8c26e7f309d92

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-win_amd64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 dcf53ce7b648c04494807e50475b82ef6e5ec0c790d056ba639e11e3056855d8
MD5 c4a7ca7e10de8d7e0ea505085653d66d
BLAKE2b-256 15b48966a7b44976c1daf460f9c51d18c506fe08aae2fcac501c2a980bd81560

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-win32.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-win32.whl
Algorithm Hash digest
SHA256 1fdbb29625844ffd4f203a8921506d0069fb5ada4a64581790014af755191138
MD5 1882ce2236eff145bc632979d98ae05e
BLAKE2b-256 b13d882b3fbf7018e8fb3dfd06f784266b9de4d2e75aa3f25d3361add9216d58

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69199e7ccffd1e009875b1a637fd1621f86f22dfa55a45067be8a13f6ec48a36
MD5 2790d01ef6ae7d7912e2e80757db271f
BLAKE2b-256 322f28f9c86e8c62894f5fc94dd67352ffc8402f3ee34683618559ced903609d

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8af548c3b83f38d6374ce546c0fd4ef8242fadfe3a520de12f9d9a3d0c61b75c
MD5 298f97a890126fba0b7e71d49640a73e
BLAKE2b-256 e247af95c2db902ad3b344bc808bc4e7dcffb39062ce9e862f1e369f582600a0

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5ddcbba36d615e929f74dddcdbd8687cd078ca20a307b6de4dc7208f5105463
MD5 df3bc4fcd0f8ec92eacb6e975accc7b8
BLAKE2b-256 b3d42f41db548051d98d4ad3ab6f8a92019d1c6c0edc5f013b09b6902e41034f

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3a502ff90836cc05de1aec21074534136059f3a2d8d22aee7a55fcd962858b6
MD5 c8991028ec2e8b6ae90de50ad70becfe
BLAKE2b-256 001c6339d0906d35ed02b5af47e2d3784cb5225ffdec0f4ae32a3ad5c3f914c1

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 127380ca8fe00e282b1b4a05ac5465e44110d63c05de03aa21b66225c410d632
MD5 e6eb4cb772078b682ac440d09badd2e7
BLAKE2b-256 e11db381225a04401c01fb81099bd5768210d6db524b3d509df8e61f29600183

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1638668bd98bda40b74475998a4de16db31b17e8bf8df702365062614c18af5
MD5 6bf94ca15bdd7f71a332e1528d0cc32e
BLAKE2b-256 eef5d4e67229ae2fdeb4b146e7854768e8124ec3606330ccb32d85cfcf4de4e9

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd55fdcfa016c5e0983714dfe2d2477ec7c2555e4d89cf9d8ac5f6dfa4e49dbe
MD5 66e8b2470f8ed768652f65bda3a060f7
BLAKE2b-256 ba2c8a1cbfa61e9e129571b95a9b342706e5b77852dbc7bb063900fc4fa08db6

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c76a05651606ea3165a3482700dbe2649aa5618ef2f7d2b169fc3fe1fd71c9cc
MD5 a1cce747df89fa1ae7fbe62800df692c
BLAKE2b-256 2908437117aa749dd4ee638ab16ff72dd44904c9ea6894a1115a4e8f84b9c731

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dceacc78debbcc8d36cd47d3c992d176cd58b9f1299fceffbbf63b63b65242da
MD5 9b25931074a02c387d5364d6812afa2a
BLAKE2b-256 d4842f7175c47573183506e151ca6c84fc25a2582f010ba1d5cbf37cbbdc7baf

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a9cc748b4f767891c307c1fda9fe37aef60780d54e7c56801364026ef738550
MD5 30fe1f14481a62d52c12d50a9083aad7
BLAKE2b-256 f951864b3366439a3851df5ae9eeee12e6ea8b8dbe6bae9dee92434536e7e489

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c174cc62d20ab2b47a106a33f183e248b88ffff32056a4907faa0222622d04e0
MD5 dfcdca4b42ce56c4a18129eaa0b44111
BLAKE2b-256 9e3a0752ccf7531e6f285f097be3de683fde7911707674845faabc16ef88f5ea

See more details on using hashes here.

File details

Details for the file databow-0.1.1-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: databow-0.1.1-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for databow-0.1.1-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8632b7cad4e30d6940b187bfe1d51e486f4e2b3307df7ae8a371d1bd69e5c5c
MD5 0786a6fa5a68ee74c423614071684d15
BLAKE2b-256 77761d554af75eda35002fe8df751d1a56393f2025cbecafc35268918d45785a

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