abstract-utilities 0.2.2.446__py3-none-any.whl → 0.2.2.448__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 abstract-utilities might be problematic. Click here for more details.

@@ -122,3 +122,4 @@ from .env_utils import *
122
122
  from .path_utils import *
123
123
  from .file_utils import *
124
124
  from .file_utils import call_for_all_tabs
125
+ from .string_utils import *
@@ -0,0 +1,12 @@
1
+ def get_lines(string,strip=True):
2
+ lines = string.split('\n')
3
+ if strip:
4
+ lines = [line for line in lines if line]
5
+ return lines
6
+ def get_alpha():
7
+ return 'abcdefghijklmnopqrstuvwxyz'
8
+ def is_alpha(char,case_sensative=False):
9
+ alphas = get_alpha()
10
+ if not case_sensative:
11
+ alphas+=alphas.upper()
12
+ return char in alphas
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstract_utilities
3
- Version: 0.2.2.446
3
+ Version: 0.2.2.448
4
4
  Summary: abstract_utilities is a collection of utility modules providing a variety of functions to aid in tasks such as data comparison, list manipulation, JSON handling, string manipulation, mathematical computations, and time operations.
5
5
  Home-page: https://github.com/AbstractEndeavors/abstract_utilities
6
6
  Author: putkoff
@@ -1,4 +1,4 @@
1
- abstract_utilities/__init__.py,sha256=_Pp9ntjPTkjj6dlRtHGZvrscn0E-FrxgVFvlK3ZQwUw,5170
1
+ abstract_utilities/__init__.py,sha256=aLWUTfocuGa7qoz3Czzvuz0xUNoy7DojHhp2MN5vyPk,5198
2
2
  abstract_utilities/abstract_classes.py,sha256=A6-FNDQb2P_jcyt01Kc5SuY2QawLVKNjQ-rDGfsn4rA,2461
3
3
  abstract_utilities/class_utils.py,sha256=YMQgeTHSMo2C13G0JRgQIgbx131jb-PHdDrIqt71FsE,13664
4
4
  abstract_utilities/collator_utils.py,sha256=9exNoZAr9rABGYTwZOn7hdLbpnMtRd2AgfU7yjZrXGw,2348
@@ -17,6 +17,7 @@ abstract_utilities/path_utils.py,sha256=X_U9cPBbNu5Wi0F3hQE0gXQX1gfhzxhxALbairTE
17
17
  abstract_utilities/read_write_utils.py,sha256=oPmY0UZSuEkV_ox8inZiSG_adYGm6J9n6-lgFNytdi0,4470
18
18
  abstract_utilities/safe_utils.py,sha256=_uoZny6dJjopVakOiaf0UIZcvRRXMh51FpfDUooe0xY,3733
19
19
  abstract_utilities/string_clean.py,sha256=-gY9i2yqjX5UClvSaKsSrzA4GjR7eaNI3GnFjZpt2bo,5923
20
+ abstract_utilities/string_utils.py,sha256=02xdIEDySWEexrtY3skBYOdeDmr3XgE5j1nqAeAv7w8,352
20
21
  abstract_utilities/tetsts.py,sha256=PrejTUew5dAAqNb4erMJwfdSHxDyuuHGWY2fMlWk5hk,21
21
22
  abstract_utilities/thread_utils.py,sha256=LhE1ylSuOKkkMErBf6SjZprjO_vfh3IKfvNKJQiCxho,5460
22
23
  abstract_utilities/time_utils.py,sha256=yikMjn7i-OBKfmOujfNtDz4R0VTMgi3dfQNrCIZUbQU,13052
@@ -76,7 +77,7 @@ abstract_utilities/ssh_utils/classes.py,sha256=3Q9BfLpyagNFYyiF4bt-5UCezeUJv9NK9
76
77
  abstract_utilities/ssh_utils/imports.py,sha256=oX8WAv-pkhizzko_h3fIUp9Vhsse4nR7RN2vwONxIx0,317
77
78
  abstract_utilities/ssh_utils/pexpect_utils.py,sha256=JBdOIXBTXAqE5TrsFjmPWJgwSaWyRJN8rbJ6y3_zKPY,10556
78
79
  abstract_utilities/ssh_utils/utils.py,sha256=smUWAx3nW1h0etTndJ_te9bkUX5YzQ8kYd9_gD1TXLk,4882
79
- abstract_utilities-0.2.2.446.dist-info/METADATA,sha256=3cDC_9ctuNbQXh49652gIZEj93ohY1kBtJhngT2d0XY,28108
80
- abstract_utilities-0.2.2.446.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
81
- abstract_utilities-0.2.2.446.dist-info/top_level.txt,sha256=BF0GZ0xVFfN1K-hFIWPO3viNsOs1sSF86n1vHBg39FM,19
82
- abstract_utilities-0.2.2.446.dist-info/RECORD,,
80
+ abstract_utilities-0.2.2.448.dist-info/METADATA,sha256=6wUhVOtgJAuZaVwbOYO4pk5KFR0__I2q2qDfGt0QU50,28108
81
+ abstract_utilities-0.2.2.448.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
+ abstract_utilities-0.2.2.448.dist-info/top_level.txt,sha256=BF0GZ0xVFfN1K-hFIWPO3viNsOs1sSF86n1vHBg39FM,19
83
+ abstract_utilities-0.2.2.448.dist-info/RECORD,,