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)

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

Testing

Run the unit tests using the included test runner:

python3 test.py

Continuous Integration

A GitHub Actions workflow is included at .github/workflows/ci.yml, which builds the extension, runs the tests, and executes the examples on each push or pull request to main.

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

Uploaded CPython 3.13Windows x86-64

sysmess-0.1.2-cp313-cp313-win32.whl (10.3 kB view details)

Uploaded CPython 3.13Windows x86

sysmess-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.1 kB view details)

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

sysmess-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (7.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sysmess-0.1.2-cp312-cp312-win_amd64.whl (10.6 kB view details)

Uploaded CPython 3.12Windows x86-64

sysmess-0.1.2-cp312-cp312-win32.whl (10.3 kB view details)

Uploaded CPython 3.12Windows x86

sysmess-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.0 kB view details)

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

sysmess-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (7.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sysmess-0.1.2-cp311-cp311-win_amd64.whl (10.6 kB view details)

Uploaded CPython 3.11Windows x86-64

sysmess-0.1.2-cp311-cp311-win32.whl (10.2 kB view details)

Uploaded CPython 3.11Windows x86

sysmess-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.7 kB view details)

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

sysmess-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (7.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sysmess-0.1.2-cp310-cp310-win_amd64.whl (10.6 kB view details)

Uploaded CPython 3.10Windows x86-64

sysmess-0.1.2-cp310-cp310-win32.whl (10.3 kB view details)

Uploaded CPython 3.10Windows x86

sysmess-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.7 kB view details)

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

sysmess-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (7.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sysmess-0.1.2-cp39-cp39-win_amd64.whl (10.6 kB view details)

Uploaded CPython 3.9Windows x86-64

sysmess-0.1.2-cp39-cp39-win32.whl (10.2 kB view details)

Uploaded CPython 3.9Windows x86

sysmess-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.5 kB view details)

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

sysmess-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (7.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sysmess-0.1.2-cp38-cp38-win_amd64.whl (10.5 kB view details)

Uploaded CPython 3.8Windows x86-64

sysmess-0.1.2-cp38-cp38-win32.whl (10.2 kB view details)

Uploaded CPython 3.8Windows x86

sysmess-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sysmess-0.1.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.1 kB view details)

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

sysmess-0.1.2-cp38-cp38-macosx_11_0_arm64.whl (7.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sysmess-0.1.2.tar.gz
  • Upload date:
  • Size: 4.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.2.tar.gz
Algorithm Hash digest
SHA256 9609dc7b1542ee776776672fae6fe8aecdcbd3b7fca778e36a2561d487b3c115
MD5 7597b277317b3d1bef8259f91c65009a
BLAKE2b-256 a3583495bf50455337243bfd06a45d34d9c1ea940352b36d61a2a156746454c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bf4d90be42540054d25dbe22e3af0bb012675f5148fe084b29986bc82c0b983c
MD5 dac3e85b63063628128245ae7e87a8cd
BLAKE2b-256 8804391b43378167ae2df91bb150e5c641c2acd471631fdfec7d8ad2293ff681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.3 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4ed618d5d80e6922fe15972dd8313f9ac2b649ad9ff28729f701057146db7c76
MD5 290bc0d924604a80b6cb1f8fa8ca853a
BLAKE2b-256 671eeabbec864368acc868fdc7db625e4c465ba7865586a56340c65d74fec837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60c7025b074db36b5ebacb4d55809c50bab8797130b3f8c172166f0341d1ce9d
MD5 9124518a206e4cc9026d9740e73bfb69
BLAKE2b-256 c425aa024a0dfbcb96c2dce700da9c3513c4d77532af41f7ff026a7c640c2114

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7c59dcf1d6c341ebe68eac1013aa8c70f2f17efd0ea51f8588831aeef6ab140
MD5 8ca91861a5e3d4966c6616efa290b6f9
BLAKE2b-256 82b64c78c89aacafa3775c6f930b0e6f38b36e50e569108d599990f35a88aa63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 115860be9ceb9f7f848ab4239303aa180de413487ea1b995c4f629d6d4810c3b
MD5 0a6caf5db2f444e42f09710b9d55bb16
BLAKE2b-256 75860ba8d7ff500c24b2b2af5c871e2b7c43fd685f0d2e9d9a1b409cebae83ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7c113ced3bac971e9e1bebfbc7a645d5fe376f58eed518e5e17eee3c2bc4601
MD5 9cbc6dc89b91007350dcf3d08da9886a
BLAKE2b-256 cd11b1747e7e86d3e1eaec5b4411ed54e7019fc887cd94f6a1a5b0bcf57116cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.3 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2c10ecfcf56e97f313ffd15a46622b818737459b78e56f04a9c759024c59d09c
MD5 85726fe9a2695fd7b8995cdbdd701c01
BLAKE2b-256 396788f51a8c84b23dde31dcce9fc063cf2a8b537103f7e6a5a56a8987a633e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72d2874aa520e16f762e0723d9e1c77a4058e371fb7616e1cba211aa708af717
MD5 349f6ee17c9585ed19a8a9ac2598fe84
BLAKE2b-256 bc9036226ce80d3dee8045f254d409aee4271d024a5817fecf0c3a82510ff77f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af45962b285ddad9f5f49ec552d9fa90b0986758396b8b7b7af332a0c40dbbc8
MD5 a508e02e0aa7dcc35eaf9d550a55e9fd
BLAKE2b-256 8b2f87f43f10d31490ae1e8456bc7610bd0c3941caf10151c0d6bc16270c87e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6514d26ef508d31aad70a0eed2f4964e6fdfd8620f5857b0982a564a6909c1c0
MD5 66cf3a6cc5dc7acd2b8a45134f2b6dac
BLAKE2b-256 f58563af052ad40e8d1bf1436464b573ae1216335adfe7e06c0200eef6057081

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52374064afdc2013c218099db737b1d6491d175be970efa19fa4c6c3f3527425
MD5 f29c0e15ff96b1fa9d290938730ff46d
BLAKE2b-256 72fd52fd690a1902a3b9cb7c40c1f769a991d35ecbc4936c51c922e47ed48143

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.2 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19c748d3c34a09adc797b2bb78c471cabc84354791ecedf6fcf08bdc23894bbb
MD5 b5879ce9971c41eff5c11f4154fdab3f
BLAKE2b-256 69a88cdc5bb4106a58ddcebb39fbf38a798cef8742c8fbaa2aa8fe27b934ab0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a83535fe5420828a2209aadd46df0083d386823d37a707c000f27df70905390
MD5 311ab47a37282194256eaf70c633ba32
BLAKE2b-256 50f72da7548f1c4eb436a61c2252d0884ac1035242fca2135e61fd2fe8b17d7b

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09eee9009f37ace34c264b214cd0bd136e0f69c7aced79c6d6660778ec24bc1
MD5 4442449ba7362b113d44e2a40d6c6ef6
BLAKE2b-256 fd567bf71fe14617589d0b80951f5480b81b7961f5610d84deec90cd35d8e786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ec5416148078b3b1d923de60da6ec8b8e50c426558ed487beb5ba2ff2bbf819
MD5 cad813149e287bfd388b64ef51979ca0
BLAKE2b-256 2c058434b6f0a002696c6a3f32d2abb74bbad22b9e667c9e741287ea38327d37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da90441d2130dd48b9e6ad71031f890d6d400e4fbb708e637cb4b00025b838e3
MD5 1fc0f67ffcd585cb0c645059ffbf86f0
BLAKE2b-256 8e1e2812022fa6d4018a46c45009a63675ecc8109d7f01ee8c1990fcf45fd503

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ae328bd8cae620ff7340225efd9efadefdc28da41ae7cc7164ba26839d93fe60
MD5 6948833e448ee7ec92c1e75eedcd4d29
BLAKE2b-256 898f053ed94f508b84bb2596a64793ed1b8e83cfb5d4ad31508fb13725e66db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b496edf390049d139cf18e5f3d18af4f73480894dc286a25a5e0c0c9591f1d98
MD5 b08452a9dd31f3e23a0ee349269f077f
BLAKE2b-256 2605d6cbc394ffc63cbd8117b8c16b1c205444c94c10abc3ab68160df9db5d2f

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1d46ee5f436411ac8bd0f6085218820d2836bdaae563d2d58bd91943e68dc25
MD5 0cefb867ad443a70051182c874740d93
BLAKE2b-256 758662e8833122bfa9f3998039e84b7b4b89ce81c170b57d8f3517c5cd289b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e3525e1b86e7f8da9f6ed74395a9c66430b2587664d4d9cc0308241528aa84e
MD5 100f187cc97d2a577732231a0a8901c6
BLAKE2b-256 fbd7eb8083ba75146679bc2eb18678d16c2ff3a53b484c33474526699944b018

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ac30699ca0d4cd9034c70d8194f32897a575a6c22ad02d803dba34a9b1f825d7
MD5 06c609b1e844c853c0723807e05b33eb
BLAKE2b-256 7734ad61dcbdf87446e42dd682f19836bd57685c88536db51ed1d65353b5f401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.2 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3377d72cc46eedc8b3b20b95786011184508a4430be685b405bf675ebf885a3
MD5 95a667d7f0e9c5c2dc697c0ab792144d
BLAKE2b-256 a3856d85c55fa58b0ac79bf442f05aa2655652946b737c14c3e34648e1dbaf95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4268b67788bf6cbde4272e93b60dd8716738b790c72865341781a9e43301a4b5
MD5 0b25e33f9eeaf8c8125a6dbe7a7f15a3
BLAKE2b-256 053b000e339aa08fc35c50644cf59b2d5191fe2f6837dc781957c10473a36fe1

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4156fc4417598a0f2fe393e090a6894382a793fe3c9411e98f104b4a185091a0
MD5 7c71b107c59f5b0ed2354ba99eba3d50
BLAKE2b-256 5fba6779b8415da69a27b7ad4bfaac8837ec0b94097334b4e00459e5b257d6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf2716ee1362ed4af3dce80441bd15d577a666474964271d4b65f71ffcaf0bd8
MD5 f0db44e08a12bd556902d7fe550eecbf
BLAKE2b-256 b69544b0cc5976e6c957f9d2b0f6cd359e9f48c2cdec35e2fac346f980a7b42c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 587cc3a7a1dae416af4f1df3f06118a45db6be0d8f8eaae239495272ce43d3ee
MD5 bce375157e066f30165382cc69412b93
BLAKE2b-256 be43e23e57772cd0b54f8bcbf52401e51debd6ccc73ccf72ccb04fd125d25b9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sysmess-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.2 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a2d9eef1087e9b5d2fc269b5423a449e7b874411d70da82134d7ddd62b084a0f
MD5 b3d9f3388c3fd474a01d45e2306430e8
BLAKE2b-256 748653176180fb74254be9b3a60ecf730ad0a20dcc7e7aef57b1667ff230689e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74b073784b5a70e6b9de8065728567b846e6c5f2d2cb2c1f540f9672f09424fa
MD5 787627b15bb39f268d8746c997ec5a13
BLAKE2b-256 fb3479fcc039f6dab61579acded705cd8f8f9ab57f48527234bbd3f97390a2cc

See more details on using hashes here.

File details

Details for the file sysmess-0.1.2-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.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f957e7ceb098beceda2954cf668ed57bad63182c89bb031d2b8f57c3e0693c9
MD5 2c52fbcd5390cf6036be3936aa8dd563
BLAKE2b-256 02b6e97f404440bb66497c18167023359525b0136db56fdf94afc12245580894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sysmess-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eecad8f5d65008a0f984239aa7b567ed8010e9163ecc9332b42eeed13a3fa0f0
MD5 65779fb9cf0e6f0af12fa7f28ae9d683
BLAKE2b-256 07dec6808b62579d3713845dcdf5bbdf48b721adc9722fc8c15ca2b14ffd70d8

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