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/__init__.py
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.8.0"
|
|
2
|
+
|
|
2
3
|
__author__ = "XulbuX"
|
|
3
4
|
__email__ = "xulbux.real@gmail.com"
|
|
4
5
|
__license__ = "MIT"
|
|
5
6
|
__copyright__ = "Copyright (c) 2024 XulbuX"
|
|
6
7
|
__url__ = "https://github.com/XulbuX/PythonLibraryXulbuX"
|
|
7
|
-
__description__ = "A library which includes
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"xx_path", "xx_regex", "xx_string", "xx_system"
|
|
11
|
-
]
|
|
8
|
+
__description__ = "A Python library which includes lots of helpful classes, types, and functions aiming to make common programming tasks simpler."
|
|
9
|
+
|
|
10
|
+
__all__ = ["Code", "Color", "Console", "Data", "EnvPath", "File", "FormatCodes", "Json", "Path", "Regex", "String", "System"]
|
|
12
11
|
|
|
13
|
-
from .
|
|
14
|
-
from .
|
|
15
|
-
from .
|
|
16
|
-
from .
|
|
17
|
-
from .
|
|
18
|
-
from .
|
|
19
|
-
from .
|
|
20
|
-
from .
|
|
21
|
-
from .
|
|
22
|
-
from .
|
|
23
|
-
from .
|
|
24
|
-
from .
|
|
25
|
-
from .xx_system import *
|
|
12
|
+
from .code import Code
|
|
13
|
+
from .color import Color
|
|
14
|
+
from .console import Console
|
|
15
|
+
from .data import Data
|
|
16
|
+
from .env_path import EnvPath
|
|
17
|
+
from .file import File
|
|
18
|
+
from .format_codes import FormatCodes
|
|
19
|
+
from .json import Json
|
|
20
|
+
from .path import Path
|
|
21
|
+
from .regex import Regex
|
|
22
|
+
from .string import String
|
|
23
|
+
from .system import System
|
xulbux/{xx_code.py → code.py}
RENAMED
xulbux/{xx_color.py → color.py}
RENAMED
|
@@ -31,7 +31,7 @@ The `Color` class, which contains all sorts of different color-related methods:
|
|
|
31
31
|
- saturation
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
-
from .
|
|
34
|
+
from .regex import Regex
|
|
35
35
|
|
|
36
36
|
from typing import Annotated, TypeAlias, Iterator, Optional, Literal, Union, Any, cast
|
|
37
37
|
import re as _re
|