Skip to main content

hlrun

Python package with a Rust native extension (maturin + PyO3).

  • Rust — performance-critical primitives (streaming inspection of huge JSON/JSONL files).
  • Python — task workflows (notifications & image uploads).

Install

maturin develop    # build the Rust extension

Usage

hlrun json count data.jsonl        # number of records
hlrun json schema data.json        # inferred structure (sampled)
hlrun amap send --title Hi --text ok  # send a markdown message
hlrun amap upload photo.png        # upload an image, print its URL
hlrun config show                  # show loaded config files
hlrun config set my.toml           # install my.toml to ~/.hlrun/config.toml
from hlrun.lib._hlrun import bigjson
from hlrun.work.amap import notice, image

bigjson.count("big.json")               # record count
bigjson.schema("big.jsonl", sample=50)  # inferred structure
bigjson.load("big.json")                # parse fully, like json.load

it = bigjson.iter_records("big.jsonl")  # constant-memory streaming
for rec in it:
    pct = it.bytes_read / it.total_bytes  # progress, e.g. for a progress bar
    ...

notice.send_dd_msg("标题", "**正文**")
image.pic_path_to_url("photo.png")

Configuration

Secrets are never hardcoded. Config is merged from three sources (later wins):

  1. ~/.hlrun/config.toml
  2. <project>/.hlrun/config.toml (found by walking up from the CWD)
  3. HLRUN_* environment variables, e.g. HLRUN_WORK__AMAP__DINGTALK__SECRET

Copy .hlrun/config.example.toml to .hlrun/config.toml and fill in values.

Type stubs

The .pyi files under src/hlrun/lib/_hlrun/ are auto-generated — do not edit by hand. Regenerate after rebuilding when a #[pyfunction] signature changes:

maturin develop
# needs: pip install -e ".[dev]"
python scripts/gen_stubs.py

Release files for hlrun 0.0.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for hlrun 0.0.4
File
hlrun-0.0.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp315-cp315t-macosx_10_12_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp315-cp315-macosx_10_12_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
hlrun-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
hlrun-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
hlrun-0.0.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
hlrun-0.0.4-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 11.0 MB

Release files / hlrun-0.0.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 312.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e83c7a7d2efbde5329a29e0a01002ceddcc260809741a778c7e0d804a171fac6
BLAKE2b-256 checksum
How to use checksums
3874bc370e8d5bfd8b96ef6aac9d4ecfbdea28dc2d444cc88bf0cecd183b0391
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 298.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8a0aa259e7f54e66d9489312e876752459cc809d4ce67af8b715b2827a83b45f
BLAKE2b-256 checksum
How to use checksums
195b5ef0480ed01f6b8d9a454d7d4105c49019db479f8b8f9120477f5879b3f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315t-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp315-cp315t-macosx_11_0_arm64.whl
Size 299.7 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3669add36e25842c5cbd9d21c7ac830200d2207091c6360f658f7f495beaf600
BLAKE2b-256 checksum
How to use checksums
52607b99e070a0fb6eb07996994a632889547ab70718507a76eba82a72c57826
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315t-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp315-cp315t-macosx_10_12_x86_64.whl
Size 307.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2c4ff949bcaaede8dafa2a1ff059c586ccec73471fd3b5571f608a454a300620
BLAKE2b-256 checksum
How to use checksums
6ac5a25f47a664aba3da5ccb14a8eff6d133a302109f742515ec8964273ff310
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 313.0 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9e45ba8ca16ff64cc3b16b84efc22a117fe51ecd191a7be8cb3f1e270ab681c2
BLAKE2b-256 checksum
How to use checksums
b4e1862cefc74f39596eb53939e72a9e6d086d58cfa591ef4dcf49b11d43c701
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 298.6 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eaa047599855dfbe75b378b1ad77ed05de3375ef023dc1975923340a725a21e6
BLAKE2b-256 checksum
How to use checksums
aae2799b567502c49409d75ccf19d123daa26df44fff951563156a8f70c5a8bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp315-cp315-macosx_11_0_arm64.whl
Size 301.0 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6bd6376b976c064b2043e43a269ef298caec87f0877ba66398111f35f3a3052c
BLAKE2b-256 checksum
How to use checksums
c46290f788be29bd8e7fa9f50ce68a04cca6a6ab4368a9f5d031d75d3667e41c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp315-cp315-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp315-cp315-macosx_10_12_x86_64.whl
Size 308.5 kB
Tags CPython 3.15 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
66b95d9243ac0415248751772fb5704254d9d28909b2c03f61e6b96156375ed3
BLAKE2b-256 checksum
How to use checksums
59ee773c37598384e353c76ade216a98d368b5ebf5adecd5fea88afb8f26415a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 312.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a8e88cdf5cac2378da28577fc35a18e18b119fb6875d130e1d2d65fddc983210
BLAKE2b-256 checksum
How to use checksums
947e231271e3adf0bcde10f55c3b228de8fd8421060ffd955963e8583a44321a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 297.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0df9384dd3f884e9f9e454e701ec792a0ecec5b95217cd3c218492b8bb5fe568
BLAKE2b-256 checksum
How to use checksums
79aa1962801ccc11297f0ef6b9b15cba8d5607140ede44d636b88407a509621c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Size 299.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8ba491585db94d6082fdc327f8934afb1ce10cfa08286b752ca4b33e3f4efcff
BLAKE2b-256 checksum
How to use checksums
43d35e0797cedd747a62577276dfa263c9c8faa68522b2598d93cc77a747cb52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp314-cp314t-macosx_10_12_x86_64.whl
Size 307.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3fd27bec4a0ed7b4205c8b9f72781222c35ef26a8dc1029b0fc07d61e303e72c
BLAKE2b-256 checksum
How to use checksums
ee3d8216078e36c19c2f5841c992a3f0dae3013c9da7111409329499ef80f5bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 312.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
446530ee47a99334fe81956d64da93a9794d8e3226bd25e92de6e8ff16720ce7
BLAKE2b-256 checksum
How to use checksums
aef08b0e56841c06bcdbf2eb3f35dc8c4afac241db17550f21cf777e6002269f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 298.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7d47d812613b0792cef3d239d248d6abc29ebe2fbe556293ac44f32ffa02e1e9
BLAKE2b-256 checksum
How to use checksums
54ae31851048bc3f8ac268b7059e89cdbc9679166a10bb2c19b6bcf2b2f28b97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Size 300.9 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c71c15e47d350266112e0dc80c9dffd3ce3472f8fb0f50ec7479f287cdfaa98f
BLAKE2b-256 checksum
How to use checksums
767a29e2af4b5f7ea3c6a2442b9227533bdb963cbcde17d824e573ed2c952865
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl
Size 308.2 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3c4466418418baa59f48ba97dcbdfbf9759e033135c767c0abd933b19b05fe0e
BLAKE2b-256 checksum
How to use checksums
4dee43dc92ea6088dc66e02f3d41ab84ac0dd656de588fba6f73b4226bb39944
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 311.7 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b27bde25dbb309a472a58819a9977c25300ca8f2ce1b1b2cb389974b3eba08ed
BLAKE2b-256 checksum
How to use checksums
9d6594d61db9a9fea2440920756f3b476e1b2cf0a3d7022278a9b20394e49405
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 297.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
53bc9e2314b55a2398ae67adc6de851d7c249ec48d996a5366e5337aacd0eeb2
BLAKE2b-256 checksum
How to use checksums
760eb5001514132a1c65936aa7eed5bef7835dcbe1c668c4cd5cc7d7a4209e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Size 299.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
435304fb12d7ae93ca1cd6e192e9c6c10f7fdd4116a5ce523f3bfeb4dc33468f
BLAKE2b-256 checksum
How to use checksums
127f39b56717b6a901c14b309f94791e0853ae0f2cf2b66c8119abde0ab52c63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Size 307.1 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
6096080198e5ac8650092bdfc3b2689604157fd31a28eed326cd5a6d3ea51d73
BLAKE2b-256 checksum
How to use checksums
bd6f42030b5ddc856f92d08338ee776887e225a788bba7a1035be107fa89fa1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 311.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7fffdeea72dc00563562aecf708808016953ad77cd227cf82edf03287fa5e7c6
BLAKE2b-256 checksum
How to use checksums
86c8ccfa70f69562588d4cc2031ca0567ec31d46cf7d49922a12169f3434c234
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 297.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6a430add90d814411419dc5fc750cf99844118d8806b250679b295fd896209e5
BLAKE2b-256 checksum
How to use checksums
9753b3a9a4756f89c057bca48f59ad019cddb8c597ebe17c5d350067a0fac8db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Size 299.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5c2fcce30d23184cfc7dcd69cebbfeff8b740b2cc263c3b5482b83ec02aedd73
BLAKE2b-256 checksum
How to use checksums
a51207ec5705979d74cd5d3393689619005c274ddb2a4c587a808f89ac45a784
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Size 306.9 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8e7e694afb92ec23b55de16510252d9b651b1730c58b2066857efa60886c8c99
BLAKE2b-256 checksum
How to use checksums
fb9fdbbc135d9bf6755ee2e8f63bb22ebd2a7f38bb9edff27e789f6b328602fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 315.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
faf7e951acc96ef7deefe38ba8a45a5631f298261c0eb41e737882f1e83f42d9
BLAKE2b-256 checksum
How to use checksums
1d25a869f6e0b29a986bdd84eae8f1bf81f683e95ca9744159fb1132d472fbeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 300.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4e3ca7e5d82b3b6ac238b6b8132a66004143063e2c1b8f79bc44caec4c9f77d4
BLAKE2b-256 checksum
How to use checksums
2976abefb49ce83bfffce57819f841ace7598fa0231a5896beff5a1329ff5ef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Size 302.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17b7b5d8b4ef6fe04a9ecb7f86120d54c7624398f444d516a1ffc4af92ecbdfd
BLAKE2b-256 checksum
How to use checksums
353fc41b23dc2953cb3dda91cc82a553e199a82dfb8ec2a089df189e933e9d43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Size 307.8 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ee6bd5532333032ae146a51f43e594a35408b8632f47b31f5028833c1709713c
BLAKE2b-256 checksum
How to use checksums
c72499705777f98f3433127c63869536bc77eb43086f0ec93f8b9c414de0757c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 315.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3b68392ad8ccff048aee446a5ccd3fcb6fe8ebda2e7dc6e004d89e565e24a3c1
BLAKE2b-256 checksum
How to use checksums
18f88acf943bd6a7b648e420c9c35cb77c337882c7570623762979bd08c6e796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 300.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
982bfd0d2c10baf89ead570ef9b649424370602dd55f9dce3795888968722a55
BLAKE2b-256 checksum
How to use checksums
899498a9e124072d2c742f1b6e98453f40489b25890bc95c64f4bdc612d03777
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Size 303.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
61b4c39926b618ee37bb3c1ea2e93f6d0fb84691b3154c304f70066d9c08a37f
BLAKE2b-256 checksum
How to use checksums
25387344de877118824259df70263cb4110d14391481fa9a01f1240d59e997ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl
Size 307.8 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7d6fd70332174815948f1f12a83f7b19d1152d50d3e3790d4721ec17cd910570
BLAKE2b-256 checksum
How to use checksums
381d651e33afc4f11fed9cf7d429f7622e5ce952dda06312277d2937c782fdd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hlrun-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 317.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bd4b802f923b8afacaa58f4aae3b8116e065ad66c4d3e582a758021a86c887d5
BLAKE2b-256 checksum
How to use checksums
6373b99f0caa1afa603688207aafb43873ca18e71957f46cfefa236bf12e8947
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hlrun-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 303.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5e9a8c7962bf34fefd7efb8746ff8f4fb02d1e8b07d0b3581ce41d5ee76d35fc
BLAKE2b-256 checksum
How to use checksums
65a1ff7297ba857151d7965fad68ca57be2d3b49f99870b684246192fc1fca87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp39-cp39-macosx_11_0_arm64.whl

Download URL hlrun-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Size 305.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aeeab5bceffe7e8b3b2bf35c2c9f49f8709a8f10d4bc86c9966557b7d7237e1a
BLAKE2b-256 checksum
How to use checksums
62d3a5df9fa47df668ba570f30c19ef461e621668a50988d65ffc0419aac9e12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / hlrun-0.0.4-cp39-cp39-macosx_10_12_x86_64.whl

Download URL hlrun-0.0.4-cp39-cp39-macosx_10_12_x86_64.whl
Size 310.0 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
6dc030e3c1311517955902c2847e0194faa210985944b298d1674e8d6d26b544
BLAKE2b-256 checksum
How to use checksums
67fe56c993a52b9a93bdbccbb06ed4a3ef83a1ccf84e3cb4a2b6b754fe2f94f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

0.0.4 This release

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page