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.5.tar.gz (99.7 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.5-cp314-cp314-win_amd64.whl (679.8 kB view details)

Uploaded CPython 3.14Windows x86-64

xulbux-1.9.5-cp314-cp314-win32.whl (588.8 kB view details)

Uploaded CPython 3.14Windows x86

xulbux-1.9.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (902.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xulbux-1.9.5-cp313-cp313-win_amd64.whl (671.6 kB view details)

Uploaded CPython 3.13Windows x86-64

xulbux-1.9.5-cp313-cp313-win32.whl (581.9 kB view details)

Uploaded CPython 3.13Windows x86

xulbux-1.9.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (903.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xulbux-1.9.5-cp312-cp312-win_amd64.whl (670.7 kB view details)

Uploaded CPython 3.12Windows x86-64

xulbux-1.9.5-cp312-cp312-win32.whl (581.7 kB view details)

Uploaded CPython 3.12Windows x86

xulbux-1.9.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (902.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xulbux-1.9.5-cp311-cp311-win_amd64.whl (664.3 kB view details)

Uploaded CPython 3.11Windows x86-64

xulbux-1.9.5-cp311-cp311-win32.whl (575.5 kB view details)

Uploaded CPython 3.11Windows x86

xulbux-1.9.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (890.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xulbux-1.9.5-cp310-cp310-win_amd64.whl (664.0 kB view details)

Uploaded CPython 3.10Windows x86-64

xulbux-1.9.5-cp310-cp310-win32.whl (575.0 kB view details)

Uploaded CPython 3.10Windows x86

xulbux-1.9.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (903.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: xulbux-1.9.5.tar.gz
  • Upload date:
  • Size: 99.7 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.5.tar.gz
Algorithm Hash digest
SHA256 d97403d2c4e1ce889672ba6ff2fede371ef3772b8f9f72eb668f21bb5e8a0ece
MD5 2c83a89a86da9a864ce4cf648d91d5a6
BLAKE2b-256 0f14cdd4abb3aab762b7e77ca28c99183979821f0d38dd69e9c2622879b4faa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5.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.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 679.8 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 683b3f95a66a68a9eda82b223c1d81a2d81aab9842be071d2b125e62e2e0bd56
MD5 d7a607a3342ddd166dce9918df8e69ab
BLAKE2b-256 59b9b9df6e3a490164c7b539537f226eba4be72b1a729698744ad7a8af913157

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 588.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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 887939703ac7cf2832391928fc7b86503621ea10980ce8c8ae5565182b3a25cd
MD5 e4933fda13cb67a647fbab97552075de
BLAKE2b-256 53040d4edeb0edf2c9f1041aaaa73a1ee31e1bc8dabc28310a0758e74fa77593

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-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.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbeb9bc508ac9e3724ea1a9b103dec56dd07d6496a05c426f8acf455d5e0a529
MD5 284b58f3f6849087d7497b0ec53ad0cf
BLAKE2b-256 3aea14507c6884fcb5d23d02ac58906114df5236757e03b5b7e9605c6b795aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e89eff70919a181e96ade9b63d8fdc4ced58999610ae4a7acd3e2556ddb9782f
MD5 daefebb226be4a37d81f9e8aed738108
BLAKE2b-256 d41df598b2d98c6584874706019cc50d5f77f0588dce5e1caf2502e3edefabb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 671.6 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3556086c13a2df9b796ebbf0cf9d5a70c0be9d8d8591dc91e2dd4d4882f04811
MD5 95c1ca56c99781f108bb82d91d70baeb
BLAKE2b-256 895d37fc58647ea3636123d1395431b76c2e094b0c0156fd253cd7e337f978dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 581.9 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f6bad9c57d6fea71e1b0e917881a9b704e6610c77bc80c902ec04be12f11e4cc
MD5 d05b36bff685fd0169332601e227eb1a
BLAKE2b-256 b4acba64075d064a2d9e82bfc701994224b8ff7a0c0e5af7675c688bef454a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-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.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 832de05c7d14372b6667a4d12f471eb2ed11b60451e29609928aa3c83f273118
MD5 a725461998de407239c05d9f4fdaaf7d
BLAKE2b-256 dacc21cb9be51c7af54056496ad6e4751f49bc31afe285a0053afefa6a7dfcc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787635baec25220b0463eb92ae2cc95ecdf4b6e4c56c89df503e9951a79aa3c5
MD5 cd0740067e25cd1d7e586969eb8d14a3
BLAKE2b-256 a3feaf3eaca70205b4189d5ac72e8aa2239c0da6ff648a19209c20d8bbb6f03a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 670.7 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb542834a51e5d9f751d9043d0b329256459228a58f82a6594e4fe3a7652c259
MD5 0034e73b5f738450bea8141b308b8cf3
BLAKE2b-256 4d62ef7f7c9f63cb1affa5d11e95facdf5becdcc940396aa2771e020c0b554de

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 581.7 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 242a479a404dd2faff96eec0492569ee071fe7245f303723726216d61cfdff7e
MD5 7be486d19cac0b757ff1e975a4b6113b
BLAKE2b-256 ca62ac4362023f449abbfdae9d13c0ce276f8a6de76bdef2ee2c40ae9464431b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-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.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43cd94cbcc39a219c3e8d27dc1911ab6c5d16b3b5408177ce1a36134d2562e5b
MD5 aabac5a957b3730e9279715969789486
BLAKE2b-256 a44c62014fa5ea0c6609167eccf1bc061f8a6be2b1409fc88938933e646d5784

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3dec30d6a2d68073ccd686ac55e1125b8ad815914ba2a3a0eb6cb6b0a2458ab
MD5 48491a5f8667ef03c287191c0e129311
BLAKE2b-256 0423d11a269dfba31702fb429c1a532e107b9c47d3da05f8d7a65777f239c6fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 664.3 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d14755dfc6039b95a44cfae84387efd19d15e4280292489d0452db1dcdf5ed6
MD5 2f376fc5d3133e1af5205fe3671ee8c4
BLAKE2b-256 1d86cabccbbaa8c0df13702203b9da68b3f333bc0190541085e6239627063c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 575.5 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bf5d45718aaf96ff07b20ced1b4068dddddec7bf9bfa4e9f18fbca7b5fae1936
MD5 a4a159a16aeef5e507f52028236bbc76
BLAKE2b-256 f888de4fcf0f0ed61be5c8fb35313202483b17b432abb13904960970332ac8e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-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.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f10f4759efe21c1bb5b0bff07d1fc69cf73fd30c8fee802b84e0277cc3c1159a
MD5 ceb52d9128f4cffa038d9f1c2d8a668b
BLAKE2b-256 3a36c83f0c10275ffda50e64fedc582eb8268acbf56e56ddac32527fae67475e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a46bc1263b0ff5fbd815d79234230a41108d4f987424b3aed5c146406dda4283
MD5 e9d17836b625d711318c43998508c67e
BLAKE2b-256 c017dc1ab1b5ddd7a25f98802825db743d838b1e633f18811b615bd1a947edc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 664.0 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9475f76f35c2649527fb7fbde9bd214021bfc928706b9c8c7284ac2c7d7437d0
MD5 9b5a85facd0172a99d954462735542e8
BLAKE2b-256 419c3e9bc3241b29e2f75a2a4dc24a14aec65301b94073bd943cab458ccf37d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: xulbux-1.9.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 575.0 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 275c3b50360364d149bf8cf25d047cc65f3c3081cd1b2de93ef6923859728207
MD5 ffea06aa7aaaf13d4a3fee07122e5554
BLAKE2b-256 ab4a0217e637b49b08a286c18b56618c880cdcaef773d4292b0766f7c9582e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-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.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e0b5ff60fb3ab21e3daef680354326848629c20e14cd8a62355adf921830c9a
MD5 2463df96fcb87fecfb24279b1bab359e
BLAKE2b-256 2862a69f398a47f7d6d6fbc869f16b81837a170586abfa224c900744c6c1704a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xulbux-1.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2099d4e1ac6ad69db436708d311c49a5c865e26c7437aff0e789a80de0683cab
MD5 6b23630689e2a3ed2a8d2ecbb75bff63
BLAKE2b-256 4722e39ab097520963350301d53a561761db5cd12975f05f08cd93d4f41103e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xulbux-1.9.5-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