ae-base 0.3.68__tar.gz → 0.3.69__tar.gz
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.
- {ae_base-0.3.68 → ae_base-0.3.69}/LICENSE.md +1 -1
- {ae_base-0.3.68/ae_base.egg-info → ae_base-0.3.69}/PKG-INFO +4 -4
- {ae_base-0.3.68 → ae_base-0.3.69}/README.md +3 -3
- {ae_base-0.3.68 → ae_base-0.3.69}/ae/base.py +9 -9
- {ae_base-0.3.68 → ae_base-0.3.69/ae_base.egg-info}/PKG-INFO +4 -4
- {ae_base-0.3.68 → ae_base-0.3.69}/pyproject.toml +1 -1
- {ae_base-0.3.68 → ae_base-0.3.69}/setup.py +5 -5
- {ae_base-0.3.68 → ae_base-0.3.69}/ae_base.egg-info/SOURCES.txt +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/ae_base.egg-info/dependency_links.txt +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/ae_base.egg-info/requires.txt +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/ae_base.egg-info/top_level.txt +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/ae_base.egg-info/zip-safe +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/setup.cfg +0 -0
- {ae_base-0.3.68 → ae_base-0.3.69}/tests/test_base.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_base
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.69
|
|
4
4
|
Summary: ae namespace module portion base: basic constants, helper functions and context managers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_base
|
|
6
6
|
Author: AndiEcker
|
|
@@ -65,13 +65,13 @@ Dynamic: summary
|
|
|
65
65
|
|
|
66
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
|
|
67
67
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
|
|
68
|
-
# base 0.3.
|
|
68
|
+
# base 0.3.69
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_base)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_base/-/tree/release0.3.68)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-base/#history)
|
|
77
77
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
|
|
2
2
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
|
|
3
|
-
# base 0.3.
|
|
3
|
+
# base 0.3.69
|
|
4
4
|
|
|
5
5
|
[](
|
|
6
6
|
https://gitlab.com/ae-group/ae_base)
|
|
7
7
|
[](
|
|
9
|
+
https://gitlab.com/ae-group/ae_base/-/tree/release0.3.68)
|
|
10
10
|
[](
|
|
11
11
|
https://pypi.org/project/ae-base/#history)
|
|
12
12
|
|
|
@@ -42,7 +42,7 @@ inspect the operating system and manage environment variables.
|
|
|
42
42
|
:func:`~ae.core.start_app_service` and :func:`~ae.core.request_app_permissions`.
|
|
43
43
|
|
|
44
44
|
OS information
|
|
45
|
-
|
|
45
|
+
^^^^^^^^^^^^^^
|
|
46
46
|
|
|
47
47
|
* :data:`os_platform`: a string identifying the operating system (e.g., 'linux', 'win32', 'android', 'ios').
|
|
48
48
|
* :data:`os_device_id`: a string with the ID/name of the device.
|
|
@@ -53,7 +53,7 @@ OS information
|
|
|
53
53
|
* :func:`sys_env_text`: compiles a formatted text block with system environment information, useful for logging.
|
|
54
54
|
|
|
55
55
|
environment variables & `.env` files
|
|
56
|
-
|
|
56
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
57
57
|
|
|
58
58
|
* :func:`env_str`: retrieves the string value of an OS environment variable, with an option to automatically convert the
|
|
59
59
|
variable name to the conventional format.
|
|
@@ -124,18 +124,18 @@ general utilities & helpers
|
|
|
124
124
|
a collection of miscellaneous mathematical, date/time, and other standalone helper functions.
|
|
125
125
|
|
|
126
126
|
mathematical
|
|
127
|
-
|
|
127
|
+
^^^^^^^^^^^^
|
|
128
128
|
|
|
129
129
|
* :func:`sign`: returns the sign of a number (-1 for negative, 0 for zero, 1 for positive).
|
|
130
130
|
* :func:`round_traditional`: rounds a float value using traditional rounding rules (e.g., `0.5` rounds up).
|
|
131
131
|
|
|
132
132
|
date & time
|
|
133
|
-
|
|
133
|
+
^^^^^^^^^^^
|
|
134
134
|
* :func:`utc_datetime`: Returns the current date and time as a timezone-naive `datetime` object in UTC.
|
|
135
135
|
* :func:`now_str`: creates a compact, sortable timestamp string from the current UTC time.
|
|
136
136
|
|
|
137
137
|
miscellaneous
|
|
138
|
-
|
|
138
|
+
^^^^^^^^^^^^^
|
|
139
139
|
* :func:`dummy_function`: a null function that accepts any arguments and returns `None`.
|
|
140
140
|
|
|
141
141
|
|
|
@@ -158,7 +158,7 @@ base constants
|
|
|
158
158
|
predefined constants for project structure, file conventions, and default settings.
|
|
159
159
|
|
|
160
160
|
project & file structure
|
|
161
|
-
|
|
161
|
+
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
162
162
|
|
|
163
163
|
* :data:`DOCS_FOLDER`: default name for a project's documentation folder ('docs').
|
|
164
164
|
* :data:`TESTS_FOLDER`: default name for a project's tests folder ('tests').
|
|
@@ -176,7 +176,7 @@ project & file structure
|
|
|
176
176
|
:mod:`ae.updater` and :mod:`aedev.project_manager`)
|
|
177
177
|
|
|
178
178
|
formats & default settings
|
|
179
|
-
|
|
179
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
180
180
|
|
|
181
181
|
* :data:`DATE_ISO`: ISO format string for dates ("%Y-%m-%d").
|
|
182
182
|
* :data:`DATE_TIME_ISO`: ISO format string for :mod:`datetime.datetime` dates ("%Y-%m-%d %H:%M:%S.%f").
|
|
@@ -200,7 +200,7 @@ simplify file system interactions with wrappers and context managers.
|
|
|
200
200
|
* :func:`in_wd`: a context manager that temporarily switches the current working directory.
|
|
201
201
|
|
|
202
202
|
os.path shortcuts
|
|
203
|
-
|
|
203
|
+
^^^^^^^^^^^^^^^^^
|
|
204
204
|
|
|
205
205
|
the following are direct references to functions in the :mod:`os.path` module for convenient and quicker access:
|
|
206
206
|
|
|
@@ -245,7 +245,7 @@ from types import ModuleType
|
|
|
245
245
|
from typing import Any, Callable, Generator, Iterable, MutableMapping, Optional, Union, cast
|
|
246
246
|
|
|
247
247
|
|
|
248
|
-
__version__ = '0.3.
|
|
248
|
+
__version__ = '0.3.69'
|
|
249
249
|
|
|
250
250
|
|
|
251
251
|
os_path_abspath = os.path.abspath
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_base
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.69
|
|
4
4
|
Summary: ae namespace module portion base: basic constants, helper functions and context managers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_base
|
|
6
6
|
Author: AndiEcker
|
|
@@ -65,13 +65,13 @@ Dynamic: summary
|
|
|
65
65
|
|
|
66
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
|
|
67
67
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
|
|
68
|
-
# base 0.3.
|
|
68
|
+
# base 0.3.69
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_base)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_base/-/tree/release0.3.68)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-base/#history)
|
|
77
77
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.
|
|
1
|
+
# THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.56
|
|
2
2
|
""" setup of ae namespace module portion base: basic constants, helper functions and context managers. """
|
|
3
3
|
# noinspection PyUnresolvedReferences
|
|
4
4
|
import sys
|
|
@@ -25,13 +25,13 @@ setup_kwargs = {
|
|
|
25
25
|
'license': 'GPL-3.0-or-later',
|
|
26
26
|
'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->\n'
|
|
27
27
|
'<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->\n'
|
|
28
|
-
'# base 0.3.
|
|
28
|
+
'# base 0.3.69\n'
|
|
29
29
|
'\n'
|
|
30
30
|
'[](\n'
|
|
31
31
|
' https://gitlab.com/ae-group/ae_base)\n'
|
|
32
32
|
'[](\n'
|
|
34
|
+
' https://gitlab.com/ae-group/ae_base/-/tree/release0.3.68)\n'
|
|
35
35
|
'[](\n'
|
|
36
36
|
' https://pypi.org/project/ae-base/#history)\n'
|
|
37
37
|
'\n'
|
|
@@ -108,7 +108,7 @@ setup_kwargs = {
|
|
|
108
108
|
'Source': 'https://ae.readthedocs.io/en/latest/_modules/ae/base.html'},
|
|
109
109
|
'python_requires': '>=3.9',
|
|
110
110
|
'url': 'https://gitlab.com/ae-group/ae_base',
|
|
111
|
-
'version': '0.3.
|
|
111
|
+
'version': '0.3.69',
|
|
112
112
|
'zip_safe': True,
|
|
113
113
|
}
|
|
114
114
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|