Skip to main content

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

Project description

MarkQL

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
  • Optional dependencies: libxml2, curl, nlohmann_json, arrow/parquet

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
cmake --build build

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.

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.7.0-cp314-cp314t-win_amd64.whl (293.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyxsql-1.7.0-cp314-cp314t-win32.whl (255.9 kB view details)

Uploaded CPython 3.14tWindows x86

pyxsql-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (495.9 kB view details)

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

pyxsql-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl (326.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyxsql-1.7.0-cp314-cp314-win_amd64.whl (287.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyxsql-1.7.0-cp314-cp314-win32.whl (251.9 kB view details)

Uploaded CPython 3.14Windows x86

pyxsql-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (494.9 kB view details)

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

pyxsql-1.7.0-cp314-cp314-macosx_11_0_arm64.whl (322.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyxsql-1.7.0-cp313-cp313-win_amd64.whl (280.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pyxsql-1.7.0-cp313-cp313-win32.whl (245.2 kB view details)

Uploaded CPython 3.13Windows x86

pyxsql-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (494.8 kB view details)

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

pyxsql-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (322.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyxsql-1.7.0-cp312-cp312-win_amd64.whl (280.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyxsql-1.7.0-cp312-cp312-win32.whl (245.2 kB view details)

Uploaded CPython 3.12Windows x86

pyxsql-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (494.6 kB view details)

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

pyxsql-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (322.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyxsql-1.7.0-cp311-cp311-win_amd64.whl (278.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyxsql-1.7.0-cp311-cp311-win32.whl (244.6 kB view details)

Uploaded CPython 3.11Windows x86

pyxsql-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (494.5 kB view details)

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

pyxsql-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (321.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyxsql-1.7.0-cp310-cp310-win_amd64.whl (278.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyxsql-1.7.0-cp310-cp310-win32.whl (243.9 kB view details)

Uploaded CPython 3.10Windows x86

pyxsql-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (492.8 kB view details)

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

pyxsql-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (320.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyxsql-1.7.0-cp39-cp39-win_amd64.whl (278.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyxsql-1.7.0-cp39-cp39-win32.whl (243.9 kB view details)

Uploaded CPython 3.9Windows x86

pyxsql-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyxsql-1.7.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (492.9 kB view details)

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

pyxsql-1.7.0-cp39-cp39-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 293.2 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.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8cc406511636b66c2dd0663e78e325f8842a321361cfdcf86a80892d908486e6
MD5 8265f6421842992a16d509bd1f418728
BLAKE2b-256 81eda0980256d7be2f1540ff4b70eddb6328ad1454b3974893b67f5a5d3db8a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 255.9 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.7.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 378b1da4fae4ca0b2cd2cff3f86d06c95d62a1fd7093b72b9f3e9a1af50ec2be
MD5 21e3854aee8704703df8cce25d09f46d
BLAKE2b-256 e50d0a04ad3b7c2dba517cce2ad08615c8bdc9cc258df8c7284b165f0c306e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d873776bc93daf2715c4eb0f79d203ee3d82667262346afcaf886fb6a7c961d
MD5 082d800a4d5665efbcb1ca74c39d3614
BLAKE2b-256 210033e4e548cfa5ba8fb746a9a8d50a3ceefdc29f07098588b9770f70b083c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2b9159aa6037a9a966b86c84348c39fdf005efed9248ab018512e2c4af9ad47
MD5 d5ce4492c884c14add520ffebeac4bc1
BLAKE2b-256 856bcbcb3ddee0f90f033187e4e362dd6eaac3160f047f59be767560214946ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11a93907f124ee663d4d0fe1ca2ef9acf882c5cd22b22045e6989fcb57567497
MD5 8a39ecfa77796d6ea437c50a3bc4cf19
BLAKE2b-256 14bf4345de231ad5eb15990f527b6871f856ca23109e6cd526f40e45189415a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 287.7 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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c15c888113f72e4b9413d4be3baf13323f268ef432d37d7465499feaed9a7009
MD5 ffeef27fcf57a541f6cf24c52af27b5f
BLAKE2b-256 f32745b980b11124ac8471f485adfb8ac14554be46bee8ca5004cc2d3df71667

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 251.9 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.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bbee1a4d3c4773d39250a9efe0010ea7ef170189e0ad00e80ae5f9cbd8196949
MD5 02e955ecce8bf19e2a06e851c6c5a789
BLAKE2b-256 682221081f2e1f8ee1ef72bac26c96d6103f79f7f2504f985747356963eebc26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ca1b9c8e2d2eaee290fc8373b0db19fb0c9515b8fba49ae36bae5106edf3a0
MD5 c29e669c46fac9616ba398d998cc912f
BLAKE2b-256 942d818cb5bcc156ec8b72f39d61819254aa27ff598fad01e16263cd257b2803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13c8dedb441909275fa4214aa3deaf588d87c7b46277d962b300f5f1738664a8
MD5 f5381ca88d0a8d3677de1f274755bada
BLAKE2b-256 7a23a3b4f6490f221116a970f8aca3a306bafcb3e3653a0abddfb8f4c5bbded4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcdeb4769ef7ec6c064b142fff7e42ae0ac171620d217b7c8966f644b25cae3b
MD5 b527ca9c612510516e336b25cdc86b56
BLAKE2b-256 082b913e6acd4fe085063e515fca1802044ed814f212223494d9159534e2aa4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 280.2 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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 963c91f1201998c001d73c652ebdae075170aa8def51b48d0a6dbd3ed6eb821a
MD5 176302a0dae00eab3644667c337ebc6e
BLAKE2b-256 3f7fe09b692666e16cc19b3e86f0ea33b2799d5aafed623701dc463e722acb8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 245.2 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.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0656aca2484b9cf69ae828b09e40076dce1dd13b4fbb0c4ac30a8f08cafb871
MD5 3b549927461f940c8f1955379730760d
BLAKE2b-256 8a55db1b59a60fc36e78b59fbac899a3fb80331781581afd15fd906fc553e5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2196014219c67fb3d3308ee8aea392c8a3300b78781a27d1e6ba69616949bc8c
MD5 5cdb293fc5135c4e9e06c0e2d4180397
BLAKE2b-256 f9f3a0484f22aa4aed4c874368c563f577e8d319a0afc8b7d9085ac320cfb7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ff17e2073b7082ed4e24bb398d3f1417feacbe459a338e8c232b11d681a8063
MD5 c0e63b42d7722bdd8fad178493eae646
BLAKE2b-256 28cb39eddfa2a742635065ffa243415e539d1ecf52fa9b9c0f9393168a0e9f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3046ab21d6ebca86bb091aacb22297a35d73f77e4f4212cf5d6222f1ff2f19a6
MD5 310d7165e33bca1d92d6d5b764127390
BLAKE2b-256 8804dd098d6235576a58c1a54c76b27c780182ef5aeae349d8bef04f5a8f5b28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 280.1 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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f18c22575c9cac0b36bd4946ad05568c4c058de8ed9341180f3fc97c1b03449
MD5 a336124cd52f2bf7b641072e9bec46cb
BLAKE2b-256 daf2f2c303f00106571cc535cad31ff8c9770e98736b40f94d54f7d58bd6fb62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 245.2 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.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5b1397793ae2ce7d873eeeefb6c2f2819d899ba4e22aa46c385afd19af45bf3b
MD5 7b173b4bac58f612b26dfcce4fbe4f23
BLAKE2b-256 4dad76b7bb855e626c35534a258191175a36e48a8bda9a1eb063d78b6ec84b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2bcf97b50e6e1625da3039cf8b138f6a44fde85ecd5089b2b09649433051f69
MD5 cc2b473a8f9d647f8085cf263fbc3467
BLAKE2b-256 45599bf0b19ce0a7b72a3709bf40e683777d2d2027594f8072dc81cc050b89ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70248e74f6d593a3c679ec58e2c83987d35de108b909c276c005dfd5c71e5103
MD5 519822f4eead1d5ae722580aa1c6eaf8
BLAKE2b-256 8b799aacdef7e10f5e384d1b16d85f813ac1f3e5022b62a600ea1160aeae5d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b46dcaa8884b52fb088ee468e8bae490577484bd0375b5e8942cf47628455425
MD5 845c3969f1dfd9d16250f3c988c57bc1
BLAKE2b-256 ab85114dc5d009bd18ce713b58d1a5e81085101ee0cb1eee7a7e5859bc374b6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 278.9 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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aff627b8f3f31dde0765ff89274f67164869096f653c41883773d92276f1baf8
MD5 ac5291fd50f0524db69121624b91244d
BLAKE2b-256 4d8c2261a6c825161f82ff1beb3b0872ca1cc06ca8b1d3512cffdba77c2a29a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 244.6 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.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 26dca7323a4434d15fe263e02fde83ddae7d9909553b8a3701bc258ff5af1c61
MD5 ade5f877122e36661d39c8c7924f9567
BLAKE2b-256 6069f742bbbfc174144444448ff95a6b9207ca449acdc985bff73b596703a69b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0bc92d18f648adfe7f95361906cf3f023fe9eee6980893b7d1b6e5aa753f17e
MD5 df502d862e7d19cbdcc1cdeed4bf22fc
BLAKE2b-256 a2d4cd66c987a4a42e78507d36ea0a4d18491be9a5dbee41d4cb36c6fd8fc3e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75d7f961becedb16e9efc2334423f6f0ec959c6178a3cf06060ec3a44db89b91
MD5 6f934553dade074cec6b4755d9916db6
BLAKE2b-256 c1bafce6cdc8f5af4ac56ed2b6ca74ab6bf547ea4aa93c9f334bcbc08aef6b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d35fbd3d4cb161cdbc5c6a8b25a76a7d4945c6e25b2e9adfe622eeab29fed30
MD5 3424b8b96ccaf2148d49bddcecfb8ffb
BLAKE2b-256 e814fd198320448501b238ba17419c160bd13c41a682041891cba23224810c6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 278.3 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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfd0455c53332dc85546a6d387f9cef2b901328c8eb3647e49816523ea8227fb
MD5 aa2f555ec3bb6b2430e6b605188578ab
BLAKE2b-256 4b8b5f7505cec22ffbfe25ec832c1b1c0fba3793e0785ad84923f3701cb35b7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 243.9 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.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8a2054632ab3c1540c040799383c95c0248b29f9f856276f36e6a8e668787c99
MD5 ea6b21fd5b55b5e25b32f45e8ca408f8
BLAKE2b-256 9e084102d500d757b1d9225e4a7da9beda727fef94b575426e76a97e338279e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bae6c7449333b0915d37d5551668ae156dbdb4247c1e8debdb29067a7870af4c
MD5 6ef88f74fdccf83592d1ec239b2e7e6f
BLAKE2b-256 5a3f9473e46a89886d8f9e4454f3346ba962830d7164c163b3de9f603bc3722e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4aad362c629952c0c41d9f27089e8fef929ade3214fbdae63699aff6412d9fda
MD5 82e5c206933b349e4c95c22c0484523d
BLAKE2b-256 9bc4a38fc174c03dae234689e0f3cc19cb0c63f02541012418f263eeca4e03ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81d9ea7537c5ab87685ba0f61e4e9bf51480bd8af2ad06a57f21ff96b2e2fe88
MD5 0ff018731b978ecc24e4171cb5c23272
BLAKE2b-256 8941bd1a30cab98a5658107add10b973ffc9f95f309d503a962253c62ba2354e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 278.7 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.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7cf3c87ea34604dc79122b7de1e5b3acf28704668979f120eaebae6e693b7b90
MD5 2504731db9fce23cc8a6fcc477f6e6d5
BLAKE2b-256 7165ead6c82a0d65610017a6e29288d91e00053967eeddc6a67716037203a670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyxsql-1.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 243.9 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.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7d9a726ef6e5d17bd1d1172e1866c26eff6f3f908c3af7c6bcbf1a768f4ce95b
MD5 21bc8e74ad6a7ce5af04d78410aa436c
BLAKE2b-256 6e49e6f5fc2b5ece02a26b8072f6a03805e83f62e7160d7e3fa54f671a098e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b77bdb36eeaecea810cb104bfe3d77db6df357660dc29e3a924b18ddfaa5019f
MD5 9f99b0250b44de9bc748a3d4a4c95527
BLAKE2b-256 45e16a4be2b8180b6ed60bac6480de2c8bef0cc49c39bfbea1de0d5faf62e02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92019ba58b059e9a475d22a4e4e26a1bbfe0dcf56673d56afe9d89d718caf808
MD5 d0d9616a118a3eb49d7be7e30c3cf9ba
BLAKE2b-256 4aa53318a0664007aa41d18de566f373b4bf32e36fa3e3f17b1786ed2a06711d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyxsql-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 905eb27cb24aa21e02829cc5166fec984fb2d7cf119f9954a0cdfecf47f90639
MD5 92ec9dda9edb3ddd14dc75e26a579231
BLAKE2b-256 c86005327faab12ddb0ed446deaa2161d9b4f723f84e7adb31d481974c0b1abb

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