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.2.tar.gz (42.3 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.2-py3-none-win_arm64.whl (2.6 MB view details)

Uploaded Python 3Windows ARM64

databow-0.1.2-py3-none-win_amd64.whl (2.7 MB view details)

Uploaded Python 3Windows x86-64

databow-0.1.2-py3-none-win32.whl (2.5 MB view details)

Uploaded Python 3Windows x86

databow-0.1.2-py3-none-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

databow-0.1.2-py3-none-musllinux_1_2_i686.whl (2.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

databow-0.1.2-py3-none-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

databow-0.1.2-py3-none-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

databow-0.1.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

databow-0.1.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

databow-0.1.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

databow-0.1.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

databow-0.1.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

databow-0.1.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

databow-0.1.2-py3-none-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

databow-0.1.2-py3-none-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: databow-0.1.2.tar.gz
  • Upload date:
  • Size: 42.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2.tar.gz
Algorithm Hash digest
SHA256 23563e1231b97e7e1110160b0afe22c04d1732b1c38ef2ff4350cd526fc95fff
MD5 7fb80d5a87094d4ad51752048bd9c140
BLAKE2b-256 a136dc211dff0fe36a7115bf210d9b55247ca52c8c2875e6bbcbbdc0418390bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-win_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 633cf6d0a9a59b16247c40b93f2266cf0ebe7ed676d6acb53a0094ad3c51cff1
MD5 e30a701d81381c08bbdd9067bc8d916c
BLAKE2b-256 dd484485dd466249a20ca134aa5cd76f66f587a016630e929a2df00ade8f3531

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 8f4b8a406bed914c3a8ae3c529138d11a0c83fb9459dd8af996b3aa87a9b0a76
MD5 aff913963212e4410dfe5137b4f2b94b
BLAKE2b-256 988cdcebb9fbfdf9d4dea3f3140dedf68d0dc20fb20a6dbeea7458ea7025c3a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-win32.whl
Algorithm Hash digest
SHA256 ce755b02585ac79e7df9f546bc84f5003579bf64e470e68228c40f6b6b8cfa70
MD5 9ca5e21e4499fb6aac1a9f3fe7035c7e
BLAKE2b-256 bbfe72025d6b2584ff6f5ac5d8aac2a4644b4fe5732853481a4714a0a47ffe3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a853598144ced8732bec1f9492dd6de884ac173259a8d959d49f90db882cc9d
MD5 5d55247e9dd134d6d28e014bf27e6005
BLAKE2b-256 4af93d50ea4c57abfec1edf84dff654ff22923d2c71fe5cc32878f21c59fe085

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3acdd4259b445afeece7393faee604a7f66e14d57fb6e380beda06f27517be48
MD5 97e429866813203a6d36ba3dff368c31
BLAKE2b-256 b4dbe3b301af94067826c222ef2558ba5612b97d29e3060cab576cd30f9edd9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a7c9be31ecd8fceee3dd2514012bc23e0559ccdcf353084c17665a50577e42e
MD5 833f7667b688475e1713c55eb0cc33fa
BLAKE2b-256 193cd2e48b27d3cf746018137c3f945201ca5a14b8ac780383075d416bd2b497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5829896c11530ab91d35ab753c7e20083620fd0838185eef27ce9efeb486fdd1
MD5 6344af5a16730b2ae104b9a60fbb3935
BLAKE2b-256 b18385f4ce4e9fb1597a4cbbd82265db340f22513d15bb4fab45bc876084c9cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ac31ff6997eaf796e0368c74ceba98efd9f36d37f975fb8a97bbc7cd03aff3a
MD5 272b7f6e71382318c629897799e5abbb
BLAKE2b-256 07e46c7806c92dec14f9f8cc0a9ff36320fac67cf007b84318ebe7bed6177f5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1b564d9761ceffd114c079356f553360900d558767ecd7e7cad98d4992f1fca
MD5 bee95d3c2fc25082e122b94db70b53b6
BLAKE2b-256 32df659f8667c7eee25d1610c8f2e0466e40386aaf29476accec2d58c44c09cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e7c343c6a85698f2bfbee25975e293238bb005b2b2ead22a2968384a18131dd
MD5 42fec2a0cb0851fd3c10a704a0bcb797
BLAKE2b-256 8be566c2517b9f9f340a2f2331fc29b6c385442208a6ed843ff91fd1242fe070

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 011bba559f564d80ade7623df7220346ac8a9978dd1d3be9e4f826df0aafec25
MD5 7064cb28409b7220219aebdc4f20aa12
BLAKE2b-256 60b53dcbb9e0f5d1bd4325f7dcf3cb66bd71362e2835058a53285d162eebde5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc817a73691625f72975a1e61a9d3fb669981886046ac632aa7c2be612693371
MD5 bdfc15fd553e01c9fd48fabf94a70295
BLAKE2b-256 4a246cb25d7310d84961e4e08fb157587a3bc4816c87160ccf9b62fd035430f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a23fa18b1baf480ce5c6f217c971dbaee69cca5192be6d2e47b46b0ff1a9d2e6
MD5 5fe1b67ab4942d30c59c33aac214a7c7
BLAKE2b-256 4a4931f8f873ba2e94b2c3a79ef76b9d2c25c1192d0f148c3885ba5012da5b79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffe093dcfc805f8bef62d718b51232a470566e803320c27e02424a699acd51f8
MD5 d77c3de4b27ee42498a8124d40d7cb54
BLAKE2b-256 c2660eab4b96b65470a5b7b85ed19cae3908e785a6b673d7c5856a1ea1dc77c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: databow-0.1.2-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.2-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 368aba98cf39fbac296a46657c24256a21841d0ddbc33dfb1ab10fc3499afed5
MD5 57257eb85d4c757bc5f7bbe6ba990cd2
BLAKE2b-256 ebb98cc06dc768549f7c4678594d3170b2825f74c7de84795f2abf238caa5325

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