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.

Uses a dynamic string buffer for quick and snappy message rendering.

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.

Word wrap & max width

By passing wrap=True, sysmess will wrap your message text to fit your terminal width (or a specific maximum width via max_width):

import sysmess
long_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit..."
print(sysmess.fancy_box(long_text, wrap=True))
# Or specify a fixed max width:
print(sysmess.fancy_box(long_text, wrap=True, max_width=60))

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.4.tar.gz (40.3 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.4-cp313-cp313-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.13Windows x86-64

sysmess-0.1.4-cp313-cp313-win32.whl (11.7 kB view details)

Uploaded CPython 3.13Windows x86

sysmess-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (37.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (38.5 kB view details)

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

sysmess-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sysmess-0.1.4-cp312-cp312-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.12Windows x86-64

sysmess-0.1.4-cp312-cp312-win32.whl (11.7 kB view details)

Uploaded CPython 3.12Windows x86

sysmess-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (37.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (38.4 kB view details)

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

sysmess-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sysmess-0.1.4-cp311-cp311-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sysmess-0.1.4-cp311-cp311-win32.whl (11.6 kB view details)

Uploaded CPython 3.11Windows x86

sysmess-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (37.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (38.0 kB view details)

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

sysmess-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sysmess-0.1.4-cp310-cp310-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sysmess-0.1.4-cp310-cp310-win32.whl (11.6 kB view details)

Uploaded CPython 3.10Windows x86

sysmess-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (37.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (38.0 kB view details)

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

sysmess-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sysmess-0.1.4-cp39-cp39-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sysmess-0.1.4-cp39-cp39-win32.whl (11.6 kB view details)

Uploaded CPython 3.9Windows x86

sysmess-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (36.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (37.8 kB view details)

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

sysmess-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sysmess-0.1.4-cp38-cp38-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sysmess-0.1.4-cp38-cp38-win32.whl (11.5 kB view details)

Uploaded CPython 3.8Windows x86

sysmess-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (37.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sysmess-0.1.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (38.5 kB view details)

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

sysmess-0.1.4-cp38-cp38-macosx_11_0_arm64.whl (8.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sysmess-0.1.4.tar.gz
  • Upload date:
  • Size: 40.3 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.4.tar.gz
Algorithm Hash digest
SHA256 8afc7fd04fc615763a15fd2e01a65987ee0fb0ac853d2b4c97ba26b9b9baf25a
MD5 368710c423fbe1be05f1ad3ab02d391d
BLAKE2b-256 28820e4d19c58d2c5960df0034f52afa30b28fda5ff572c5695c171f7e2d5006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1acdfd9093168ad66bbb327a56201d7132addd1c1d898924ad2a2bdd30ef28e1
MD5 1608f7a64648a542459eb51de74b8256
BLAKE2b-256 eebf8d10f2c28808cc27e02cb96997b8df883cae7227aa5aef34504bae2ee8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.7 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f66b1b6561c7ff1c434b8385f801473063eaf0b1e02afcdfe2d4ad2829be2295
MD5 77787a4f7dd339c2e2b3a0e8c6683638
BLAKE2b-256 16cb3a93af01a6ca0aff450c352f7057a914505d67db0a62c7afbe623be5697c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16b2642f73c7f7fd501f8ede9b5c3f5522b358a1dace7e4eac91deccb5a4cfee
MD5 fbc9c4cd28034d83ad58f904c9a0f411
BLAKE2b-256 e4b644dee5d06611f7a1546b6748b2d6b17dcf58526461d8fea37dbeec23ac9a

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7165b704696804d08e0f2d78c847ae0568336667065eff311a7890c760dba96d
MD5 3f806bf7c3fcc172570f0ce5cb3654e5
BLAKE2b-256 1681b469af58483e75ea21ab7a41a5dae8b3e48c8a7b47660a179a6c524792a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b8cd1bcb52955dbb0ae670e1e4594d949059aeeb239b92d669f1b87e7cd90b6
MD5 9071575026092572d3218f128723bf1d
BLAKE2b-256 cc74829df830f13a840d40bb6bc5bee9b978955519a9cf15b88b7e662bb80976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75721b3a1e65b2e37903620f224da633ac6e73d2c728f8dca5fcd9b9a99a1f4a
MD5 7e1959aed0cfb85763aa6ae16b1e8c24
BLAKE2b-256 9a92889e09074b567afb5eea5e1a45aa248370627b99233710bc7ff293ef1ae1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.7 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 edf37a646b9238268ad484827fd5d579dfce757d00e739f7fb78c2a8d03b4c21
MD5 f12fd3dcc19ec08d02974944c89a9303
BLAKE2b-256 37c799698fc4d2d0acfc5f67aef8d9ccf0a1660c354aee13d26bf9bbf9290cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c6fd05dfc7236ad3697e3171b9c7dd9ff9bae668b2bfa45590a646e0442ac1f
MD5 0d62ad48172c7e022c4427b37270f616
BLAKE2b-256 b55c444064e99864e66eac532814f58a3a27b37f76281f9decd525c62f4439bf

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b2399fbe653cb9fcaabb8bb500e59d972257eb110b2a0107e404ac9e5e291c7
MD5 25b586d41e9d06ec377c1294c20a672a
BLAKE2b-256 d12db75fac5bac80e1dc6ba05416248e9f805b3b995b9b21dd6f2e08516c87d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1b418428a7951ab4496954589d24308ffcb4b90b12f95c9c862b2ae71aea44b
MD5 f5bbfd6aafddbd9c9369658e75cd3bd4
BLAKE2b-256 064c233ad3fc9acb916cd2167200d70689abc25ec8198c224e680932799d9f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76300616a257dab5153fb0008c324b1df932652bd3e6c963e7a6b3485f6d319d
MD5 2e18a0cff7a9762d4713b49d6c956c05
BLAKE2b-256 1b2d4bbc1bd7fb09c69d41a289483d1483f485a0331f65222b1d19f7cc576ca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.6 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 056c7bbca9e2a81ccc36bb53a295d0acdaffd881d897025d797f7166e7644e94
MD5 55140f8135a67bb88a74485a9b2c2d20
BLAKE2b-256 84495b3b9a02b42850198e13f110307d750a5d474c30431e6701080679c19c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d486dbb206695c840960285615c0e5d1c01b531914d327827c1a14a8effa3c98
MD5 c745c0fe0073e99fa9559b804bb57c8b
BLAKE2b-256 cca963d9d9f71bc78ee9ccf330f8c78409b4763e4b259fd402ac130bd3eb6161

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f8b0642202108f6d3eb4395b8cd332ceb6b31f4870d82bb20818ef210617c38
MD5 f6aeb91f419521e12ab7a94a5db162e1
BLAKE2b-256 d46cd974a3996fe3e4748474a55df9df82c1139b1489efb8ea811f1511832a3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c76ff1d7e4dc2c14714d37f67b104b41358e5c0f4c410d67015372dc655ae888
MD5 f14847d85d3b264f7163b7746c9f3359
BLAKE2b-256 1f91db5f86c694c6b92061a2a1042039580d47e424be9bc7566e2b4829c97983

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71a5a8f3fc8ff44d8abc050dad1d20a8b6a2798bf9892d6655f38aaadae253cd
MD5 760c8e117afba81f88f720f6d4c7c30d
BLAKE2b-256 6b451377a6d07fd39fdc430b8d6a63bbe80fe2f851eac64af130622eb641513d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.6 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 db855589b0cba50760473fd2938135093d56ea1054c4bd79845a02f1aefa0743
MD5 23cbcfb6f53d0f152bc519df7c11b86c
BLAKE2b-256 c48f4975edb99ac12ab808511e947510ccb53f299b3b37cafd6465a691e1db40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cc3f4e0cef13c496ff7cf4640d332e3a2d5552322b59bd915c27e1695e84f89
MD5 f55f0ae9be088a07052c24c3e897c192
BLAKE2b-256 61e56b9695eeff874ad3919d56cb3ced52abc024723e639a3730a29ec9f3ce1a

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb5f5d903311d1dffd35c2500c761f2efd11093a58ce8d80af0d3ae70d5c003b
MD5 c5a1fdde25f809c93957c5ca81c98034
BLAKE2b-256 447507289e3897d6cf29f34e735a1aa4402f53193bb2d499d559319450f0f1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe6d362645fe70c649feace2b69ecc7a0b81caa384d10b4fdd4e30f5d4c93e9
MD5 b4f8bb38f727fce2e959f1af024324d2
BLAKE2b-256 b7cc149972b5c90d2e4fd2c6223645fad31065fdc36f0afd0ad440b044a97b03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28ac42c3933836dae77c7af60321bcea86631aa844a39a33eb747a498c70fae2
MD5 9423232beb5112694e074c417ea1ae19
BLAKE2b-256 4f51fb03c25226486a13edfecca7969fba26cfa9be181e6fe58933101dfeef19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.6 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a0836719e313ca907ace0eb5456e6b2252a26f584afac2675176e94759dab29
MD5 f41221a08d5c27c9ea4bbc48db928e55
BLAKE2b-256 e8075ab91dbc8622e5ddf5fce70d607a5814f117fc01c572edc20d196094a0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27bdbbf15b9c4ddc562f5a1757044b0cc41382cab090f9d3664359e193622261
MD5 061b29c2d159fa5c9279f50ac71496c7
BLAKE2b-256 40b57aeb77906d402b0ddae12062d835b90c72e50b74f9feb015d49a492a6f22

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f1e2f34a9322944a6478bf70c24f3d3c43328ff6f068c3d2e5a0fd026c4257c
MD5 48deb4a5b98499da555c45fc0c51ff4c
BLAKE2b-256 8308da3a39b5303071afe89e6b48cae44d2e524cc9d42aef811ddffbc23c9950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6d6132c76c70bf1413f3d65cef8322827f06ab1fd41263f5e9d33596e036f0f
MD5 1a20d50a5a4ff921371626ed1fe60667
BLAKE2b-256 2ee93bc855957ad246163ac5326aba7f60719e12da749a57fa5f809a0ae24eb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fa1254dbbc0ddb4c969fb1fddbbbb12c7bd48dbbcbd083b00dee3d383e65a103
MD5 2ae1e75f4d45cb857e3b3be52d9b3b0a
BLAKE2b-256 a7ee620fdafe6c995d819a932942ada549b21938502eccc45a2a9ada28208e7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.5 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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3e99ac1386e9577e5f52b6744b19b64d1447d34d2fa827754d272fa71e8a2f2b
MD5 63896f61fa088152f32577a55c1dc65b
BLAKE2b-256 97efa78849cdb6dc4c3eda0923be2b7ddfe4815a3456df2681e43d69afa7bd6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 704474358431c9dafde2ba21226ee2c5b4f369db45c458022fbee83a0e2fa204
MD5 22885cc81cbb73f48b9b70129338783a
BLAKE2b-256 f5874f20762b044b07698b4bb42f246d25ed9968879b472f754ec900f2681c7e

See more details on using hashes here.

File details

Details for the file sysmess-0.1.4-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.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a1fb34c1c97d28277520cc9364b5bc42cc554dfc0c0812f09628a093e67d52a
MD5 e386e1f9b52831aac5e5750f921527d5
BLAKE2b-256 2a974cdf41789ca1f5507c4df0abb3a2ffa75f8c3b13cec98fb826353d93c3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7790c9b7824514012e9a73c3da790b09e2b8f9a1b8a8437e782b120e348469f
MD5 4a6b0d8d3c171b63314d192a08a1082f
BLAKE2b-256 5f30fabcc31034e1db4b2c96e79a4d34510543427e5bc28d7bedd66e6f1e1226

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