Skip to main content

A Python library to simplify common programming tasks.

Project description

xulbux

xulbux is a library that contains many useful classes, types, and functions, ranging from console logging and working with colors to file management and system operations. The library is designed to simplify common programming tasks and improve code readability through its collection of tools.

For precise information about the library, see the library's documentation.
For the libraries latest changes and updates, see the change log.

The best modules, you have to check out:

format_codes console color


Installation

Run the following commands in a console with administrator privileges, so the actions take effect for all users.

Install the library and all its dependencies with the command:

pip install xulbux

Upgrade the library and all its dependencies to their latest available version with the command:

pip install --upgrade xulbux

CLI Commands

When the library is installed, the following commands are available in the console:

Command Description
xulbux-lib Show some information about the library.
xulbux-lib fc Parse and render a string's format codes as ANSI console output.

Usage

Import the full library under the alias xx, so its modules and main classes are accessible with xx.module.Class, xx.MainClass.method():

import xulbux as xx

So you don't have to import the full library under an alias, you can also import only certain parts of the library's contents:

# LIBRARY SUB MODULES
from xulbux.base.consts import COLOR, CHARS, ANSI
# MODULE MAIN CLASSES
from xulbux import Code, Color, Console, ...
# MODULE SPECIFIC IMPORTS
from xulbux.color import rgba, hsla, hexa

Modules

Main Module Contents
base
Sub Module Contents
consts Constant values used throughout the library.
exceptions Custom exception classes used throughout the library.
types Custom type definitions used throughout the library.
code Code class, which includes methods to work with code strings.
color rgbahslahexaColor classes, which include methods to work with
colors in various formats.
console ConsoleProgressBar classes, which include methods for logging
and other actions within the console.
data Data class, which includes methods to work with nested data structures.
env_path EnvPath class, which includes methods to work with the PATH environment variable.
path FileSys class, which includes methods to work with the file system and directories.
file File class, which includes methods to work with files and file paths.
format_codes FormatCodes class, which includes methods to print and work with strings that contain
special formatting codes, which are then converted to ANSI codes for pretty console output.
json Json class, which includes methods to read, create and update JSON files,
with support for comments inside the JSON data.
regex Regex class, which includes methods to dynamically generate complex regex patterns
for common use cases.
string String class, which includes various utility methods for string manipulation and conversion.
system System class, which includes methods to interact with the underlying operating system.

Example Usage

This is what it could look like using this library for a simple but ultra good-looking color converter:

from xulbux.base.consts import COLOR, CHARS
from xulbux.color import hexa
from xulbux import Console


def main() -> None:

    # LET THE USER ENTER A HEXA COLOR IN ANY HEXA FORMAT
    input_clr = Console.input(
        "[b](Enter a HEXA color in any format) > ",
        start="\n",
        placeholder="#7075FF",
        max_len=7,
        allowed_chars=CHARS.HEX_DIGITS,
    )

    # ANNOUNCE INDEXING THE INPUT COLOR
    Console.log(
        "INDEX",
        "Indexing the input HEXA color...",
        start="\n",
        title_bg_color=COLOR.BLUE,
    )

    try:
        # TRY TO CONVERT THE INPUT STRING INTO A hexa() OBJECT
        hexa_color = hexa(input_clr)

    except ValueError:
        # ANNOUNCE THE INVALID INPUT COLOR AND EXIT THE PROGRAM
        Console.fail(
            "The input HEXA color is invalid.",
            end="\n\n",
            exit=True,
        )

    # ANNOUNCE STARTING THE CONVERSION
    Console.log(
        "CONVERT",
        "Converting the HEXA color into different types...",
        title_bg_color=COLOR.TANGERINE,
    )

    # CONVERT THE HEXA COLOR INTO THE TWO OTHER COLOR FORMATS
    rgba_color = hexa_color.to_rgba()
    hsla_color = hexa_color.to_hsla()

    # ANNOUNCE THE SUCCESSFUL CONVERSION
    Console.done(
        "Successfully converted color into different types.",
        end="\n\n",
    )

    # PRETTY PRINT THE COLOR IN DIFFERENT FORMATS
    Console.log_box_bordered(
        f"[b](HEXA:) [i|white]({hexa_color})",
        f"[b](RGBA:) [i|white]({rgba_color})",
        f"[b](HSLA:) [i|white]({hsla_color})",
    )


if __name__ == "__main__":
    main()



View this library on PyPI

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xulbux-1.9.7.tar.gz (113.9 kB view details)

Uploaded Source

Built Distributions

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

xulbux-1.9.7-cp314-cp314-win_amd64.whl (713.0 kB view details)

Uploaded CPython 3.14Windows x86-64

xulbux-1.9.7-cp314-cp314-win32.whl (616.5 kB view details)

Uploaded CPython 3.14Windows x86

xulbux-1.9.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

xulbux-1.9.7-cp314-cp314-macosx_11_0_arm64.whl (941.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xulbux-1.9.7-cp313-cp313-win_amd64.whl (703.6 kB view details)

Uploaded CPython 3.13Windows x86-64

xulbux-1.9.7-cp313-cp313-win32.whl (610.2 kB view details)

Uploaded CPython 3.13Windows x86

xulbux-1.9.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

xulbux-1.9.7-cp313-cp313-macosx_11_0_arm64.whl (942.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xulbux-1.9.7-cp312-cp312-win_amd64.whl (703.0 kB view details)

Uploaded CPython 3.12Windows x86-64

xulbux-1.9.7-cp312-cp312-win32.whl (610.5 kB view details)

Uploaded CPython 3.12Windows x86

xulbux-1.9.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

xulbux-1.9.7-cp312-cp312-macosx_11_0_arm64.whl (943.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xulbux-1.9.7-cp311-cp311-win_amd64.whl (698.6 kB view details)

Uploaded CPython 3.11Windows x86-64

xulbux-1.9.7-cp311-cp311-win32.whl (605.1 kB view details)

Uploaded CPython 3.11Windows x86

xulbux-1.9.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

xulbux-1.9.7-cp311-cp311-macosx_11_0_arm64.whl (932.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xulbux-1.9.7-cp310-cp310-win_amd64.whl (698.2 kB view details)

Uploaded CPython 3.10Windows x86-64

xulbux-1.9.7-cp310-cp310-win32.whl (605.0 kB view details)

Uploaded CPython 3.10Windows x86

xulbux-1.9.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

xulbux-1.9.7-cp310-cp310-macosx_11_0_arm64.whl (944.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file xulbux-1.9.7.tar.gz.

File metadata

  • Download URL: xulbux-1.9.7.tar.gz
  • Upload date:
  • Size: 113.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7.tar.gz
Algorithm Hash digest
SHA256 6952edb3c86e951df077ebbd68db3891b7b8fa62af86822c98c3b894d2b1156e
MD5 a228f619e453ff733b6e742c41799e23
BLAKE2b-256 2612efef5739481de7aeaeda48204942678af36aa3d28aaeb5c28300f9b2a915

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7.tar.gz:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 713.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c41697c618bba644af492027703e11d6cc23933024b01a7cbc3bc57299d8dfa9
MD5 d9625c492cc54f7ee252773c5edd4a3e
BLAKE2b-256 a9075dedf215ea6023b56564f0bdb798283ba685591c44f107c206dd2bc92188

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp314-cp314-win_amd64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 616.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 40d401717d6de9fa5746c54ff778fb5da46b304f197b4577256280cf70e4102a
MD5 70df261ee0878af2a3f53dcd881351af
BLAKE2b-256 b5bdcce7a7a110b8d8927de62be6e0763fb8d0b51d16f6aa15e8e5ea69de5d17

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp314-cp314-win32.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 370a4a4ab12b15cfaa3cf2ea60dd65be9b1250d9b769f90e30d95e9d3cf7273e
MD5 d18dc84e9056e146b0b368787231b825
BLAKE2b-256 3e39efc815e0af1ae44ee2d315241d2de5d3228ae2178a59c04ba9a6416fd02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 493725b968ade32ec8eb098761ef267b0a482b98bc3dee89cb57ea721733469c
MD5 6717b2c68fc447db086c56a671ca4b0b
BLAKE2b-256 b5d7964902eb440011ab154c5a405208fedd2fa35b42a30a4deb8868663fe03d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 703.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50f70096cf5c946f2f1749226c56f03c5b55728e24df46892af14f8e5c07e123
MD5 882deff3e2d9303023d0f11122c86893
BLAKE2b-256 1a95b47570c1f17d76d4ff4a44c05496a86f03fb3661b2d589ee2ac89d3d0e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp313-cp313-win_amd64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 610.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f582b1d210d0d2bfdb74760d742597825c42cad2665d81987f96392c86bc3920
MD5 3a382475f7eadb9710678cd0b6f3a00a
BLAKE2b-256 7fcb8583f85c5a2047c3280ff692ffd68fdbc4d17a1f9398a4fadf33e202e75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp313-cp313-win32.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 345fd9e3674af66e13c7538f85fc7e1561c84aa2b2a2dd399cb875955b8d39f9
MD5 22f5462b1201afb9e4266fcf0d925df4
BLAKE2b-256 763ff0be1790fd410a8bf192dc7b3615d88415e9822915a40ddd15dc9bc93978

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b3d0a19449a674deb697406e0014246ab97543beaf2036e54ce088e136b8d3e
MD5 62de83b4c5689d037e33c018b094906b
BLAKE2b-256 c5afd54eb045c81960c975addd581662d7585f4f5da682414e5c53a9a740ed31

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 703.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c132528b8bc1420b00390d42d54cd24ad044336184dcb98ff4d16fcde8c0cd30
MD5 f1e4fa3217d9fece888f235d5c8b7500
BLAKE2b-256 d80ede00328af7f0ed6f76acbb9e32931937f3d4395fc98a5b8233f8bc43dcb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp312-cp312-win_amd64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 610.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 de1f47a78ce91bab05f14cc9256fec180d1dc2385638a064d84ece66a1ef5925
MD5 6c99b3e021e05efb0e872e1bf0cb1731
BLAKE2b-256 c476a1fd201f8a13737bc574ea88215745a2940d90f049d31491388f07126718

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp312-cp312-win32.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ce9a91ffa8b23ea86e0793a06626660f5b431f200401622056e71971e3e250f
MD5 8ea08bc2f3d14bbccb359b36b73f450e
BLAKE2b-256 1b5d9c61e8ea4cf36c55c5c061d6cd2b4dc0508a58f61748b9372214bfd42b30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b606d8770d32017fe20e14a6a7cc40edc3a5fbc37f21545228d689fd96dc48a4
MD5 119ad19e9c913937b9c8cd6bc5725de3
BLAKE2b-256 42529704942e7c0f0806c7101097bbd37a4d4fa9efbf4d24506d09eaa58d1630

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 698.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd5cecfe4d25d0ff9eda8697d0c17d10dea11f1b829c49062f7c0b1f0817cfe2
MD5 d84c73423d4dbb34f450fa118f853579
BLAKE2b-256 705d26e33293fe724fd3984bd29a6ed34701ae754888203042d1126747de7fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp311-cp311-win_amd64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 605.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 56e67d12b6f4c42d857706b9a0897f7f1a724eb69f027bd83b1a6f603617905a
MD5 188729f3d11cfefeea50465601fac319
BLAKE2b-256 cac70297fe461b5d11639091aed46930aed59853e1c3bd6558dfd476048e8206

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp311-cp311-win32.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ba218fdbd22d32b18f4647c0213f982724bf95de79cedf458f52d01bbba8a2b
MD5 08c58295487bd5f1823df1ff64bfa729
BLAKE2b-256 b6987dc9d6ae8a51a8c9c02830898a3789c1801c81b520acd6cab85cd4797034

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 050566ac3075c5eef4227cbc6371777083adcdb1951cdf2ce2253b176350ced6
MD5 d9430bb5324351abeca34f957179a690
BLAKE2b-256 e775917c4c6f5dec0d85fd9d3b95a8901c4d55554328e6110f6a72666f699730

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 698.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a793e1f61865206d36044d4924d11ef03b858974bef5a99cd56d327e294679b3
MD5 d7bac1d57d0fcdbf4e35c8638ee30d06
BLAKE2b-256 fe0c9a83ea2b8e184c50e6cce44456b0d025ae9b31234b486215f4073fa54f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp310-cp310-win_amd64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: xulbux-1.9.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 605.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xulbux-1.9.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 74ccac312a71e36e65f88e4724ad0fe185979c62e40b07049ce921f17e5ec222
MD5 06c7c47a90cff0ec394fdc5842e0ddca
BLAKE2b-256 9e5087daf83495069b44d09dd44ad71f318132c38a4caa9e81e1c0eb1dc4f133

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp310-cp310-win32.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 302cb86bcbcb5ff9d984931265469098ba9a3b08312c57cf276b62b1a947ed72
MD5 88018a1e6f1c4e4e05f040e2bb9ff932
BLAKE2b-256 cfd1546b659af6a5efa8629b0d976bb48d5a0bbed18b2469f3d426db80fe3866

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xulbux-1.9.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06e4a1232e721b7b1d42d4fb192e7f5d7ede307ec5dd730eeb4cc69bd9e892b9
MD5 143f5c34aa480d795f1d010b8d7c37eb
BLAKE2b-256 45c587f441ec847051a15883aec2a48e5d280b3f7c544708386f06e8a2e06b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-publish.yml on xulbux/python-lib-xulbux

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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