xloft 0.6.4__py3-none-any.whl → 0.6.5__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 xloft might be problematic. Click here for more details.
- xloft/__init__.py +2 -2
- xloft/{converter → converters}/__init__.py +2 -2
- {xloft-0.6.4.dist-info → xloft-0.6.5.dist-info}/METADATA +1 -8
- xloft-0.6.5.dist-info/RECORD +11 -0
- xloft-0.6.4.dist-info/RECORD +0 -11
- /xloft/{converter → converters}/human_size.py +0 -0
- {xloft-0.6.4.dist-info → xloft-0.6.5.dist-info}/WHEEL +0 -0
- {xloft-0.6.4.dist-info → xloft-0.6.5.dist-info}/licenses/LICENSE +0 -0
xloft/__init__.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Modules exported by this package:
|
|
4
4
|
|
|
5
5
|
- `namedtuple`- Class imitates the behavior of the _named tuple_.
|
|
6
|
-
- `
|
|
6
|
+
- `converters` - Collection of tools for converting data.
|
|
7
7
|
- `itis` - Tools for determining something.
|
|
8
8
|
"""
|
|
9
9
|
|
|
@@ -15,6 +15,6 @@ __all__ = (
|
|
|
15
15
|
"NamedTuple",
|
|
16
16
|
)
|
|
17
17
|
|
|
18
|
-
from xloft.
|
|
18
|
+
from xloft.converters.human_size import to_human_size
|
|
19
19
|
from xloft.itis import is_number
|
|
20
20
|
from xloft.namedtuple import NamedTuple
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""Collection of tools for converting data.
|
|
2
2
|
|
|
3
3
|
The module contains the following functions:
|
|
4
4
|
|
|
@@ -15,7 +15,7 @@ __all__ = (
|
|
|
15
15
|
"clean_cache_human_size",
|
|
16
16
|
)
|
|
17
17
|
|
|
18
|
-
from xloft.
|
|
18
|
+
from xloft.converters.human_size import (
|
|
19
19
|
clean_cache_human_size,
|
|
20
20
|
get_cache_human_size,
|
|
21
21
|
to_human_size,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xloft
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.5
|
|
4
4
|
Summary: (XLOFT) X-Library of tools
|
|
5
5
|
Project-URL: Homepage, https://github.com/kebasyaty/xloft
|
|
6
6
|
Project-URL: Repository, https://github.com/kebasyaty/xloft
|
|
@@ -70,13 +70,6 @@ Description-Content-Type: text/markdown
|
|
|
70
70
|
|
|
71
71
|
##
|
|
72
72
|
|
|
73
|
-
<img src="https://raw.githubusercontent.com/kebasyaty/xloft/v0/assets/attention.svg" alt="Attention">
|
|
74
|
-
<p>
|
|
75
|
-
The `quantum` module was deleted.
|
|
76
|
-
<br>
|
|
77
|
-
<a href="https://pypi.python.org/pypi/quantum-loop/" alt="quantum-loop">He is now here</a>
|
|
78
|
-
</p>
|
|
79
|
-
|
|
80
73
|
<br>
|
|
81
74
|
|
|
82
75
|
## Documentation
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
xloft/__init__.py,sha256=oLi6SfT894qR_qmWupAhtKUpfeeMlYek2mcdQB9nZNI,494
|
|
2
|
+
xloft/errors.py,sha256=hZcmF0QVVdvE5oM1jsXymRk_pPGgDSnUDM9wx9zJAYQ,895
|
|
3
|
+
xloft/itis.py,sha256=Uac1du1Z_rUf3e8uThLWcSYU0F27zThBDW6UMUEHz88,480
|
|
4
|
+
xloft/namedtuple.py,sha256=egEULlfATXM8gMhAMjQSHocwTudqqzXDGTYGZVSUGZs,5725
|
|
5
|
+
xloft/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
xloft/converters/__init__.py,sha256=ARuAwLLK55diQ8ggBeFC3inPRwn_aOyt6Ks_i8ObBl0,590
|
|
7
|
+
xloft/converters/human_size.py,sha256=vslG12Fln86zuCfXmDlmeijA2mCoLW3R2299PJ0wbxE,1957
|
|
8
|
+
xloft-0.6.5.dist-info/METADATA,sha256=DdbtaHZn8BCUlPgvM9T99IpP1PHu1NCAkeqG9ZYAGvk,7267
|
|
9
|
+
xloft-0.6.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
+
xloft-0.6.5.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
|
|
11
|
+
xloft-0.6.5.dist-info/RECORD,,
|
xloft-0.6.4.dist-info/RECORD
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
xloft/__init__.py,sha256=edoLxSQjmYOqkA_m7IKUavUPnZdTBz8J0YvgqAzFqqI,535
|
|
2
|
-
xloft/errors.py,sha256=hZcmF0QVVdvE5oM1jsXymRk_pPGgDSnUDM9wx9zJAYQ,895
|
|
3
|
-
xloft/itis.py,sha256=Uac1du1Z_rUf3e8uThLWcSYU0F27zThBDW6UMUEHz88,480
|
|
4
|
-
xloft/namedtuple.py,sha256=egEULlfATXM8gMhAMjQSHocwTudqqzXDGTYGZVSUGZs,5725
|
|
5
|
-
xloft/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
xloft/converter/__init__.py,sha256=iTZaq2zKj7NEFpKQ-v-xJAxcT0MdzEODTJkjzUgUrQo,597
|
|
7
|
-
xloft/converter/human_size.py,sha256=vslG12Fln86zuCfXmDlmeijA2mCoLW3R2299PJ0wbxE,1957
|
|
8
|
-
xloft-0.6.4.dist-info/METADATA,sha256=eOmsrmGoPSmjGmPK5KUX7KHt3qcLrUap02v2Gbn_fUw,7509
|
|
9
|
-
xloft-0.6.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
-
xloft-0.6.4.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
|
|
11
|
-
xloft-0.6.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|