Skip to main content

A Python library to simplify common programming tasks.

Project description

[!IMPORTANT]
This library is compatible with Python 3.14, but some dependencies may not yet support this version.

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-help shows some information about the library

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.4.tar.gz (99.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.4-cp314-cp314-win_amd64.whl (673.7 kB view details)

Uploaded CPython 3.14Windows x86-64

xulbux-1.9.4-cp314-cp314-win32.whl (581.8 kB view details)

Uploaded CPython 3.14Windows x86

xulbux-1.9.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

xulbux-1.9.4-cp314-cp314-macosx_11_0_arm64.whl (887.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xulbux-1.9.4-cp313-cp313-win_amd64.whl (663.4 kB view details)

Uploaded CPython 3.13Windows x86-64

xulbux-1.9.4-cp313-cp313-win32.whl (576.1 kB view details)

Uploaded CPython 3.13Windows x86

xulbux-1.9.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

xulbux-1.9.4-cp313-cp313-macosx_11_0_arm64.whl (888.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xulbux-1.9.4-cp312-cp312-win_amd64.whl (662.6 kB view details)

Uploaded CPython 3.12Windows x86-64

xulbux-1.9.4-cp312-cp312-win32.whl (575.5 kB view details)

Uploaded CPython 3.12Windows x86

xulbux-1.9.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

xulbux-1.9.4-cp312-cp312-macosx_11_0_arm64.whl (887.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xulbux-1.9.4-cp311-cp311-win_amd64.whl (657.0 kB view details)

Uploaded CPython 3.11Windows x86-64

xulbux-1.9.4-cp311-cp311-win32.whl (568.9 kB view details)

Uploaded CPython 3.11Windows x86

xulbux-1.9.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

xulbux-1.9.4-cp311-cp311-macosx_11_0_arm64.whl (876.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xulbux-1.9.4-cp310-cp310-win_amd64.whl (656.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xulbux-1.9.4-cp310-cp310-win32.whl (568.7 kB view details)

Uploaded CPython 3.10Windows x86

xulbux-1.9.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

xulbux-1.9.4-cp310-cp310-macosx_11_0_arm64.whl (888.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for xulbux-1.9.4.tar.gz
Algorithm Hash digest
SHA256 a01c194d22af5864f1e7225d40efd9757bba997fe0fc506004a656ab9bfd9ac1
MD5 47c91116293897a37eeb6f5801a9e10a
BLAKE2b-256 9d3534cde83c0e33641d04a3773e6d202744a3c329cc04ecdff1c168fc88a9d0

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8de43722fa321c8c721f687228d0ddcdb356cec60aed7fb53f235245683ca70
MD5 0bf5a0f8c7f3375c501de975c17cd908
BLAKE2b-256 13e366688c44828b96d58c5b6c7a2e179ee6463792d00dae2f67a1a5e2d9c16e

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6f4628f180e25d2b01fdd87858493335e6207a8de6f65c763447a4823e85cdb0
MD5 63924e39cf787617a71f6ecd641fa1a6
BLAKE2b-256 c01eafd61535c38987605c6559fd6fa935746e5608ff862f936bc3c053161b05

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 616efd1c179a699c41b3905900969568904a222fdbe291fc8755ad02f40b101f
MD5 2e5862427a0da04e2eda89eb7cca75ee
BLAKE2b-256 8cb83f17061d3f4e7eb9aa9f9b6b629aa9817df72ded9d2636a8a03cb05f245e

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6e0ca75db27d4bb1e2aa8017cc0e68c78ab861c39ff52b7b8bc826b87775523
MD5 ed027d8874ac467b681bd4a94e1bde61
BLAKE2b-256 1beef19be62f5d28650b48f17f14325198e620465cdd75d02750de739456ac79

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 01b8d40fc7f0d92de8d5865b4c29d9a377298715e1f453e8e26be6bc8953808c
MD5 eb7bdd6076f5b12c9cf6f4ca22cb58d0
BLAKE2b-256 85d35a202830d75af908dc06ccd5645e8de1c56a0327bc9426276e2eb44acdbc

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c3b33d5b025baec5fee94c320f8147f4ca2d80864ba35c0077ecd57de63d4491
MD5 8505b66e5ac43aa8f40c0e79c8de3445
BLAKE2b-256 d1b2d105e176623cc01b6c4403d839587014647afb8c4057a210d1436b1eb0b4

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 766571b55bd41588ad61e2e17ce89082cfb8d28153174b4036851b761826a2cc
MD5 36d25e2a4e6f00057f15308167153ae6
BLAKE2b-256 7a1da14794b1ea3d4c5eee04f16e1ab1006cac42613011de883b40b244e05506

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a44a892ffbe3fc90b8791d7a198634228adea5a1fa525ed2987661be6717dfa9
MD5 4fa123682b32289ef540a697524bd67f
BLAKE2b-256 e88d521c4c87d71a9e20b78b3b3ce380c9d131a946d745be5513fa94f9a75e79

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c7e706e170f6ff26cd88fc038454494f5133e75f57f2d83985b763374b296c0
MD5 383c9fc3022159ee3b5cadb6a62109e6
BLAKE2b-256 5f18e49b5d4115a28939f573f25a28e15d790335cd39a6b3a7c3bd46e3b389c5

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 134907317d9aa7eff8e2176aaf1ba7fb604e74ab6bb39ed0fe1f7c8293b18cac
MD5 b6c0fd4ff71e9ac46456eadb9866af0f
BLAKE2b-256 4b34c7ecda55be0049611dd13d1c06bdc0591083bd10f95118a47778d100fe8f

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 361fa7c47a41894e2952e039532c96bdbafe03aad213e339b3e350c2582e757e
MD5 f8f296af9773f86c0b37241db6c62e42
BLAKE2b-256 fa8f08ce7f09a143ea8b412c207415c0bd15ccbe26885b2fd8c27bedd72a699a

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04822c1f375bf4642db04a218a8635f5825ac86d1535c941726cd736b065fc24
MD5 30c17c4d76af26435289614e42d88274
BLAKE2b-256 232c009dd8d5b6607baf8b555ba35ac7daa7729b55997c5461771489e51e3f5d

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 720172a11e2039ddc8d15a567074ecad53682b410882d890b710d585c9845c02
MD5 dd058f2d95054153fd95e9bd39235f81
BLAKE2b-256 2fc73ad331f554c852e78ce14396ed605d0757d9024143738ac14e086648e184

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef738fa879b8ab1cac382bdb7573495889b6cc7c72da8e0af47e8cd249d74a38
MD5 46fa11790232e7bf58300d32fd989bbb
BLAKE2b-256 5d9da07e3da653bd4b75256f74cc6059cdc1d3b6614b1e3bc8e4fe13613b9fef

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c35cb557daeb012890df2f551e5883ec7ebacda905a9f6ec7def66712c5c051
MD5 24e12754e2500770ecc8e01daeb72a0b
BLAKE2b-256 b4ce7f349381c4565128265c1b2a15d4b6df0fc29b6853bd12350d30124ef795

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e98f24cc873aa7fce27dec131516465bc0dc74baa96cf5d90eadb4a99b83f7
MD5 5daef8b62eca8808d7e5fbb52e4f4a5d
BLAKE2b-256 26c14d2372c0954059711d35234673a40b49ca0efdb6463651f30aa47911959b

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60fab5f5d62952c5f61894ce99ca9b622b21395d262ee6d04f4b82d133c952e4
MD5 74a0ecc1f70d27f2f9f5bdd5f7b38840
BLAKE2b-256 15244720564e5f2daeaa23f33da238d211a3a5c3236d688775164904ed9166e8

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for xulbux-1.9.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b01007a64c1a7b675b691b518a20d88134d20c112fedd94fcbd4497e5454302d
MD5 d9fc41aa6dd8a163be40f51cc45a30db
BLAKE2b-256 028b5bb2fdad9522bf22379d6e74bc1b7d6da5c07ebe3614ce0e4e191a5e0fbf

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17f69e1ca3803592dd3e99642e21681a625aeb896625fcad84c6de8f5111c6b6
MD5 257c88bac7427a960fe80c2167512af1
BLAKE2b-256 0f204b418e24ddf424d40458f68580d8bed12cb16d25904810e3825699b17302

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31a1080c3884183aa2c9f41d66c68e6bb300d93a0f0d9690ddf8efb5af8222ea
MD5 b0a61f5d81c20514668bcffc8b446ff4
BLAKE2b-256 2c9325cc7576db5f2e1a5ac0b58262a05ec81d44542f16925940f8a9a6dd583b

See more details on using hashes here.

Provenance

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

Publisher: build-and-publish.yml on XulbuX/PythonLibraryXulbuX

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