Skip to main content

SQL-style querying for static HTML with a deterministic node model.

Project description

MarkQL

Build wheels GitHub tag PyPI version PyPI downloads License

MarkQL is a C++20 SQL-style query engine for HTML. It treats HTML elements as rows and lets you query them with familiar SELECT ... FROM ... WHERE ... syntax.

Quick Start

Prerequisites:

  • CMake 3.16+
  • A C++20 compiler
  • Boost (multiprecision); set -DXSQL_ENABLE_KHMER_NUMBER=OFF to skip Boost
  • Optional dependencies: libxml2, curl, nlohmann_json, arrow/parquet

Ubuntu/Debian/WSL (minimal packages):

sudo apt update
sudo apt install -y \
  git ca-certificates pkg-config \
  build-essential cmake ninja-build \
  libboost-dev

Optional feature packages:

sudo apt install -y libxml2-dev libcurl4-openssl-dev nlohmann-json3-dev

Arrow/Parquet packages (often missing on older distros):

sudo apt install -y libarrow-dev libparquet-dev

macOS (Homebrew):

xcode-select --install
brew install cmake ninja pkg-config boost

Optional feature packages:

brew install libxml2 curl nlohmann-json

Arrow/Parquet:

brew install apache-arrow

Build (project default):

./build.sh

Minimal build when optional dependencies are unavailable:

cmake -S . -B build \
  -DXSQL_WITH_LIBXML2=OFF \
  -DXSQL_WITH_CURL=OFF \
  -DXSQL_WITH_ARROW=OFF \
  -DXSQL_WITH_NLOHMANN_JSON=OFF
cmake --build build

To build without Boost, add -DXSQL_ENABLE_KHMER_NUMBER=OFF.

Run one query:

./build/markql --query "SELECT div FROM doc LIMIT 5;" --input ./data/index.html

Run interactive REPL:

./build/markql --interactive --input ./data/index.html

CLI Notes

  • Primary CLI binary is ./build/markql.
  • Legacy compatibility binary ./build/xsql is still generated.
  • doc and document are both valid sources in FROM.
  • If --input is omitted, the CLI reads HTML from stdin.
  • URL sources (FROM 'https://...') require XSQL_WITH_CURL=ON.
  • TO PARQUET(...) requires XSQL_WITH_ARROW=ON.
  • INNER_HTML(...) returns minified HTML by default. Use RAW_INNER_HTML(...) for unmodified raw output.
  • TO TABLE(...) supports explicit trimming/sparse options: TRIM_EMPTY_ROWS, TRIM_EMPTY_COLS, EMPTY_IS, STOP_AFTER_EMPTY_ROWS, FORMAT, SPARSE_SHAPE, and HEADER_NORMALIZE.

Testing

C++ tests:

cmake --build build --target xsql_tests
ctest --test-dir build --output-on-failure

Benchmark harness (inner_html minified vs raw):

./build/markql_bench_inner_html 10000

Python package/tests (optional):

./install_python.sh
./test_python.sh

Documentation

License

Apache License 2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pyxsql-1.11.0-cp314-cp314t-win_amd64.whl (386.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyxsql-1.11.0-cp314-cp314t-win32.whl (330.3 kB view details)

Uploaded CPython 3.14tWindows x86

pyxsql-1.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (640.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp314-cp314t-macosx_11_0_arm64.whl (428.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyxsql-1.11.0-cp314-cp314-win_amd64.whl (381.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyxsql-1.11.0-cp314-cp314-win32.whl (326.2 kB view details)

Uploaded CPython 3.14Windows x86

pyxsql-1.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (639.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp314-cp314-macosx_11_0_arm64.whl (424.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyxsql-1.11.0-cp313-cp313-win_amd64.whl (371.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pyxsql-1.11.0-cp313-cp313-win32.whl (317.8 kB view details)

Uploaded CPython 3.13Windows x86

pyxsql-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp313-cp313-macosx_11_0_arm64.whl (424.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyxsql-1.11.0-cp312-cp312-win_amd64.whl (371.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyxsql-1.11.0-cp312-cp312-win32.whl (317.8 kB view details)

Uploaded CPython 3.12Windows x86

pyxsql-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp312-cp312-macosx_11_0_arm64.whl (424.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyxsql-1.11.0-cp311-cp311-win_amd64.whl (370.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pyxsql-1.11.0-cp311-cp311-win32.whl (317.2 kB view details)

Uploaded CPython 3.11Windows x86

pyxsql-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (639.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp311-cp311-macosx_11_0_arm64.whl (423.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyxsql-1.11.0-cp310-cp310-win_amd64.whl (369.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyxsql-1.11.0-cp310-cp310-win32.whl (316.4 kB view details)

Uploaded CPython 3.10Windows x86

pyxsql-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (638.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp310-cp310-macosx_11_0_arm64.whl (421.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyxsql-1.11.0-cp39-cp39-win_amd64.whl (370.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pyxsql-1.11.0-cp39-cp39-win32.whl (316.5 kB view details)

Uploaded CPython 3.9Windows x86

pyxsql-1.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyxsql-1.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (638.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyxsql-1.11.0-cp39-cp39-macosx_11_0_arm64.whl (422.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pyxsql-1.11.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 386.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4614ff2d5b64a07af7834640f38889ffbf481f8deefac478b05d6a3f88e565cd
MD5 ac76d3be1f50be368b134c76511a69d4
BLAKE2b-256 3ee6a9034f4844a70b4e862299e32da72afc232ab5cb6fb2423d57ab918200a9

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 330.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9d3ada699d72eedfa6d665e4f061695984870009984347373ed6cd40ea2ba5f7
MD5 0a0805e6a1bb15dd83b565f660facb01
BLAKE2b-256 56aaa5a435f83e9dc2e273a4ebaf8c647e7965b1976729dfea06c906364e748f

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0db527071934cb9be72833df18552ab130457c06d02627aa089338bff2580965
MD5 7679972fc8dcb4026509199da78849f6
BLAKE2b-256 54657ff0d70907830d9d4f42fdcf3267ad39674ea5e77432453ace152dd07142

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db2227f9e501c6b2eb372f1ca18c0e1ecbd90da0c0b5584afcd54951eee5ab9b
MD5 78fd6f0d388b4062496a14df662cdc1e
BLAKE2b-256 1068a9a85a74e05f9e3a9a6a5415d6d26df9dfde101be83d8d922d14b30c785c

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6fd2f75a5fa39c144be34435ff74ff3bf896ba5e088727caaebd9ccc650cbde
MD5 1364744bfe19812345e1e71fb48ca830
BLAKE2b-256 94171507697de2f207b5a787c6f45d5db3aa8b2266b7297c902c83a70145b1eb

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 381.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 98fa4081caf2ae5a3ffb4e582b0271329f6ad96a380f87058f384d40cae9f3b2
MD5 07c4afacfbcc2d8ce6b5d4e234612dc3
BLAKE2b-256 0af79ca7e404b6b99b036c4458fcdcb4dbb074d8e34ddf53a623def19a55f093

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 326.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1f14802021abe9647a2099bad11bd2492f7fb6027f29c267ca5264002a46700c
MD5 32a0d485edc4ff7eb0dee12db7259f44
BLAKE2b-256 464f8b1edc70e6bbba4527b4e7c56dcf525e4d85de337c38219422489ad29cbf

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12985e4f99ab1a9014ba046429cd8f58062cf26aaad15b9b5be7e171948b7293
MD5 ff06ffe1e5a488405852ef8616330bbf
BLAKE2b-256 5690cb11db2b3667653412e31e197091b2ab758957539130a95b1975d3aa9022

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26dffade15681f1d41f02af00fe354638d19ea413e1547be4387c470b3fe2f8b
MD5 d9a7798096d21596d46cfe73aa4e2170
BLAKE2b-256 7bb30d56cc6a2ee125bae3e8d1ba289722b652996a018f0ea6c45dc9a9a7c068

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef8004b7db7995edfee9b00178a27e6e16e0eb0cac58784ed3c8a0e2613a5dc
MD5 ec110a030af68c8b542afd18ac13e326
BLAKE2b-256 fb46b7dea72a28c50478721b047b6a9fb536f610b912aa6b1b37f21678a4c872

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 371.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 145ed08a75e48bdcd943d991b297a77c792b6f17ecc464854ef3b6b8017b1013
MD5 beeffa67435279367822ab824614a7bd
BLAKE2b-256 8471f0570bbe21abcac47b16c1ee7224d79e4dedeed5b38c3083573de4c4d14b

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7087c0bbcb5187b8808daf67943c42a0c8efda835e578dd5c587a2e69abd5eb2
MD5 778becd7051934d8102950022b478d74
BLAKE2b-256 6c176d5206fee7367ad2b87f88fc05c32160cd10b68cf097ef4672ad2ef71e6b

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 053e647a88c87ec994a51ef6dcda9a430fb5dfdbd4bc08ba8289742be6e28bb0
MD5 0fa20d55f66671287841fc1ad3fc26c9
BLAKE2b-256 81710f876c5450e57d2214b64c23fef9356cd5b16c01add0d1864f74385a4a6b

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c69b59102d47bbd378392a9888829ff649a2502b5de345c9f480d49e3a0cb229
MD5 863aa0344af85afdf1d867dbb19d85a0
BLAKE2b-256 ec03cfa3a0592df9cb066bcc1d792974e09888707044c54919ac583fa7f13ab3

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e1035da55471309f14eb18cdaf1404c16717a12f04610922ad6f1037f8ef2cd
MD5 d318e467a856e8d5ba6b7fc2337fe6dd
BLAKE2b-256 681fdeb3b3732ed85bef2bbeb141e6baf1eea9d205472afbeef522520b579855

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 371.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 020f2acdf01a84926d4d6c3e233f61d2a843f4d94ed1b51ebaa56a52209a1a58
MD5 30b0e2ce1cf85800c753c41bfffe721b
BLAKE2b-256 b6667f38cc0d2f0def5e1994104f5f625376acb9acfaf98a5689b85edaafe5b4

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6b3d755fe4e8ad83b36de6c8e40ebde236c362658a90f2ac95c44805b23bc25f
MD5 b457ef58ff5c3b6fec7b3e3a163d8c58
BLAKE2b-256 ad44bbb177173b72d799d0ce5ce59975e2cfd90e9f4b12e2eabfb4edbdf2dd99

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5605e430a4dff5b25bf8ba4d4fa77fdb3799852c7257ba556ae47ddaa6b7aa2a
MD5 60c458a789be3720fd2c7a2fa011777a
BLAKE2b-256 a13abe3b0504ea6227cbe2b2018c745926fd687b81ad02045d020caceeb707b5

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5d81499021d43aa9cc7170895fff527aa70ebd3b9f9e9b9078e6bec38d2a172
MD5 a2ce0ebd70cffa0f18c4bd8bf3f61842
BLAKE2b-256 f9fac753fafda72b7f7711e9f9c4e4e61997ae1ee4ef8cceae42e431632f4942

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcbc112a8e1df9fee95d67994fca5803621127b2ae89e88f792631327423e8b1
MD5 63d046d7770a0867030e828bf429d798
BLAKE2b-256 acff4a1db7c45ddd02a33adeba31c7db5db6008e47bcb0bf3d073f83fa2150f3

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f5481b9b47e19cc1ae108d5fbf044a8e6b5e43ac2f06396c4fd43fb1068e44ad
MD5 b2ed05133efee9d336bc24054c626caa
BLAKE2b-256 4cec18a8b44cb34b6e8ada5ef6c111446c07602e0b84e8834cfc8bd76d3ded0f

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 317.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bcc813ccb80af56e1e1af25211df141494d89a670381e1b0f43401fe0c83c4f7
MD5 c2e968ae91f0a4b263b27332b40d6720
BLAKE2b-256 57b9b04f19473ab98af661268f98d716293f32e7a23f282f682aac1a8d527fdf

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d97567f7fcb7c60723c8aa3c64d283600f7f70b6609b5d608cc95ced253290dd
MD5 014befc2cb657718108583647cf4fc13
BLAKE2b-256 bb6f4c0f9717c87895da07dc1156f8d08e9035793cf3acc1cb411a2020689eaf

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b729ba65a1c6cb8d5e2e723849405eb9c8c462b76614a9f6cc7b027477fd5cc
MD5 c03e307fde4db69a61e92f433c1a399f
BLAKE2b-256 86db00be782667b07c1b7e1c14327dafbc5ae0a3f384066f754cda7cb87f6256

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0243e9d74a0c1e74d5fe8ebf3c30a247b2c227a8c1c46b361570e29f54a71f0c
MD5 f6ef8299a733e8e8feb1cc77dcd0d042
BLAKE2b-256 57dcb8a5f92382aad0e7db2891e07ee071cf36efb75b21facd4e5ea1ebfb3d1e

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 369.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3d1503171acdb13ea79b1405857ddb86c53bf1203b04abb4a025b99bb675ae7
MD5 09c342ad0a4b1e0145a65c6ea937d641
BLAKE2b-256 2edd0c607281407cd1bffce5d054e087be4d4cc3c5c65632364c3adc8e922fbe

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 316.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3d3bf1eae3c2023548fb46af1547b118003b1a0d7fd813ac204962edfa985e9f
MD5 8b7c9783bb98bc2f24127968abb0803f
BLAKE2b-256 254caccf5ef78d073a395b8fab5f37f6ec62b3ec378ffe6432817daf383b6b3c

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03461ba1a028e5e1759dad1cbec81e93adbe0682c6ea5f750ef20ab771b6a683
MD5 c6bf08d59105cb230549c369735fdcc6
BLAKE2b-256 22db70d57c8ee109ca57c4953cfd18ea2086b46d001c4a15d373c7da76d8e36b

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57fbf434f3b17400a41c61df308c02eb6a3ec7272bd961ed454b3c5bd0e98f62
MD5 be3232f596ab3acb5f8ca2f3f9d05300
BLAKE2b-256 ddd2ba08f5ba5607d8c568eb6d0b821b94fc20e7b19dfc4d53dccdcf7b3419e6

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 469122723cc49530dde367873a54c169619a4f68eea79add1002f7498f7fe758
MD5 74710a89f5838b4808043c1e1f0c6853
BLAKE2b-256 d3ce7bd7b8f61e6766a2a0cde2c964f4081682ebf2963d3f7387e7af5371419d

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 370.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c7d0cb88cd205b4ffefcdcba5799d3a6358bece568cdc5986faeb121575eaed
MD5 3a91e94a2ecf9b612b6f5c364b2d3523
BLAKE2b-256 1110f1b23e3c8a872d318c007e45f76cdad7ac3a0e52ec6b4a76557299969112

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyxsql-1.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 316.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyxsql-1.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6da82e9335d87ca7e486054234643a938d3f733f8a29fd398f42160ce8d57692
MD5 66314de2dd3b717ae0eb75a0aab28cf1
BLAKE2b-256 a78ded94582877835b493a4fd401f6835b1a8a4fc45438f90f0c736a016f62ce

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 672191601a1452f8cfa8fdd53138d0b8a2e5c453553dd9e9a1f0540d2a0895a9
MD5 9e7e48abac528ffeb351a316237984ba
BLAKE2b-256 308f711a78bc8c96dd5e0dc21589fb4975df4c290e5e3645ee707d5544872a4d

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9db614f342b5cc41746119be45c334ae8a78be0a06119f5765c9462875670e9
MD5 0f839fe43810d6c98e24b54b16033b0e
BLAKE2b-256 0dc77b9587b6c53f1dae9529da6fbc2a1c3871f281edfb97f0cd7dde40dcb711

See more details on using hashes here.

File details

Details for the file pyxsql-1.11.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyxsql-1.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b017090d971cf430fe0243f3f6204552420684df3cf0c946dee495c5f3b82f9
MD5 90120606c67a0dc864b2d4c63eeb9b21
BLAKE2b-256 13c8282728f666e5a0191ca8bea2f8aa6b17085c0de1cfdd515bbac5cb6bec59

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