Skip to main content

Python application component initialization system

Project description

systemPY

Logo

Python application component initialization system

python version downloads format Documentation Status GitHub issues Ruff Checked with mypy

Full documantation is available at Read the Docs

The problem

The regular application contains many atomic components. Asyncio makes their initializing a little bit complicated. It's OK, when you have a single entrypoint and initialize your application components via your framework. While you add new components to your application iteratively, you don't see any problem

When you create any new entrypoint, you have to think a lot, how to initialize application components again, which callbacks should be called and in which order. But it's a half of the problem! You also have to implement a graceful shutdown

The most painful part is one-time scripts. It's kind of The Banana Gorilla Problem: you just want a banana but you have to initialize a gorilla holding the banana and the entire jungle, and then gracefully shutdown it

Solution

This library allows you to implement application startup and shutdown in a declarative way. You have to implement a class for each your component, write the startup and shutdown code. Then you have to combine required components as mixins into the current application App class. Then create an instance and pass dependencies as keyword arguments. In case it's a self-hosted app you have to call the instance.run_sync() method

Note that systempy is NOT a di framework, but it may be used with any of them. Also systempy is NOT a binding to systemd, but I was inspired by it and systempy is doing similar things on a much smaller scale

Basic principles

There are 6 the most significant stages of the application lifecycle:

  • on_init is called exactly once on the application startup

  • pre_startup is called before the event loop is started

  • on_startup is called exactly when the event loop has started

  • on_shutdown is called when the application is going to shutdown or reload but the event loop is still working

  • post_shutdown is called after event loop has stopped or drained. When application is going to reload, next it would be called pre_startup

  • on_exit is called exactly once when application is going to stop

You may to create Unit classes for each your application component where you may put your code. Then you may combine these Unit class mixins into the current App class, which composes your defined callbacks and runs in the right order. Depending on application type, these callbacks may be called by primary application or by yourself

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

systempy-0.1.7.dev22045747856.tar.gz (22.5 kB view details)

Uploaded Source

Built Distributions

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

systempy-0.1.7.dev22045747856-py3-none-any.whl (30.4 kB view details)

Uploaded Python 3

systempy-0.1.7.dev22045747856-cp314-cp314-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.14Windows x86-64

systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_39_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_35_x86_64.whl (272.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp314-cp314-macosx_26_0_arm64.whl (312.1 kB view details)

Uploaded CPython 3.14macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp314-cp314-macosx_15_0_arm64.whl (311.6 kB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp314-cp314-macosx_14_0_arm64.whl (268.0 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

systempy-0.1.7.dev22045747856-cp313-cp313-win_amd64.whl (153.4 kB view details)

Uploaded CPython 3.13Windows x86-64

systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_39_x86_64.whl (276.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_35_x86_64.whl (272.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp313-cp313-macosx_26_0_arm64.whl (312.0 kB view details)

Uploaded CPython 3.13macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp313-cp313-macosx_15_0_arm64.whl (311.5 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp313-cp313-macosx_14_0_arm64.whl (267.7 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

systempy-0.1.7.dev22045747856-cp312-cp312-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.12Windows x86-64

systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_39_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_35_x86_64.whl (275.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp312-cp312-macosx_26_0_arm64.whl (312.5 kB view details)

Uploaded CPython 3.12macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp312-cp312-macosx_15_0_arm64.whl (311.9 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp312-cp312-macosx_14_0_arm64.whl (268.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

systempy-0.1.7.dev22045747856-cp311-cp311-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.11Windows x86-64

systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_39_x86_64.whl (266.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_35_x86_64.whl (263.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp311-cp311-macosx_26_0_arm64.whl (310.4 kB view details)

Uploaded CPython 3.11macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp311-cp311-macosx_15_0_arm64.whl (309.8 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp311-cp311-macosx_14_0_arm64.whl (264.2 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

systempy-0.1.7.dev22045747856-cp310-cp310-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.10Windows x86-64

systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_39_x86_64.whl (271.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_35_x86_64.whl (267.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp310-cp310-macosx_26_0_arm64.whl (316.8 kB view details)

Uploaded CPython 3.10macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp310-cp310-macosx_15_0_arm64.whl (316.5 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp310-cp310-macosx_14_0_arm64.whl (269.0 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

systempy-0.1.7.dev22045747856-cp39-cp39-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.9Windows x86-64

systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_39_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_35_x86_64.whl (267.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.35+ x86-64

systempy-0.1.7.dev22045747856-cp39-cp39-macosx_26_0_arm64.whl (316.9 kB view details)

Uploaded CPython 3.9macOS 26.0+ ARM64

systempy-0.1.7.dev22045747856-cp39-cp39-macosx_15_0_arm64.whl (316.6 kB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

systempy-0.1.7.dev22045747856-cp39-cp39-macosx_14_0_arm64.whl (268.9 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file systempy-0.1.7.dev22045747856.tar.gz.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856.tar.gz
Algorithm Hash digest
SHA256 62942e58a49017172ac0e10be1229b92e8393fbab07341f9ce10bb506a6acaf6
MD5 ff65bbac21d78d2256dabe0c00bc59b3
BLAKE2b-256 cab42c080b2e69dae9693189b03e9a3e6fa72f8ca24b4d7fd8318f565cfbabc3

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-py3-none-any.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-py3-none-any.whl
  • Upload date:
  • Size: 30.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-py3-none-any.whl
Algorithm Hash digest
SHA256 a46b125edfe9eeabb10f7b00aa6f879afd45ae1ffcc8af08ad72066c3812c35e
MD5 709a95268d8ce174efac6b9baadc28ab
BLAKE2b-256 ea262ec69e2b5293f22f5a2742012eb7ca9a40d167e1d139908b801883337410

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 154.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9fc1a0157b6afe31d92b8ad7a66c45a31a5068f66685436b63f2e11bdb93aac3
MD5 6a06102544814993fef6a3ff8c9131f1
BLAKE2b-256 a46b7eef806272fc260c95f6a94f35212c3c8b8bc912ecf4d8ce11b9a9dc8188

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 277.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 9da020a00f17532af14ef17b6297254b86c6f2e2d7fc5cf650d6a74d45f0a245
MD5 b4ed6733e57d415dacd512fd49a1b6a4
BLAKE2b-256 be166d3a96989996821bd9fa9a3c461be444cfa399b2b546e9be071eb47f9d79

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 272.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 c34237701d1f8de0b8101add1b9f07696e04e95d306824739860933752ac811c
MD5 97dc81a26595d3ffab9014d97a1510a6
BLAKE2b-256 2e6909737a7e47e13cae8a37c17ad81b1a6d4da204d744373776ea27152bf952

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 312.1 kB
  • Tags: CPython 3.14, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 685a1b7832982eb3f62f222df24ce931ff1077c04f518296057ba065621ecbc6
MD5 6cb686ecc1478ff69960ba3c7efcea57
BLAKE2b-256 ea46b84a940dfa8a6948f104414c31190975f1659ac764005cb888befd6084f8

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 311.6 kB
  • Tags: CPython 3.14, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9faaa181857dcc71880161c5ab8390e52d1835285638e81aefd9756eed5cead9
MD5 b79d472ad40699424e3c79780308fd2e
BLAKE2b-256 921da39b8dc502ccd5a29ac5176c97ef2f470119e75296bc1fdd50e162e59f58

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp314-cp314-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 268.0 kB
  • Tags: CPython 3.14, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7fc66a97323482b9fe79bad6919be559d802b65c71edc8f8078d0162f1fe27a4
MD5 e21d07c6f04ff54daa68448f494f4eed
BLAKE2b-256 0cbcddf6abd76c0fa404184cf90f1e5f1185d2ec5050b7e7d9c21a7b89c1fa5e

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 153.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e262d04b36e16fac731e4d09166ee039f4b4c3e4a7303ecee21dcc373b49445d
MD5 916a8ea7d51d85f0b0318524dc924feb
BLAKE2b-256 213669226126db6078d4fb608f6bd1bdbc5688314b371c78d259b9b41f2cd853

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 276.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 958d7f2449cd8d0d585ac6e7b5005966abaeee610782e7541ceb5dfa019cfda2
MD5 d510b1e6671220b5d2c2b386be5d7e7a
BLAKE2b-256 5ba45ac1f085262989c52a57ebe9c6767b6de0787e32c5b67a1007f0ad73fe41

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 272.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 f76220e64b3fc7bb66ac73d112976346a96543a573828394a4e7a9893cbaf5bd
MD5 eeef3d4b72025479305d53b7a28092fa
BLAKE2b-256 981abe4d6fb72635a1f6535b32a4ae54e9bdc67d3d575b624fc930235d5f433d

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 312.0 kB
  • Tags: CPython 3.13, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 93f5ae044e0e4858bb65c79d27d07ffa09fdec295785d2e6fd498bcbffd42d4e
MD5 7c2d65ff66c6b36788122301e840a6f4
BLAKE2b-256 c959e3919df3abe34149e59209ba6a5b0c5abe09b0572ce670316f0f7af76a9f

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 311.5 kB
  • Tags: CPython 3.13, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9dc1febed78d6cfa2af0db613b11a26fd00dcc53778e5705a84ec012b91e6e3b
MD5 6495e589a1c52eb3640194ba2a9545f9
BLAKE2b-256 43099b743dacf1fda6fb185e8ffdb434a49fcd0c36e0debddd3945abecf87443

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp313-cp313-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 267.7 kB
  • Tags: CPython 3.13, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e46a07c8d866144d1ddc6c0d2be8477d03677558f9f31b60536ce9d055307448
MD5 889ee47c097b853542ad284900922604
BLAKE2b-256 6bc79be5b9e46473f7ad9dd426863776a84cd63607805ac3f0498dbfd68c708f

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 153.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a613915c4364e804aac7e0e1ddf7b962410f9e3d52a27bf37c639417cff354d8
MD5 521c0d19fee034c89a7e98f1cde7e191
BLAKE2b-256 a3f2d1ed63ff0f7ff7b5674cf102e69ea77745c8dd221270111934bd59a3bbaa

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 278.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3ec8bf5fbd4c7bc055459dbfcaa856756596493cdeec76c244092285fd5e529d
MD5 30e18f568352da73bac414aa1ad8ff7b
BLAKE2b-256 a50d79a4ec347f024a95337a5560738d7b708af0dd1224f377941602870e1379

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 275.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 f2fbed4341f15c3bdd04dd0900aa6e3c347e8e716d86716038d46ad86efb627a
MD5 5fb0df6b3558c140537ca63bd3c9d022
BLAKE2b-256 4984ed1cd6f83e1b9be8262fea843cc95ad619b4d073fc24b6acfe1d421153e1

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.12, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 623031a209b78ee1d5eae546465d220f3ccabbeab9272d74a4317b779627ad28
MD5 51d6d2813ad445d52c2c680c807d9264
BLAKE2b-256 dba1aa11c4e66b342b83f4f06a5d06cf7dda1771f0b39b927c93a3b0d7e065f7

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 311.9 kB
  • Tags: CPython 3.12, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 27276de14c79f85cecbc12628ecbb8f57b91ffbf89065370c58a4977526139d4
MD5 9803b503ef083710323db5d059892a62
BLAKE2b-256 a451906483135dbf0455ce6a17830add4cc629f58f2a559368407244809c7ad5

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp312-cp312-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 268.1 kB
  • Tags: CPython 3.12, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 efe364ae7e1a0cca2c82d65c778e3f4046d0f780769f7ba32343aba8ac67f169
MD5 99b50b2090c6cbbd3c7827322ed7f03b
BLAKE2b-256 212f1c6840cc382c542530f65974955599e8807098a4e2f0d207b5fd8af5680e

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 153.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13121892f253d4b739a3ed0945ba8ce731aa7f0cdb61e369f86834e66d3471bb
MD5 7f9f5f9b89e484b1517902f702927bc0
BLAKE2b-256 5810ece22cbd9e145de8a182fa070f3ec8da3348e2c67eb8ff3e26dde68376bb

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 266.7 kB
  • Tags: CPython 3.11, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7dbfd6ebf7acdcfd292c7458e25515410567e059ac6cab580cfc3ee6facf3078
MD5 ceff7b30daafe7462cf5d2394f502909
BLAKE2b-256 141996ea946a48cb698928966dc05bb8fedbcce680a812ec64d967033a50aee3

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 263.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 a89e9f381847c9d6e6a2c666a1fe27bb0c64150a4c8e19a6812dd09a023bf362
MD5 0eb9760fa1f7be8d5b30304ea389deb9
BLAKE2b-256 cd4cc0b36a7dc5f8bc3faca08b17c0de3fa3ae39051cb801246be90a6380958d

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 310.4 kB
  • Tags: CPython 3.11, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 a0f479e2084455f7939db28aac672acdfcfb9a3633c47d6102f2b39555dd4c76
MD5 afd55ee193950ee919909606675c86bf
BLAKE2b-256 ca998414397a4c647ef6001e6c5af0a1199d9742fa880725fc8a38a3333ce5e5

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 309.8 kB
  • Tags: CPython 3.11, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5ccadbfe28f32eea5ff16c9bc7ef5b604aae6ca8a99b30294edf7eaed12aacf6
MD5 108344367dff5bb92e2edb895182468c
BLAKE2b-256 988fc76617a52fdb81b45bce61ca7908e32781c200fdde8f146a3fbb98365f21

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp311-cp311-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 264.2 kB
  • Tags: CPython 3.11, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6596f3a50a8acc81221e2f6a76a49139352027004f1280908c30b80773060f47
MD5 d9176e5e9b5b36ea1c0fe7eb12f10593
BLAKE2b-256 3737603c0279e5ab4cbc1309aaa89f3be0837a8a771b46a882af4430fe365999

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6275a36a66c2d9c7e1e78af84a631490d1913ff701ecd687f666bfd9b298bd12
MD5 402b6342d3884ac4230c49686a1dc325
BLAKE2b-256 778a74be2d51a138dfe4ce7b3ab138f4ba9b1456d1115ef8dec9235b11e109b6

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 271.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 9ad7c85a0d01c42755e0bd2a772f5ecd7aa2567fe3fcda0ca9882b2efc5691c2
MD5 b30a4d71f848e36b87d748c304307302
BLAKE2b-256 88f4bfcbc83daf82ab4131ed747d1d54ae51574dc369d4006253dcf425c841cc

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 267.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 acbb34a079e0dc2ecfdce11650ac72e021b46586ec04ad51913ee2126a2df59f
MD5 7221f6ca0e1d35302726f9da3f489f7c
BLAKE2b-256 d3e825816de11b733817f098b38795a6b3933108d3ccc95de5c00f7da5fb5d82

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 316.8 kB
  • Tags: CPython 3.10, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 e5da11477193526f3c10cbac03d349a7fa7cb7297c849bcd9a81b73617cce49f
MD5 5746cd3404201d2830adb2f455f7b8bf
BLAKE2b-256 05b5cf5cae43043a973db192ab12fc8b0819ea48a8f31f6156ff0e897dc8512e

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 316.5 kB
  • Tags: CPython 3.10, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 00ff919c2dda19fdcc86d747b14038e7b3c6f540bbd2d1aed60c35106730e871
MD5 6a6921c4b1167d3c675e01b8a5c9911d
BLAKE2b-256 30e0a4450558f83af800db33b84041e2e0bbb43bf037d1950693bf2926f9d34b

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp310-cp310-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.10, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e94e0d7eb16aaa83cd3646b6f42af17334dabc33a51c36ff6b7b7100192f7987
MD5 69cec524f2874b1f3698ac65eda7fef6
BLAKE2b-256 a15ea29a44bdb6bc3916a89a324c6bd61c617a70af2eeb69926be686a8049cd5

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb8a51aa029f4ed03817481dfe0b9bad80a15b2c5995cf3250ae7d73b1bff58e
MD5 358b3881d52ec8ab52865deac07bc52a
BLAKE2b-256 e66c9635c5454b2b1ccc0f61f13dc28039054dacc616b3cfdccd6060ba0f18b9

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_39_x86_64.whl
  • Upload date:
  • Size: 270.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.39+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 fb5407e2505c3a302f8ad60f0620f9acaf79c69a2168689eea1397db3cb709b4
MD5 fc12c98e7ebf362dd3e0d61875625997
BLAKE2b-256 08343d08fa09042b8b7f18b63e7e3a912a0147acdf8cc7b4276aeaeb9d0a6cbb

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_35_x86_64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_35_x86_64.whl
  • Upload date:
  • Size: 267.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.35+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 1097d1963ee9a3e91a18fcb529b6f68f302e55f002374331e3ffebb3d827dcc1
MD5 a5b75c68d0304f4411f1768e59d6cca2
BLAKE2b-256 d8d6b4ea0d940da6e14b894f2879dcf3d0b0177f9f3e9208d4843b484a7ee9a7

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-macosx_26_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-macosx_26_0_arm64.whl
  • Upload date:
  • Size: 316.9 kB
  • Tags: CPython 3.9, macOS 26.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 e6beb09e182714bb1870b24ffe7d57a3d9e585834d42c95150eaab2b311a88af
MD5 45df459f7edc9c18cc9b3e06aad47d28
BLAKE2b-256 acbb5cbe82d362b566eebbe443e3ebc9310fec5672b7fef0562e4b453f7bedbb

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 316.6 kB
  • Tags: CPython 3.9, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 93f69f0f3d42059ec0a18e9140e2b0059826def9e43a997b266e23e7fdb9f25c
MD5 2a76e3fa2e36e1b5428fe15598e9687b
BLAKE2b-256 d884cb619913ea1d10a4b5f1551854ce724e65e9837951441e07c42d3c5968ba

See more details on using hashes here.

File details

Details for the file systempy-0.1.7.dev22045747856-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

  • Download URL: systempy-0.1.7.dev22045747856-cp39-cp39-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 268.9 kB
  • Tags: CPython 3.9, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for systempy-0.1.7.dev22045747856-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 98a55c60b04652bfafe32692851e8dc73f7e1eb151ef3bf3a5809cb8b0f3cd27
MD5 d7bb4654b7cc9096a675f784e47a16e1
BLAKE2b-256 eb946d300f531db6806a502d2d044e7d4fb5e4734f3308ddb7aa907875f1df97

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