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 CHANGED
@@ -1,25 +1,23 @@
1
- __version__ = "1.7.2"
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 a lot of really helpful functions."
8
- __all__ = [
9
- "_consts_", "xx_code", "xx_color", "xx_console", "xx_data", "xx_env_path", "xx_file", "xx_format_codes", "xx_json",
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 ._consts_ import *
14
- from .xx_code import *
15
- from .xx_color import *
16
- from .xx_console import *
17
- from .xx_data import *
18
- from .xx_env_path import *
19
- from .xx_file import *
20
- from .xx_format_codes import *
21
- from .xx_json import *
22
- from .xx_path import *
23
- from .xx_regex import *
24
- from .xx_string import *
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
@@ -1,6 +1,6 @@
1
- from .xx_string import String
2
- from .xx_regex import Regex
3
- from .xx_data import Data
1
+ from .string import String
2
+ from .regex import Regex
3
+ from .data import Data
4
4
 
5
5
  import regex as _rx
6
6
 
@@ -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 .xx_regex import Regex
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