xulbux 1.7.2__py3-none-any.whl → 1.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xulbux might be problematic. Click here for more details.
- xulbux/__init__.py +17 -19
- xulbux/{xx_code.py → code.py} +3 -3
- xulbux/{xx_color.py → color.py} +1 -1
- xulbux/{xx_console.py → console.py} +352 -200
- xulbux/{xx_data.py → data.py} +14 -14
- xulbux/{xx_env_path.py → env_path.py} +1 -1
- xulbux/{xx_file.py → file.py} +1 -1
- xulbux/{xx_format_codes.py → format_codes.py} +24 -22
- xulbux/{xx_json.py → json.py} +3 -3
- xulbux/{xx_system.py → system.py} +11 -11
- xulbux-1.8.0.dist-info/METADATA +190 -0
- xulbux-1.8.0.dist-info/RECORD +18 -0
- xulbux-1.8.0.dist-info/entry_points.txt +2 -0
- xulbux/_cli_.py +0 -46
- xulbux/_consts_.py +0 -180
- xulbux-1.7.2.dist-info/METADATA +0 -170
- xulbux-1.7.2.dist-info/RECORD +0 -21
- xulbux-1.7.2.dist-info/entry_points.txt +0 -3
- xulbux-1.7.2.dist-info/licenses/LICENSE +0 -21
- /xulbux/{xx_path.py → path.py} +0 -0
- /xulbux/{xx_regex.py → regex.py} +0 -0
- /xulbux/{xx_string.py → string.py} +0 -0
- {xulbux-1.7.2.dist-info → xulbux-1.8.0.dist-info}/WHEEL +0 -0
- {xulbux-1.7.2.dist-info → xulbux-1.8.0.dist-info}/top_level.txt +0 -0
xulbux/_consts_.py
DELETED
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
from dataclasses import dataclass
|
|
2
|
-
from typing import TypeAlias
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
FormattableString: TypeAlias = str
|
|
6
|
-
"""A `str` object that is made to be formatted with the `.format()` method."""
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@dataclass
|
|
10
|
-
class COLOR:
|
|
11
|
-
"""Color presets used in the `xulbux` library."""
|
|
12
|
-
|
|
13
|
-
text = "#A5D6FF"
|
|
14
|
-
"""The default text color used in the `xulbux` library."""
|
|
15
|
-
|
|
16
|
-
white = "#F1F2FF"
|
|
17
|
-
lightgray = "#B6B7C0"
|
|
18
|
-
gray = "#7B7C8D"
|
|
19
|
-
darkgray = "#67686C"
|
|
20
|
-
black = "#202125"
|
|
21
|
-
red = "#FF606A"
|
|
22
|
-
coral = "#FF7069"
|
|
23
|
-
orange = "#FF876A"
|
|
24
|
-
tangerine = "#FF9962"
|
|
25
|
-
gold = "#FFAF60"
|
|
26
|
-
yellow = "#FFD260"
|
|
27
|
-
lime = "#C9F16E"
|
|
28
|
-
green = "#7EE787"
|
|
29
|
-
neongreen = "#4CFF85"
|
|
30
|
-
teal = "#50EAAF"
|
|
31
|
-
cyan = "#3EDEE6"
|
|
32
|
-
ice = "#77DBEF"
|
|
33
|
-
lightblue = "#60AAFF"
|
|
34
|
-
blue = "#8085FF"
|
|
35
|
-
lavender = "#9B7DFF"
|
|
36
|
-
purple = "#AD68FF"
|
|
37
|
-
magenta = "#C860FF"
|
|
38
|
-
pink = "#F162EF"
|
|
39
|
-
rose = "#FF609F"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
class _AllTextCharacters:
|
|
43
|
-
pass
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
@dataclass
|
|
47
|
-
class CHARS:
|
|
48
|
-
"""Text character sets."""
|
|
49
|
-
|
|
50
|
-
all = _AllTextCharacters
|
|
51
|
-
"""Code to signal that all characters are allowed."""
|
|
52
|
-
|
|
53
|
-
digits: str = "0123456789"
|
|
54
|
-
"""Digits: `0`-`9`"""
|
|
55
|
-
float_digits: str = digits + "."
|
|
56
|
-
"""Digits: `0`-`9` with decimal point `.`"""
|
|
57
|
-
hex_digits: str = digits + "#abcdefABCDEF"
|
|
58
|
-
"""Digits: `0`-`9` Letters: `a`-`f` `A`-`F` and a hashtag `#`"""
|
|
59
|
-
|
|
60
|
-
lowercase: str = "abcdefghijklmnopqrstuvwxyz"
|
|
61
|
-
"""Lowercase letters `a`-`z`"""
|
|
62
|
-
lowercase_extended: str = lowercase + "äëïöüÿàèìòùáéíóúýâêîôûãñõåæç"
|
|
63
|
-
"""Lowercase letters `a`-`z` with all lowercase diacritic letters."""
|
|
64
|
-
uppercase: str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
65
|
-
"""Uppercase letters `A`-`Z`"""
|
|
66
|
-
uppercase_extended: str = uppercase + "ÄËÏÖÜÀÈÌÒÙÁÉÍÓÚÝÂÊÎÔÛÃÑÕÅÆÇß"
|
|
67
|
-
"""Uppercase letters `A`-`Z` with all uppercase diacritic letters."""
|
|
68
|
-
|
|
69
|
-
letters: str = lowercase + uppercase
|
|
70
|
-
"""Lowercase and uppercase letters `a`-`z` and `A`-`Z`"""
|
|
71
|
-
letters_extended: str = lowercase_extended + uppercase_extended
|
|
72
|
-
"""Lowercase and uppercase letters `a`-`z` `A`-`Z` and all diacritic letters."""
|
|
73
|
-
|
|
74
|
-
special_ascii: str = " !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
|
|
75
|
-
"""All ASCII special characters."""
|
|
76
|
-
special_ascii_extended: str = special_ascii + "ø£Ø×ƒªº¿®¬½¼¡«»░▒▓│┤©╣║╗╝¢¥┐└┴┬├─┼╚╔╩╦╠═╬¤ðÐı┘┌█▄¦▀µþÞ¯´≡±‗¾¶§÷¸°¨·¹³²■ "
|
|
77
|
-
"""All ASCII special characters with the extended ASCII special characters."""
|
|
78
|
-
standard_ascii: str = special_ascii + digits + letters
|
|
79
|
-
"""All standard ASCII characters."""
|
|
80
|
-
full_ascii: str = special_ascii_extended + digits + letters_extended
|
|
81
|
-
"""All characters in the ASCII table."""
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
class ANSI:
|
|
85
|
-
"""Constants and class-methods for use of ANSI escape codes."""
|
|
86
|
-
|
|
87
|
-
escaped_char: str = "\\x1b"
|
|
88
|
-
"""The printable ANSI escape character."""
|
|
89
|
-
CHAR = char = "\x1b"
|
|
90
|
-
"""The ANSI escape character."""
|
|
91
|
-
START = start = "["
|
|
92
|
-
"""The start of an ANSI escape sequence."""
|
|
93
|
-
SEP = sep = ";"
|
|
94
|
-
"""The separator between ANSI escape sequence parts."""
|
|
95
|
-
END = end = "m"
|
|
96
|
-
"""The end of an ANSI escape sequence."""
|
|
97
|
-
|
|
98
|
-
@classmethod
|
|
99
|
-
def seq(cls, parts: int = 1) -> FormattableString:
|
|
100
|
-
"""Generate an ANSI sequence with `parts` amount of placeholders."""
|
|
101
|
-
return cls.CHAR + cls.START + cls.SEP.join(["{}" for _ in range(parts)]) + cls.END
|
|
102
|
-
|
|
103
|
-
seq_color: FormattableString = CHAR + START + "38" + SEP + "2" + SEP + "{}" + SEP + "{}" + SEP + "{}" + END
|
|
104
|
-
"""The ANSI escape sequence for setting the text RGB color."""
|
|
105
|
-
seq_bg_color: FormattableString = CHAR + START + "48" + SEP + "2" + SEP + "{}" + SEP + "{}" + SEP + "{}" + END
|
|
106
|
-
"""The ANSI escape sequence for setting the background RGB color."""
|
|
107
|
-
|
|
108
|
-
color_map: tuple[str, ...] = (
|
|
109
|
-
########### DEFAULT CONSOLE COLOR NAMES ############
|
|
110
|
-
"black",
|
|
111
|
-
"red",
|
|
112
|
-
"green",
|
|
113
|
-
"yellow",
|
|
114
|
-
"blue",
|
|
115
|
-
"magenta",
|
|
116
|
-
"cyan",
|
|
117
|
-
"white",
|
|
118
|
-
)
|
|
119
|
-
"""The console default color names."""
|
|
120
|
-
|
|
121
|
-
codes_map: dict[str | tuple[str, ...], int] = {
|
|
122
|
-
################# SPECIFIC RESETS ##################
|
|
123
|
-
"_": 0,
|
|
124
|
-
("_bold", "_b"): 22,
|
|
125
|
-
("_dim", "_d"): 22,
|
|
126
|
-
("_italic", "_i"): 23,
|
|
127
|
-
("_underline", "_u"): 24,
|
|
128
|
-
("_double-underline", "_du"): 24,
|
|
129
|
-
("_inverse", "_invert", "_in"): 27,
|
|
130
|
-
("_hidden", "_hide", "_h"): 28,
|
|
131
|
-
("_strikethrough", "_s"): 29,
|
|
132
|
-
("_color", "_c"): 39,
|
|
133
|
-
("_background", "_bg"): 49,
|
|
134
|
-
################### TEXT STYLES ####################
|
|
135
|
-
("bold", "b"): 1,
|
|
136
|
-
("dim", "d"): 2,
|
|
137
|
-
("italic", "i"): 3,
|
|
138
|
-
("underline", "u"): 4,
|
|
139
|
-
("inverse", "invert", "in"): 7,
|
|
140
|
-
("hidden", "hide", "h"): 8,
|
|
141
|
-
("strikethrough", "s"): 9,
|
|
142
|
-
("double-underline", "du"): 21,
|
|
143
|
-
################## DEFAULT COLORS ##################
|
|
144
|
-
"black": 30,
|
|
145
|
-
"red": 31,
|
|
146
|
-
"green": 32,
|
|
147
|
-
"yellow": 33,
|
|
148
|
-
"blue": 34,
|
|
149
|
-
"magenta": 35,
|
|
150
|
-
"cyan": 36,
|
|
151
|
-
"white": 37,
|
|
152
|
-
############## BRIGHT DEFAULT COLORS ###############
|
|
153
|
-
"br:black": 90,
|
|
154
|
-
"br:red": 91,
|
|
155
|
-
"br:green": 92,
|
|
156
|
-
"br:yellow": 93,
|
|
157
|
-
"br:blue": 94,
|
|
158
|
-
"br:magenta": 95,
|
|
159
|
-
"br:cyan": 96,
|
|
160
|
-
"br:white": 97,
|
|
161
|
-
############ DEFAULT BACKGROUND COLORS #############
|
|
162
|
-
"bg:black": 40,
|
|
163
|
-
"bg:red": 41,
|
|
164
|
-
"bg:green": 42,
|
|
165
|
-
"bg:yellow": 43,
|
|
166
|
-
"bg:blue": 44,
|
|
167
|
-
"bg:magenta": 45,
|
|
168
|
-
"bg:cyan": 46,
|
|
169
|
-
"bg:white": 47,
|
|
170
|
-
######### BRIGHT DEFAULT BACKGROUND COLORS #########
|
|
171
|
-
"bg:br:black": 100,
|
|
172
|
-
"bg:br:red": 101,
|
|
173
|
-
"bg:br:green": 102,
|
|
174
|
-
"bg:br:yellow": 103,
|
|
175
|
-
"bg:br:blue": 104,
|
|
176
|
-
"bg:br:magenta": 105,
|
|
177
|
-
"bg:br:cyan": 106,
|
|
178
|
-
"bg:br:white": 107,
|
|
179
|
-
}
|
|
180
|
-
"""All custom format keys and their corresponding ANSI format number codes."""
|
xulbux-1.7.2.dist-info/METADATA
DELETED
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: xulbux
|
|
3
|
-
Version: 1.7.2
|
|
4
|
-
Summary: A Python library which includes lots of helpful classes, types and functions aiming to make common programming tasks simpler.
|
|
5
|
-
Author-email: XulbuX <xulbux.real@gmail.com>
|
|
6
|
-
License-Expression: MIT
|
|
7
|
-
Project-URL: Bug Reports, https://github.com/XulbuX/PythonLibraryXulbuX/issues
|
|
8
|
-
Project-URL: Changelog, https://github.com/XulbuX/PythonLibraryXulbuX/blob/main/CHANGELOG.md
|
|
9
|
-
Project-URL: Documentation, https://github.com/XulbuX/PythonLibraryXulbuX/wiki
|
|
10
|
-
Project-URL: Homepage, https://github.com/XulbuX/PythonLibraryXulbuX
|
|
11
|
-
Project-URL: License, https://github.com/XulbuX/PythonLibraryXulbuX/blob/main/LICENSE
|
|
12
|
-
Project-URL: Source Code, https://github.com/XulbuX/PythonLibraryXulbuX/tree/main/src
|
|
13
|
-
Keywords: args,arguments,attributes,classes,cmd,client,code,codes,color,commands,console,consts,constants,convert,conversion,data,debug,easier,env,environment,error,file,format,formatting,functions,helper,hex,hexa,hsl,hsla,info,input,json,library,log,logging,methods,nice,operations,path,presets,pretty,printing,properties,python,re,regex,rgb,rgba,string,structures,system,tools,types,utility,warn,warning,xulbux
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
-
Classifier: Operating System :: OS Independent
|
|
20
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
-
Requires-Python: >=3.10.0
|
|
22
|
-
Description-Content-Type: text/markdown
|
|
23
|
-
License-File: LICENSE
|
|
24
|
-
Requires-Dist: keyboard>=0.13.5
|
|
25
|
-
Requires-Dist: mouse>=0.7.1
|
|
26
|
-
Requires-Dist: prompt_toolkit>=3.0.41
|
|
27
|
-
Requires-Dist: pyperclip>=1.9.0
|
|
28
|
-
Requires-Dist: regex>=2023.10.3
|
|
29
|
-
Provides-Extra: dev
|
|
30
|
-
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
31
|
-
Requires-Dist: black>=23.7.0; extra == "dev"
|
|
32
|
-
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
33
|
-
Requires-Dist: flake8>=6.1.0; extra == "dev"
|
|
34
|
-
Requires-Dist: flake8-pyproject>=1.2.3; extra == "dev"
|
|
35
|
-
Dynamic: license-file
|
|
36
|
-
|
|
37
|
-
# **$\Huge\textsf{XulbuX}$**
|
|
38
|
-
|
|
39
|
-
**XulbuX** is library that contains many useful classes, types, and functions,
|
|
40
|
-
ranging from console logging and working with colors to file management and system operations.
|
|
41
|
-
The library is designed to simplify common programming tasks and improve code readability through its collection of tools.
|
|
42
|
-
|
|
43
|
-
For precise information about the library, see the library's [**wiki page**](https://github.com/XulbuX/PythonLibraryXulbuX/wiki).<br>
|
|
44
|
-
For the libraries latest changes and updates, see the [**change log**](https://github.com/XulbuX/PythonLibraryXulbuX/blob/main/CHANGELOG.md).
|
|
45
|
-
|
|
46
|
-
<br>
|
|
47
|
-
|
|
48
|
-
## Installation
|
|
49
|
-
|
|
50
|
-
Run the following commands in a console with administrator privileges, so the actions take effect for all users.
|
|
51
|
-
|
|
52
|
-
Install the library and all its dependencies with the command:
|
|
53
|
-
```console
|
|
54
|
-
pip install xulbux
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Upgrade the library and all its dependencies to their latest available version with the command:
|
|
58
|
-
```console
|
|
59
|
-
pip install --upgrade xulbux
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
<br>
|
|
63
|
-
|
|
64
|
-
## Usage
|
|
65
|
-
|
|
66
|
-
Import the full library under the alias `xx`, so its constants, classes, methods and types are accessible with `xx.CONSTANT.value`, `xx.Class.method()`, `xx.type()`:
|
|
67
|
-
```python
|
|
68
|
-
import xulbux as xx
|
|
69
|
-
```
|
|
70
|
-
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:
|
|
71
|
-
```python
|
|
72
|
-
# CONSTANTS
|
|
73
|
-
from xulbux import COLOR, CHARS, ANSI
|
|
74
|
-
# Classes
|
|
75
|
-
from xulbux import Code, Color, Console, ...
|
|
76
|
-
# types
|
|
77
|
-
from xulbux import rgba, hsla, hexa
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
<br>
|
|
81
|
-
|
|
82
|
-
## Modules
|
|
83
|
-
|
|
84
|
-
| Module | Short Description |
|
|
85
|
-
| :--------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------- |
|
|
86
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_code) | advanced code-string operations (*changing the indent, finding function calls, ...*) |
|
|
87
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_color) | everything around colors (*converting, blending, searching colors in strings, ...*) |
|
|
88
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_console) | advanced actions related to the console (*pretty logging, advanced inputs, ...*) |
|
|
89
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_data) | advanced operations with data structures (*compare, generate path ID's, pretty print/format, ...*) |
|
|
90
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_env_path) | getting and editing the PATH variable (*get paths, check for paths, add paths, ...*) |
|
|
91
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_file) | advanced working with files (*create files, rename file-extensions, ...*) |
|
|
92
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_format_codes) | easy pretty printing with custom format codes (*print, inputs, custom format codes to ANSI, ...*) |
|
|
93
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_json) | advanced working with json files (*read, create, update, ...*) |
|
|
94
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_path) | advanced path operations (*get paths, smart-extend relative paths, delete paths, ...*) |
|
|
95
|
-
|  | generated regex pattern-templates (*match bracket- and quote pairs, match colors, ...*) |
|
|
96
|
-
| [](https://github.com/XulbuX/PythonLibraryXulbuX/wiki/xx_string) | helpful actions when working with strings. (*normalize, escape, decompose, ...*) |
|
|
97
|
-
|  | advanced system actions (*restart with message, check installed Python libs, ...*) |
|
|
98
|
-
|
|
99
|
-
<br>
|
|
100
|
-
|
|
101
|
-
## Example Usage
|
|
102
|
-
|
|
103
|
-
This is what it could look like using this library for a simple but very nice looking color converter:
|
|
104
|
-
```python
|
|
105
|
-
from xulbux import COLOR # CONSTANTS
|
|
106
|
-
from xulbux import FormatCodes, Console # Classes
|
|
107
|
-
from xulbux import hexa # types
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
def main() -> None:
|
|
111
|
-
|
|
112
|
-
# LET THE USER ENTER A HEXA COLOR IN ANY HEXA FORMAT
|
|
113
|
-
input_clr = FormatCodes.input(
|
|
114
|
-
"\n[b](Enter a HEXA color in any format) [dim](>) "
|
|
115
|
-
)
|
|
116
|
-
|
|
117
|
-
# ANNOUNCE INDEXING THE INPUT COLOR
|
|
118
|
-
Console.log(
|
|
119
|
-
"INDEX",
|
|
120
|
-
"Indexing the input HEXA color...",
|
|
121
|
-
start="\n",
|
|
122
|
-
title_bg_color=COLOR.blue,
|
|
123
|
-
)
|
|
124
|
-
|
|
125
|
-
try:
|
|
126
|
-
# TRY TO CONVERT THE INPUT COLOR INTO A hexa() COLOR
|
|
127
|
-
hexa_color = hexa(input_clr)
|
|
128
|
-
|
|
129
|
-
except ValueError:
|
|
130
|
-
# ANNOUNCE THE ERROR AND EXIT THE PROGRAM
|
|
131
|
-
Console.fail(
|
|
132
|
-
"The input HEXA color is invalid.",
|
|
133
|
-
end="\n\n",
|
|
134
|
-
exit=True,
|
|
135
|
-
)
|
|
136
|
-
|
|
137
|
-
# ANNOUNCE STARTING THE CONVERSION
|
|
138
|
-
Console.log(
|
|
139
|
-
"CONVERT",
|
|
140
|
-
"Converting the HEXA color into different types...",
|
|
141
|
-
title_bg_color=COLOR.tangerine,
|
|
142
|
-
)
|
|
143
|
-
|
|
144
|
-
# CONVERT THE HEXA COLOR INTO THE TWO OTHER COLOR TYPES
|
|
145
|
-
rgba_color = hexa_color.to_rgba()
|
|
146
|
-
hsla_color = hexa_color.to_hsla()
|
|
147
|
-
|
|
148
|
-
# ANNOUNCE THE SUCCESSFUL CONVERSION
|
|
149
|
-
Console.done(
|
|
150
|
-
"Successfully converted color into different types.",
|
|
151
|
-
end="\n\n",
|
|
152
|
-
)
|
|
153
|
-
|
|
154
|
-
# PRETTY PRINT THE COLOR IN DIFFERENT TYPES
|
|
155
|
-
Console.log_box_bordered(
|
|
156
|
-
f"[b](HEXA:) [i|white]({hexa_color})",
|
|
157
|
-
f"[b](RGBA:) [i|white]({rgba_color})",
|
|
158
|
-
f"[b](HSLA:) [i|white]({hsla_color})",
|
|
159
|
-
)
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
if __name__ == "__main__":
|
|
163
|
-
main()
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
<br>
|
|
167
|
-
<br>
|
|
168
|
-
|
|
169
|
-
--------------------------------------------------------------
|
|
170
|
-
[View this library on **PyPI**](https://pypi.org/project/XulbuX/)
|
xulbux-1.7.2.dist-info/RECORD
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
xulbux/__init__.py,sha256=vd8y5L0AwqnxqXm_IAJ5grbfm8ZkcSHJx36n1KUQTlc,815
|
|
2
|
-
xulbux/_cli_.py,sha256=J4vfJHLJEYxCZzA_VJUB46w2WGShfdYFoetsLG5PfKo,3428
|
|
3
|
-
xulbux/_consts_.py,sha256=4CLJE-YH3si2YQ-IHcjsT5PW0D7vGvm8ZH13rUoG5cE,6166
|
|
4
|
-
xulbux/xx_code.py,sha256=b8MJId-BmZOsBH38z-h055op7qIICdsTT3rFJ7SWkiE,6111
|
|
5
|
-
xulbux/xx_color.py,sha256=Thj7fFTc8x-VmYyULI3HQW0uCk9dIihwrGUwuXGn83s,49744
|
|
6
|
-
xulbux/xx_console.py,sha256=c61EXVGQo_OL_MUWb4oXbIr6EKesm1v-FwxBIe47ZTg,34866
|
|
7
|
-
xulbux/xx_data.py,sha256=nEfVwK6-ILaL3K-bLezKpG1G7117CY5ZgC3BGwANrUE,30886
|
|
8
|
-
xulbux/xx_env_path.py,sha256=x56mKK4lSvU5yMCAs8k0RVIqXWUJcpcHYz5HoZ_RklM,4160
|
|
9
|
-
xulbux/xx_file.py,sha256=KerXOvKS93zIoAt36YTYuZboSmxVFVf2WcOrDcdwXfE,2627
|
|
10
|
-
xulbux/xx_format_codes.py,sha256=-tSsgy1tRelmU5x5ZS7ujaiXntyRqk1sm759tyvVIyU,24698
|
|
11
|
-
xulbux/xx_json.py,sha256=V7vdfpvSe9wpktR_c8zG_Meix7x9IRmn66k5nB3HUyo,7457
|
|
12
|
-
xulbux/xx_path.py,sha256=lLAEVZrW0TAwCewlONFVQcQ_8tVn9LTJZVOZpeGvE5s,7673
|
|
13
|
-
xulbux/xx_regex.py,sha256=_BtMHRDNcD9zF4SL87dQuUVZcYGfZx9H5YNSDiEtzm8,8059
|
|
14
|
-
xulbux/xx_string.py,sha256=QaTo0TQ9m_2USNgQNaVw5ivQt-A1E-e5x8OpIB3xIlY,5561
|
|
15
|
-
xulbux/xx_system.py,sha256=Tsx4wgztUg46KloqcGeiFkarDoM3EgJLXw3XNxgHBmU,6460
|
|
16
|
-
xulbux-1.7.2.dist-info/licenses/LICENSE,sha256=6NflEcvzFEe8_JFVNCPVwZBwBhlLLd4vqQi8WiX_Xk4,1084
|
|
17
|
-
xulbux-1.7.2.dist-info/METADATA,sha256=vlIkVkj97ZLjiFajkGrSZ5O0GDrzuIunJ1E1iqY-QTA,9209
|
|
18
|
-
xulbux-1.7.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
xulbux-1.7.2.dist-info/entry_points.txt,sha256=a3womfLIMZKnOFiyy-xnVb4g2qkZsHR5FbKKkljcGns,94
|
|
20
|
-
xulbux-1.7.2.dist-info/top_level.txt,sha256=FkK4EZajwfP36fnlrPaR98OrEvZpvdEOdW1T5zTj6og,7
|
|
21
|
-
xulbux-1.7.2.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024 XulbuX
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
/xulbux/{xx_path.py → path.py}
RENAMED
|
File without changes
|
/xulbux/{xx_regex.py → regex.py}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|