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))

Blink support

You can make the border, title, or body text blink using the new blink flags:

import sysmess
print(sysmess.fancy_box("Blinking border!", blink_border=True))
print(sysmess.fancy_box("Blinking title!", title="Hey", blink_title=True))
print(sysmess.fancy_box("Blinking body text!", blink_body=True))

Output

blink_example

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.5.tar.gz (40.8 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.5-cp313-cp313-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.13Windows x86-64

sysmess-0.1.5-cp313-cp313-win32.whl (11.9 kB view details)

Uploaded CPython 3.13Windows x86

sysmess-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (40.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (41.1 kB view details)

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

sysmess-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sysmess-0.1.5-cp312-cp312-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.12Windows x86-64

sysmess-0.1.5-cp312-cp312-win32.whl (11.9 kB view details)

Uploaded CPython 3.12Windows x86

sysmess-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (39.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (41.0 kB view details)

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

sysmess-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sysmess-0.1.5-cp311-cp311-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.11Windows x86-64

sysmess-0.1.5-cp311-cp311-win32.whl (11.8 kB view details)

Uploaded CPython 3.11Windows x86

sysmess-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (39.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (40.7 kB view details)

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

sysmess-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sysmess-0.1.5-cp310-cp310-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.10Windows x86-64

sysmess-0.1.5-cp310-cp310-win32.whl (11.8 kB view details)

Uploaded CPython 3.10Windows x86

sysmess-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (39.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (40.7 kB view details)

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

sysmess-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sysmess-0.1.5-cp39-cp39-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.9Windows x86-64

sysmess-0.1.5-cp39-cp39-win32.whl (11.8 kB view details)

Uploaded CPython 3.9Windows x86

sysmess-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (39.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (40.5 kB view details)

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

sysmess-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (9.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sysmess-0.1.5-cp38-cp38-win_amd64.whl (12.5 kB view details)

Uploaded CPython 3.8Windows x86-64

sysmess-0.1.5-cp38-cp38-win32.whl (11.7 kB view details)

Uploaded CPython 3.8Windows x86

sysmess-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (39.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sysmess-0.1.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (41.2 kB view details)

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

sysmess-0.1.5-cp38-cp38-macosx_11_0_arm64.whl (8.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sysmess-0.1.5.tar.gz
  • Upload date:
  • Size: 40.8 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.5.tar.gz
Algorithm Hash digest
SHA256 5e5d0a685bc0a6904d039b10a1e39e14355a7d27d60b0b737bd429c73f52b6ca
MD5 a9e434816ccc3c75a95b1d6fd30fa455
BLAKE2b-256 eddbfead92b30aa79cda97af57a29e5541a0fb750bc522c637c7803f997e2b38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cda72324da2cc1305036d5aa3a02f6e8f1b5a454b9020fc8a6e87eca344bbb26
MD5 1b6e98c26a0509a89480acaf1fc898f8
BLAKE2b-256 c77bbd740aea7619aebc3a253bac45d10683771ac8a48887ceba387204b9c7dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.9 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bf7df12c67fcbc1e7d062c103f8f0a96ed7dbfddb3d3809ba542b1c465aa9c30
MD5 50d6b912f736942cbe801dc5a1b458e1
BLAKE2b-256 5d98bca64222b087a49e305d7ac049138782fc914f0205a59579d9ea0e31550f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f59a5053907d09f8d5a48b7adb3c43e51eea866b9438c805f736a19e85f40ba7
MD5 cc00c7de02fa38fae24de9cfa6cba8ff
BLAKE2b-256 aa9e8aa0540dd3954370a9c4a3152497558efa9045d47f834cd5261373136800

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f721713dee8dd4ae7b2a3aba74a766ef7b1df5cb8641fd964ef569a28c4b7f9
MD5 25a5b79cf142c43bf1bbb7a3b2f66b56
BLAKE2b-256 271c026f04e35babce0e63ce65640599f2205993e8fffcd12967104e753dbfb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dab09eeae780e3c581d4e46d1ba2555eaa109e9a7f89bcfe628835db187bdafa
MD5 ee9970820813c6f8bdacc04c491175a7
BLAKE2b-256 edd37ce2b7db4bfa4c7907089606b620aebcd0031c57479a87baee256cdc6707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52c2359411ff4303a4f6f400ca54b1f2a764854cd74164207f2e59edaf737edc
MD5 bdf183e52c5bc1814f8a4ef56f596da6
BLAKE2b-256 f3845da39acb01763ed45fb92030c3335446bca0cc28ab5c2b4f05ee5b04274d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.9 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f66ad49bf96117dfc59fb63778a36a9a64fabe81eff550bed309a460aa3c735
MD5 fab3b396526f41526ba85bcbf02a5619
BLAKE2b-256 e80916dc5b8c174256e1ac3f14d9fb5113790685a73505eff6eb96555cd38deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 162eff7d6c485c5a849017cf9b124e119fac99c7864dbf45f754da09a196306c
MD5 85ba6d32b27bd82c45c6e433a94ba2e5
BLAKE2b-256 2cf70fe7e83244e2c9a09a8d867d40efb6b4eac7ebd13ee9b2936999f076bfd3

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b9ce56019b3f3e48c0d9dba7abd3611143f8d33d9ab6c56a422c38c32458090
MD5 3ffbbdd410366578bf17cd0fd2f45ddb
BLAKE2b-256 995d1f30107b3c83b77c3fbb8b2258e63b12dfad6232171b024c3cbd20629f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74269930637e4424b40e13e52e21c8b3b939415a6c096799c5e13571c35e46e2
MD5 4d5ab07026b626bdcab405a8b27e3cda
BLAKE2b-256 efd8f9be1a276f94a372b4c6ccb433dbacbe38275b55918001f14f2988e8135a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ff2ad619ce7290495ebb1470930ba94cb1431ba94ca8a94230f28a33e15e3d1
MD5 95e0c92e34ffaa478275d0c168740f45
BLAKE2b-256 eb01163f96838ce9de830c5cfdd1d54a4fc7ed00fa3b73c3ccaa6abeee5aba5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.8 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a3abb8d4f04a4a050dba0604358fb37fd2047729bfe96630ca61e6ca7445e38
MD5 d4420d59d725c47e5b5de8497b638e02
BLAKE2b-256 d6c44d50ce01e3859b0214fa93a286fb0ef6823744ada5449312d291f05a5edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83103724ba0a35897beca90d26d1f34c3faaa23d4bf14d4947081400552ba7e3
MD5 f947488601a9969193ff3142a7a7ee82
BLAKE2b-256 dc207442c60e9ac2d154e21e3fd7c49157a441b4a7a2434f9b817c00a9d569b6

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dd0be24e5271a577ccef9c21cd58738e4f916051d4ee8d3496147ec18cd99f2
MD5 a1ba140b8157141d897dc8bd978013e7
BLAKE2b-256 f8803d9f8dde3276bed4c9f240fc7ad871e72f5e89324d6f9d6bb5a6cad32bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1041e4d51e868cad81b1ae55e3ce16197aadd83d0a1966d2031a74f4aa1a528
MD5 63664ce7de028fa462877efb46965f98
BLAKE2b-256 4dfb0a45222d15675a5be00fc34294716c59d87e428ef7881c65f46ceaea7dad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9943480348191599436f7db197ba40657b626c7114ee94b7690412df3a647ff3
MD5 bb8c177b93195a160cfea993a02ca487
BLAKE2b-256 8a5b0c465c2bebf3dcde3a12f07acdf679e030b5af1582d60f3aba5d058c9ffd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.8 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1d0fbb10ecfe56d4caa20629475914d0ea076d8a794a89ac6180fabdd3d4c4af
MD5 a5b3e90b9f4d8993373b07d1cf474293
BLAKE2b-256 52920c40a76be89919a8a10797221b1a344efc4281b6ca3a339533b2f7f4cb5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 637d970e5d641c74f447620fe3d5bc8a98f705063fccfff138dca9b9f183b128
MD5 ba6a61a8d50ee21cffbaccb064bb7b8c
BLAKE2b-256 bb95407049eaa9c52fad6b4f617e3a52ef516f57c49b0dc27149870a315be60f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21f885be27aa3a98deadf0f677513ab127016a6f20c5de9471cf2a34c491e29c
MD5 6d2a33bbfaeaf743e2603e929178397e
BLAKE2b-256 db5f59316c7f12f1b34542c23d8ba9a450166e73b493529b3233c4f54c487aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c11ece7b133b210e43606e71fdc07371b0987c81278c25e12b02df726b7ad16f
MD5 bd075cd860fcdcafe5590c0d4e32f4bb
BLAKE2b-256 2a043a7b7f955726dcad69fb3add966f826f408bcc7e8f44ca5a9ce9153dc260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98e4c2074d38c97a8fca78b7b6d60ff6ec2eaa31d1c30cf569dac9b567ad0fa4
MD5 32bad5e541b7129c973dba980de226e0
BLAKE2b-256 1417be77eb94bf09cb629a8baa354bbe84ce311443c2b55023826a9602ec463e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.8 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4c21588a436f3f35e3e82ec915651e3e1e2485b65d7658f29b39585cb28f9a3f
MD5 31e1d733019959c393a2dcdaa3609d6f
BLAKE2b-256 d11bceffad7ac381e33eeda34b8a7f83595392e6c9e38da46c7c7ad6b72de4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0453e935baa62953612dea21f1d69c647bc925d328acd5fd380c5d7c5bce3a0b
MD5 a28faf73c638e8c346a55dd778b7128d
BLAKE2b-256 ace3af072398e24ff685ff1d75753ae1b12675f98986641b8391326606075e43

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33eea5c3dafb4bcc2f8d537915923451f98ad2fcdbacc8e8befc1494a4068d6f
MD5 74f507ca7f3146f1f47e9084d4df5801
BLAKE2b-256 b604c797b0ef959ecbeee60be61189b1e677667597df899271b5c3b5af3a8bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2caeda573f174732f22d33017beaa05d09ba99c9893c7c6b2b95ecad1fdb1e33
MD5 c81a5b687c6982ad591e0b9979d26160
BLAKE2b-256 df01e9de1d7db92c247643afde59112f577d0ec6354586baccb2a8483addba97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 41d907918f6585794e6afaa83b3ef9dbb82d07d2a12c8168583778a45954b1ab
MD5 3ce9b832fd9ae1592e78425cf39e7795
BLAKE2b-256 0fb636a26b25ef7ed5ab8ac5b5fd1fb7bcd5f4d36209cd2fe8ae042d89f59ba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.7 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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a58a94dbd2570f425704f313ba3d34aa59b189140d6ca453044dddfda7f84650
MD5 ffddcc0331d7975c087c67061894099e
BLAKE2b-256 aab20f447abe635cdc66727e59479aee8138f41877fed15ce5453f225686d6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc388f1643936b47e3a521d511d8d559666254e5b3686f93d15c48d97643639b
MD5 858ea6294ca5070f0988047e44d97c43
BLAKE2b-256 1d5921e21d3cfa7dbcdd0e0b8d0ffd81fa6214f2758959b8c3285eacc040531f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.5-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.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aabc082ca9b37ac9caac2b4392a081986d819882cf024f904801e1603bb819da
MD5 2d4479c2a4511caebb36338fa5db77de
BLAKE2b-256 f5d25cd7b8f83f16a186fcf6d75aa438c603526f8036a814a5b00fa2c62575d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d213e90a109accd07cd54e95a40537f8997fb1dce241659f3616b5d286f9364
MD5 ee2ecd57410bb6940dbe9372be7057f6
BLAKE2b-256 187c129c3764a60efb5a705959e7356bd1c99bcb2356da19e9e9bf70c260ce0d

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