Skip to main content

Fancy terminal message box renderer using Unicode box characters and ANSI styling

Project description

sysmess

Fancy terminal message box renderer using Unicode box characters and ANSI styling.

Installation & Building

Install Via PIP (Recomended)

- `pip install sysmess`

Build From Source

  • Clone the repository git clone https://github.com/canadaluke888/sysmess.git

  • Build the extension in-place:

    python3 setup.py build
    
  • (Optional) Install into your current environment:

    • Create a virtual environment: python3 -m venv .venv (MacOS & Linux) | python -m venv .venv (Windows)

    • Activate virtual environment: source .venv/bin/activate (MacOS & Linux) | .venv/Scripts/Activate (Windows)

    • Install into current environment:

      pip install .
      

Usage

import sysmess

msg = sysmess.fancy_box(
    "Hello, world!",
    title="Greeting",
    center=True,
    bold=True,
    italic=False,
)
print(msg)

# Measure the width of the box (including borders)
width = sysmess.measure_box_width("Hello, world!", title="Greeting")
print(width)

Use the "round" style for rounded corners

msg = sysmess.fancy_box(
    "Rounded corners!",
    title="Round",
    style="round"
)
print(msg)

You can also specify colors for the border, title, and body:

msg = sysmess.fancy_box(
    "Colored message",
    title="Colorful",
    border_color="magenta",
    title_color="cyan",
    body_color="yellow"
)
print(msg)

Supported color names: black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white.

Examples

Once built (or installed), run the demonstration script to see sample outputs:

python3 examples.py

Ouput

sysmess_demo

Testing

Run the unit tests using the included test runner:

python3 test.py

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

sysmess-0.1.3.tar.gz (39.4 kB view details)

Uploaded Source

Built Distributions

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

sysmess-0.1.3-cp313-cp313-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.13Windows x86-64

sysmess-0.1.3-cp313-cp313-win32.whl (11.1 kB view details)

Uploaded CPython 3.13Windows x86

sysmess-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.8 kB view details)

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

sysmess-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (8.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sysmess-0.1.3-cp312-cp312-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.12Windows x86-64

sysmess-0.1.3-cp312-cp312-win32.whl (11.1 kB view details)

Uploaded CPython 3.12Windows x86

sysmess-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.8 kB view details)

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

sysmess-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (8.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sysmess-0.1.3-cp311-cp311-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.11Windows x86-64

sysmess-0.1.3-cp311-cp311-win32.whl (11.1 kB view details)

Uploaded CPython 3.11Windows x86

sysmess-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.4 kB view details)

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

sysmess-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (8.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sysmess-0.1.3-cp310-cp310-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.10Windows x86-64

sysmess-0.1.3-cp310-cp310-win32.whl (11.1 kB view details)

Uploaded CPython 3.10Windows x86

sysmess-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.4 kB view details)

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

sysmess-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (8.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sysmess-0.1.3-cp39-cp39-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.9Windows x86-64

sysmess-0.1.3-cp39-cp39-win32.whl (11.1 kB view details)

Uploaded CPython 3.9Windows x86

sysmess-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (34.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.2 kB view details)

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

sysmess-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (8.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sysmess-0.1.3-cp38-cp38-win_amd64.whl (11.5 kB view details)

Uploaded CPython 3.8Windows x86-64

sysmess-0.1.3-cp38-cp38-win32.whl (11.0 kB view details)

Uploaded CPython 3.8Windows x86

sysmess-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (34.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sysmess-0.1.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sysmess-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (7.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file sysmess-0.1.3.tar.gz.

File metadata

  • Download URL: sysmess-0.1.3.tar.gz
  • Upload date:
  • Size: 39.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3.tar.gz
Algorithm Hash digest
SHA256 a3657f2b0729e1bfaeb17f0867c2c2cf992165fb52dea41073ea4d9b8aec1012
MD5 9db7620ef64f81052455076f13f3f771
BLAKE2b-256 60330fc61553fd449de3ef797978065273d016828980acbf34bb143c0d11b60f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2dabe3c73058f7651cbf81b2519a94ff73130742a5f35535eedab0e5be28b62
MD5 fd8c888682209bbbe5dd3e249bcc7ee6
BLAKE2b-256 ad0b3615798efa3ed28186e2afd550b0f3151537170c9fd8b61b3b0385a2eb2f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bb617f3256eee6bfc7532d8e9ad95b2233aebb9e6d63b0f56b021a5186f7da31
MD5 3bd3ac0965cdb8c909539209916f22af
BLAKE2b-256 deb6cad461e462361745770eb607937fe0bd4251b09b4b3dae8187aed8df7eb3

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 115cafdcb11551d0aba4066bf8a4da7b7ababa34694dba8afda0aec74ecd75ed
MD5 1252b60704af2bbfc0a6b733593f1b8d
BLAKE2b-256 c6ff28800e5a2c3aaae0981240176cc1ac68b2b6c5de997bbe4159a3bc4ce9c3

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11c34d9ca70e182c5f694a8b6261e8c7cac54920ec0dbc820e2371944c126fc
MD5 ad4330639b04dc6c55462ecfc14e7768
BLAKE2b-256 349a0ebfc0918c14455c7d2121394fe35d4c3b885dbbec2ddc2f03c8ed07ff45

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d8b0173cf4593d7d3e66fb11ed538a870914ab2941f2129fdb79623c37b63f8
MD5 741578ae9988b6fa6f6bf028c259e38f
BLAKE2b-256 aaa096cd38b501e27abd6b44adc7ce8d3812d854fec536d1f99850869ece23b2

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24c03057a58d2c29d9d2c1d45b83b85007baf6ed2ac5ec1f4b990a070f6cad6f
MD5 46982834d8b788e4031a296f8128d0ed
BLAKE2b-256 9016d419c1f7e989ce716d89250738c373ae0bbdeadbad179fd75a4c9af55b5e

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f0a9ab5764da69d66662d94ee86f582b528105fdff5a5147dc4bbd68305c2fc4
MD5 6f9f52ff092b3892d36616916661a775
BLAKE2b-256 49b03ebc821cd5294ea0103ce887f173aa2d223763591a5e963105b26b32e381

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50b834821cdca3b7c6fcaf33dd3f9a364784ccc1e86c7e839a69fdbe963fe2b9
MD5 7d50dd7cebf504031fea80d7a2b59c24
BLAKE2b-256 0e91e0725e58260a8364b7a9b41a7c6e82cb15700103a3a117fab9c38aa40a9e

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa766f78595a195c296ebf48e10dfb0d55e6259c074400818c8f20d8bf5bfc92
MD5 7bb581b5ad867d5f3d9a0df9baa0ebeb
BLAKE2b-256 538270b22e58312f6784f0bb059264ff165539fc4e9b1737ae8c1feca29e0fe2

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 797fe203d3aec5f98b460db479adf91cf9c60c6722725b839a0f76f278c27f95
MD5 a37676c2096ccf79147893bf5e77f31f
BLAKE2b-256 de3f28a4bf78f2b243796f77e6a8ebebeac2e542d01d57aea3a1d4783652d5eb

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86e6e5deb90adfabcf62c544488ddd4d58e55ab667921afd75049bc985452bf5
MD5 0064014635b5ffa6433b334aa9d2339f
BLAKE2b-256 5181d8167f1989ba264f8b65ec979910eb8f0e008264ed76d8d67660a9f1c609

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 942ae2730e30fc4f95ff634029d795a14681bb8d9115ac1856eaf0ea56c0c2d7
MD5 9c4251f2785d7b81bc8f32a5f6bdb6ff
BLAKE2b-256 3b3ea5ace2122d5e23c096cad03dab7731c0e50c385e60c1917de47c3644d320

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea01d8447a1d2ed41fc8a5fc868297ae4e9b071dfddd2781613bc0428f357da8
MD5 5fe3c07d6cf21627cb0507b2025d1be6
BLAKE2b-256 8a88a55faee02c5899ea657eb898df1144dfe40bf4441649b8e48ed9e2388a1e

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ec3ad2de5b366f27612f37cda26c6310da7bc23cfe1672c1403b8b657bc173f
MD5 513eebfdb9cd85da40365c246bc5611a
BLAKE2b-256 9e426493f9dc4f5c642837fbbb0d9ab2a733cd3ad63c0e8644f254ff21c57a8b

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f40315d9835782bbb69ffd90891e86133aded54fd3e1c1e670689ffe1265c1c
MD5 1a82cb3d525351a498dc10e51af33454
BLAKE2b-256 97ef49408c731b7c4669af65053f2b68200b90a31c18443505d72135508fb983

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 063c788e64c005d2f68d760b1585b0eb8295e5f1e594fbc080acfe6b13e843ba
MD5 affbd3ffd33345727b410c05b7047a43
BLAKE2b-256 b486b6cc38741ff4764e5b9d7cd160f23cc842f887a83103aca16ae19cf3bb28

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 de89859025c4aeeae820c9d164d3cc95cc54df9b59d368887775349c52fb4b09
MD5 5801c296812dd091ff5aadc70c49e0f2
BLAKE2b-256 c3f1023820f7d20d10da228c7abf83f819ab98b55a05b88548d52f1968d5880d

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48a9a1bcb0a4e55423e3387058cbe7383c4aeaeffe96498c1462243c03d09a12
MD5 79d83ba06da2868b269d65f2219953d6
BLAKE2b-256 c9cef292a5a09bdd5b6f5a426a60eef26928a5468d96b1142c32f5f4f2879e2a

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1aa2bea26dc59d2d49bd2c3c86efb2a510fa7412ad40158cc020618cb75f27f2
MD5 60bd869dcd7a6d32cc79975acea9823f
BLAKE2b-256 14c78a5ed5afbdec7eb29de309257c33760093fd1a94176002fe034e13e7a41e

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f15832fe9d7f6ea7bb33f75bf291a17949aae81248a2a646585e5a6773e6a923
MD5 1098ed6877ae5acf50f662e88b069b68
BLAKE2b-256 6b29dd072e2373e7465cefccff56903ebf31d2367bbccde58f15d513c0972a32

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8cfeb5c2b9d7c12dc1c32a6d9e7e48fea773360e7539f145ee02063cefb1f51
MD5 2c27a568b5b8e3f4bd59a6d6863c6d5f
BLAKE2b-256 d0dbc67cc05656e2ce0ca7bf26a83e706d78d7b70ff5cf55ddef71c56ea85b09

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aec4ae223cdc7d684171c7c603df92736fb734edaff9f6ff977ff1ab4b2acb55
MD5 a26d7f8cda6f7ee59edc86a092e596a0
BLAKE2b-256 e210787cbb8634860de969bb7bd950416e9da0e4a0f32fe7dba96e036687ff4a

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1aca117f197b47b71f6c1ebfc4dd95d623915869c5ebe79e6dcc478aa97ad98
MD5 c2d60d5384e5ee63cb4443b2b6b84aa2
BLAKE2b-256 5cbdf260ac68562d3f27a1f88b9c1b5c2a0c2b769d6f4cdf7bc566ae211c4f82

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab07b8b9b0b64b30c354c935d2f8a6c5e7435968845d78fd07ce034a60b66806
MD5 ba25cedec83a1d390b8a6c2d7853e929
BLAKE2b-256 0b29ee7eb927e11913daedeae81b71c26f05bc49b8f9d652033a391d7b1c925d

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10a000f6e1a7d27b9941be6c54f84fb3b0dacf457400d1c4f15c14502dd21936
MD5 487a1ef83a1cf22cfb43844aac37ff8f
BLAKE2b-256 be0b3d06e1f617f4321344c6912d554d10b8403210eec0a83cb51df7823f8903

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f1f02d6104bff2f49752b23ed5951a933244814aea9e5e7fc49ff9b1115c193
MD5 68233112bd036cea26dc752c52e81e29
BLAKE2b-256 288c88c6dcb49375dbad5965c28b508c4a97cb27eb9c36dcc94877d3c9c05580

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: sysmess-0.1.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sysmess-0.1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e7a2f46575ea713f3272662aef14e4a1d2318406e3627c24277cdfc53e543fe
MD5 2ae531153c035cce6a7dfe5a09797e74
BLAKE2b-256 55115b316d7ee5d251825ba4a0f2f1b0cd1876ad353b231aa4d22617bb7aee4c

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c4b27554470e76c00f4ec88bfc5b6d9c55f14108898fd26338806b54eb76605
MD5 0b0fa5f72ea89bbce3642f0b700696e4
BLAKE2b-256 cb4396231c733f5279f32af677d537c8025d32bed3e2a8cdcbb9dbf5ac7330b9

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1653e625eefe236cbbab59562d4d8537b74957e766e8fa1a95b2950d5a184c94
MD5 23dacab46c0ab166064f344324eb1379
BLAKE2b-256 9e151d71ada21df8a114fe4aa0346d2213521a35a23faf88dbd772c16dc1d727

See more details on using hashes here.

File details

Details for the file sysmess-0.1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sysmess-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16a83a08b0613374ca12bbd2bcc2812a6328c4d5bc50810798790a30159cc0aa
MD5 2e38004d9eb19f4abcef833bb34ea039
BLAKE2b-256 540471337e6adf5b31f3841e8cf3e722881ce0d0f001c73a279f660a7cdd197a

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