ae-base 0.3.55__py3-none-any.whl → 0.3.56__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.
ae/base.py CHANGED
@@ -32,6 +32,9 @@ sortable and compact string from a timestamp.
32
32
  base helper functions
33
33
  ---------------------
34
34
 
35
+ most programming languages providing a function to determine the sign of a number. the :func:`sign` functino,
36
+ provided by this module/portion is filling this gap in Python.
37
+
35
38
  in order to convert and transfer Unicode character outside the 7-bit ASCII range via internet transport protocols,
36
39
  like http, use the helper functions :func:`ascii_str` and :func:`str_ascii`.
37
40
 
@@ -168,7 +171,7 @@ from types import ModuleType
168
171
  from typing import Any, Callable, Generator, Iterable, Optional, Union, cast
169
172
 
170
173
 
171
- __version__ = '0.3.55'
174
+ __version__ = '0.3.56'
172
175
 
173
176
 
174
177
  os_path_abspath = os.path.abspath
@@ -1018,6 +1021,15 @@ def round_traditional(num_value: float, num_digits: int = 0) -> float:
1018
1021
  return round(num_value + 10 ** (-len(str(num_value)) - 1), num_digits)
1019
1022
 
1020
1023
 
1024
+ def sign(number: float) -> int:
1025
+ """ return ths sign (-1, 0, 1) of a number.
1026
+
1027
+ :param number: any number of type float or int.
1028
+ :return: -1 if the number is negative, 0 if it is zero, or 1 if it is positive.
1029
+ """
1030
+ return (number > 0) - (number < 0)
1031
+
1032
+
1021
1033
  def snake_to_camel(name: str, back_convertible: bool = False) -> str:
1022
1034
  """ convert name from snake_case to CamelCase.
1023
1035
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_base
3
- Version: 0.3.55
3
+ Version: 0.3.56
4
4
  Summary: ae namespace module portion base: basic constants, helper functions and context manager
5
5
  Home-page: https://gitlab.com/ae-group/ae_base
6
6
  Author: AndiEcker
@@ -69,17 +69,17 @@ Dynamic: summary
69
69
 
70
70
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae V0.3.95 -->
71
71
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
72
- # base 0.3.55
72
+ # base 0.3.56
73
73
 
74
74
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_base/develop?logo=python)](
75
75
  https://gitlab.com/ae-group/ae_base)
76
76
  [![LatestPyPIrelease](
77
- https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.54?logo=python)](
78
- https://gitlab.com/ae-group/ae_base/-/tree/release0.3.54)
77
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.55?logo=python)](
78
+ https://gitlab.com/ae-group/ae_base/-/tree/release0.3.55)
79
79
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_base)](
80
80
  https://pypi.org/project/ae-base/#history)
81
81
 
82
- >ae_base module 0.3.55.
82
+ >ae_base module 0.3.56.
83
83
 
84
84
  [![Coverage](https://ae-group.gitlab.io/ae_base/coverage.svg)](
85
85
  https://ae-group.gitlab.io/ae_base/coverage/index.html)
@@ -0,0 +1,7 @@
1
+ ae/base.py,sha256=HiiR5KcrcvJZ8gE_ngjYdqfd9gF5YrBP02uHUkTT954,67095
2
+ ae_base-0.3.56.dist-info/licenses/LICENSE.md,sha256=uoIIfORuk4V8ZeNh6SN0EUhiU79RC-indIMFqePKVhY,35002
3
+ ae_base-0.3.56.dist-info/METADATA,sha256=KvkrPODF2OUIAIhmGwPciNfAv1WkJQWmWxFLWgvpxQ4,5658
4
+ ae_base-0.3.56.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
5
+ ae_base-0.3.56.dist-info/top_level.txt,sha256=vUdgAslSmhZLXWU48fm8AG2BjVnkOWLco8rzuW-5zY0,3
6
+ ae_base-0.3.56.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
+ ae_base-0.3.56.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,7 +0,0 @@
1
- ae/base.py,sha256=6ZmvIe_n1v7aLwClLsTUYgEzA38iyZ3azQrqg5x_qPg,66623
2
- ae_base-0.3.55.dist-info/licenses/LICENSE.md,sha256=uoIIfORuk4V8ZeNh6SN0EUhiU79RC-indIMFqePKVhY,35002
3
- ae_base-0.3.55.dist-info/METADATA,sha256=6XHzLSdO79byeul7zjCJiP5EP7A5Obbd1rUCsjLyFnc,5658
4
- ae_base-0.3.55.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
5
- ae_base-0.3.55.dist-info/top_level.txt,sha256=vUdgAslSmhZLXWU48fm8AG2BjVnkOWLco8rzuW-5zY0,3
6
- ae_base-0.3.55.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
- ae_base-0.3.55.dist-info/RECORD,,