PythonExtensionsCollection 0.2.0__py3-none-any.whl → 0.13.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.
- PythonExtensionsCollection/Comparison/CComparison.py +341 -0
- PythonExtensionsCollection/Comparison/__init__.py +13 -0
- PythonExtensionsCollection/File/CFile.py +326 -106
- PythonExtensionsCollection/File/__init__.py +1 -1
- PythonExtensionsCollection/Folder/CFolder.py +460 -0
- PythonExtensionsCollection/Folder/__init__.py +13 -0
- PythonExtensionsCollection/PythonExtensionsCollection.pdf +0 -0
- PythonExtensionsCollection/String/CString.py +128 -344
- PythonExtensionsCollection/String/__init__.py +1 -1
- PythonExtensionsCollection/Utils/CUtils.py +77 -74
- PythonExtensionsCollection/Utils/__init__.py +1 -1
- PythonExtensionsCollection/__init__.py +1 -1
- PythonExtensionsCollection/version.py +23 -0
- {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/METADATA +57 -44
- PythonExtensionsCollection-0.13.0.dist-info/RECORD +18 -0
- {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/WHEEL +1 -1
- PythonExtensionsCollection/doc/.buildinfo +0 -4
- PythonExtensionsCollection/doc/File.html +0 -315
- PythonExtensionsCollection/doc/String.html +0 -590
- PythonExtensionsCollection/doc/Utils.html +0 -209
- PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/File/CFile.html +0 -960
- PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/String/CString.html +0 -1221
- PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/Utils/CUtils.html +0 -431
- PythonExtensionsCollection/doc/_modules/index.html +0 -106
- PythonExtensionsCollection/doc/_sources/File.rst.txt +0 -28
- PythonExtensionsCollection/doc/_sources/String.rst.txt +0 -28
- PythonExtensionsCollection/doc/_sources/Utils.rst.txt +0 -28
- PythonExtensionsCollection/doc/_sources/additional_doc/Introduction.rst.txt +0 -365
- PythonExtensionsCollection/doc/_sources/index.rst.txt +0 -27
- PythonExtensionsCollection/doc/_static/_sphinx_javascript_frameworks_compat.js +0 -134
- PythonExtensionsCollection/doc/_static/alabaster.css +0 -701
- PythonExtensionsCollection/doc/_static/basic.css +0 -930
- PythonExtensionsCollection/doc/_static/custom.css +0 -1
- PythonExtensionsCollection/doc/_static/doctools.js +0 -264
- PythonExtensionsCollection/doc/_static/documentation_options.js +0 -14
- PythonExtensionsCollection/doc/_static/file.png +0 -0
- PythonExtensionsCollection/doc/_static/jquery-3.6.0.js +0 -10881
- PythonExtensionsCollection/doc/_static/jquery.js +0 -2
- PythonExtensionsCollection/doc/_static/language_data.js +0 -199
- PythonExtensionsCollection/doc/_static/minus.png +0 -0
- PythonExtensionsCollection/doc/_static/plus.png +0 -0
- PythonExtensionsCollection/doc/_static/pygments.css +0 -82
- PythonExtensionsCollection/doc/_static/searchtools.js +0 -531
- PythonExtensionsCollection/doc/_static/underscore-1.13.1.js +0 -2042
- PythonExtensionsCollection/doc/_static/underscore.js +0 -6
- PythonExtensionsCollection/doc/additional_doc/Introduction.html +0 -365
- PythonExtensionsCollection/doc/genindex.html +0 -292
- PythonExtensionsCollection/doc/index.html +0 -123
- PythonExtensionsCollection/doc/objects.inv +0 -0
- PythonExtensionsCollection/doc/py-modindex.html +0 -138
- PythonExtensionsCollection/doc/search.html +0 -127
- PythonExtensionsCollection/doc/searchindex.js +0 -1
- PythonExtensionsCollection-0.2.0.dist-info/RECORD +0 -48
- {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/LICENSE +0 -0
- {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/top_level.txt +0 -0
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
#
|
|
21
21
|
# XC-CT/ECA3-Queckenstedt
|
|
22
22
|
#
|
|
23
|
-
#
|
|
23
|
+
# 29.03.2023
|
|
24
24
|
#
|
|
25
25
|
# **************************************************************************************************************
|
|
26
26
|
|
|
@@ -33,95 +33,63 @@ from dotdict import dotdict
|
|
|
33
33
|
|
|
34
34
|
def PrettyPrint(oData=None, hOutputFile=None, bToConsole=True, nIndent=0, sPrefix=None, bHexFormat=False):
|
|
35
35
|
"""
|
|
36
|
-
|
|
36
|
+
Wrapper function to create and use a ``CTypePrint`` object. This wrapper function is responsible for
|
|
37
|
+
printing out the content to console and to a file (depending on input parameter).
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
The content itself is prepared by the method ``TypePrint`` of class ``CTypePrint``. This happens ``PrettyPrint`` internally.
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
The idea behind the ``PrettyPrint`` function is to resolve also the content of composite data types and provide for every parameter inside:
|
|
41
42
|
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
* the type
|
|
44
|
+
* the total number of elements inside (e.g. the number of keys inside a dictionary)
|
|
45
|
+
* the counter number of the current element
|
|
46
|
+
* the value
|
|
44
47
|
|
|
45
|
-
|
|
48
|
+
**Arguments:**
|
|
46
49
|
|
|
47
|
-
|
|
50
|
+
* ``oData``
|
|
48
51
|
|
|
49
|
-
|
|
50
|
-
* the total number of elements inside (e.g. the number of keys inside a dictionary)
|
|
51
|
-
* the counter number of the current element
|
|
52
|
-
* the value
|
|
52
|
+
/ *Condition*: required / *Type*: (*any Python data type*) /
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
A variable of any Python data type.
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
* ``hOutputFile``
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
/ *Condition*: optional / *Type*: file handle / *Default*: None /
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
If handle is not ``None`` the content is written to this file, otherwise not.
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
[DICT] (3/2) > {K2} [LIST] (4/1) > [INT] : 1
|
|
64
|
-
[DICT] (3/2) > {K2} [LIST] (4/2) > [STR] : 'A'
|
|
65
|
-
[DICT] (3/2) > {K2} [LIST] (4/3) > [INT] : 2
|
|
66
|
-
[DICT] (3/2) > {K2} [LIST] (4/4) > [TUPLE] (2/1) > [INT] : 9
|
|
67
|
-
[DICT] (3/2) > {K2} [LIST] (4/4) > [TUPLE] (2/2) > [STR] : 'Z'
|
|
68
|
-
[DICT] (3/3) > {K3} [INT] : 5
|
|
62
|
+
* ``bToConsole``
|
|
69
63
|
|
|
70
|
-
|
|
64
|
+
/ *Condition*: optional / *Type*: bool / *Default*: True /
|
|
71
65
|
|
|
72
|
-
|
|
66
|
+
If ``True`` the content is written to console, otherwise not.
|
|
73
67
|
|
|
74
|
-
|
|
68
|
+
* ``nIndent``
|
|
75
69
|
|
|
76
|
-
|
|
70
|
+
/ *Condition*: optional / *Type*: int / *Default*: 0 /
|
|
77
71
|
|
|
78
|
-
|
|
79
|
-
* The dictionary contains 3 keys
|
|
80
|
-
* The current line gives information about the second key of the dictionary
|
|
81
|
-
* The name of the second key is 'K2'
|
|
82
|
-
* The value of the second key is of type ``list``
|
|
83
|
-
* The list contains 4 elements
|
|
84
|
-
* The current line gives information about the fourth element of the list
|
|
85
|
-
* The fourth element of the list is of type ``tuple``
|
|
86
|
-
* The tuple contains 2 elements
|
|
87
|
-
* The current line gives information about the first element of the tuple
|
|
88
|
-
* The first element of the tuple is of type ``int`` and has the value 9
|
|
72
|
+
Sets the number of additional blanks at the beginning of every line of output (indentation).
|
|
89
73
|
|
|
90
|
-
|
|
74
|
+
* ``sPrefix``
|
|
91
75
|
|
|
92
|
-
|
|
76
|
+
/ *Condition*: optional / *Type*: str / *Default*: None /
|
|
93
77
|
|
|
94
|
-
|
|
78
|
+
Sets a prefix string that is added at the beginning of every line of output.
|
|
95
79
|
|
|
96
|
-
|
|
80
|
+
* ``bHexFormat``
|
|
97
81
|
|
|
98
|
-
|
|
82
|
+
/ *Condition*: optional / *Type*: bool / *Default*: False /
|
|
99
83
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
**bToConsole** (*bool; optional; default: True*)
|
|
103
|
-
|
|
104
|
-
If ``True`` the content is written to console, otherwise not.
|
|
105
|
-
|
|
106
|
-
**nIndent** (*int; optional; default: 0*)
|
|
107
|
-
|
|
108
|
-
Sets the number of additional blanks at the beginning of every line of output (indentation).
|
|
109
|
-
|
|
110
|
-
**sPrefix** (*str; optional; default: None*)
|
|
111
|
-
|
|
112
|
-
Sets a prefix string that is added at the beginning of every line of output.
|
|
113
|
-
|
|
114
|
-
**bHexFormat** (*bool; optional; default: False*)
|
|
115
|
-
|
|
116
|
-
If ``True`` the output is printed in hexadecimal format (but strings only).
|
|
84
|
+
If ``True`` the output is printed in hexadecimal format (but valid for strings only).
|
|
117
85
|
|
|
118
86
|
**Returns:**
|
|
119
87
|
|
|
120
|
-
|
|
88
|
+
* ``listOutLines`` (*list*)
|
|
121
89
|
|
|
122
|
-
|
|
90
|
+
/ *Type*: list /
|
|
123
91
|
|
|
124
|
-
|
|
92
|
+
List of lines containing the prepared output
|
|
125
93
|
"""
|
|
126
94
|
|
|
127
95
|
oTypePrint = CTypePrint()
|
|
@@ -149,8 +117,19 @@ def PrettyPrint(oData=None, hOutputFile=None, bToConsole=True, nIndent=0, sPrefi
|
|
|
149
117
|
# --------------------------------------------------------------------------------------------------------------
|
|
150
118
|
# TM***
|
|
151
119
|
|
|
152
|
-
class CTypePrint():
|
|
120
|
+
class CTypePrint(object):
|
|
121
|
+
"""
|
|
122
|
+
The class ``CTypePrint`` provides a method (``TypePrint``) to compute the following data:
|
|
123
|
+
|
|
124
|
+
* the type
|
|
125
|
+
* the total number of elements inside (e.g. the number of keys inside a dictionary)
|
|
126
|
+
* the counter number of the current element
|
|
127
|
+
* the value
|
|
128
|
+
|
|
129
|
+
of simple and composite data types.
|
|
153
130
|
|
|
131
|
+
The call of this method is encapsulated within the function ``PrettyPrint`` inside this module.
|
|
132
|
+
"""
|
|
154
133
|
def __init__(self):
|
|
155
134
|
self.listGlobalPrefixes = []
|
|
156
135
|
self.listOutLines = []
|
|
@@ -168,6 +147,31 @@ class CTypePrint():
|
|
|
168
147
|
return sStringHex
|
|
169
148
|
|
|
170
149
|
def TypePrint(self, oData=None, bHexFormat=False):
|
|
150
|
+
"""
|
|
151
|
+
The method ``TypePrint`` computes details about the input variable ``oData``.
|
|
152
|
+
|
|
153
|
+
**Arguments:**
|
|
154
|
+
|
|
155
|
+
* ``oData``
|
|
156
|
+
|
|
157
|
+
/ *Condition*: required / *Type*: any Python data type /
|
|
158
|
+
|
|
159
|
+
Python variable of any data type.
|
|
160
|
+
|
|
161
|
+
* ``bHexFormat``
|
|
162
|
+
|
|
163
|
+
/ *Condition*: optional / *Type*: bool / *Default*: False /
|
|
164
|
+
|
|
165
|
+
If ``True`` the output is provide in hexadecimal format.
|
|
166
|
+
|
|
167
|
+
**Returns:**
|
|
168
|
+
|
|
169
|
+
* ``listOutLines``
|
|
170
|
+
|
|
171
|
+
/ *Type*: list /
|
|
172
|
+
|
|
173
|
+
List of lines containing the resolved content of ``oData``.
|
|
174
|
+
"""
|
|
171
175
|
|
|
172
176
|
if oData is None:
|
|
173
177
|
sLocalPrefix = "[NONE]"
|
|
@@ -175,25 +179,25 @@ class CTypePrint():
|
|
|
175
179
|
sOut = sGlobalPrefix + " " + sLocalPrefix + " : " + str(oData)
|
|
176
180
|
self.listOutLines.append(sOut.strip())
|
|
177
181
|
|
|
178
|
-
elif type(oData)
|
|
182
|
+
elif type(oData) is int:
|
|
179
183
|
sLocalPrefix = "[INT]"
|
|
180
184
|
sGlobalPrefix = " ".join(self.listGlobalPrefixes)
|
|
181
185
|
sOut = sGlobalPrefix + " " + sLocalPrefix + " : " + str(oData)
|
|
182
186
|
self.listOutLines.append(sOut.strip())
|
|
183
187
|
|
|
184
|
-
elif type(oData)
|
|
188
|
+
elif type(oData) is float:
|
|
185
189
|
sLocalPrefix = "[FLOAT]"
|
|
186
190
|
sGlobalPrefix = " ".join(self.listGlobalPrefixes)
|
|
187
191
|
sOut = sGlobalPrefix + " " + sLocalPrefix + " : " + str(oData)
|
|
188
192
|
self.listOutLines.append(sOut.strip())
|
|
189
193
|
|
|
190
|
-
elif type(oData)
|
|
194
|
+
elif type(oData) is bool:
|
|
191
195
|
sLocalPrefix = "[BOOL]"
|
|
192
196
|
sGlobalPrefix = " ".join(self.listGlobalPrefixes)
|
|
193
197
|
sOut = sGlobalPrefix + " " + sLocalPrefix + " : " + str(oData)
|
|
194
198
|
self.listOutLines.append(sOut.strip())
|
|
195
199
|
|
|
196
|
-
elif type(oData)
|
|
200
|
+
elif type(oData) is str:
|
|
197
201
|
sLocalPrefix = "[STR]"
|
|
198
202
|
sGlobalPrefix = " ".join(self.listGlobalPrefixes)
|
|
199
203
|
sData = str(oData)
|
|
@@ -202,7 +206,7 @@ class CTypePrint():
|
|
|
202
206
|
sOut = sGlobalPrefix + " " + sLocalPrefix + " : '" + sData + "'"
|
|
203
207
|
self.listOutLines.append(sOut.strip())
|
|
204
208
|
|
|
205
|
-
elif type(oData)
|
|
209
|
+
elif type(oData) is list:
|
|
206
210
|
nNrOfElements = len(oData)
|
|
207
211
|
if nNrOfElements == 0:
|
|
208
212
|
# -- indicate empty list
|
|
@@ -222,7 +226,7 @@ class CTypePrint():
|
|
|
222
226
|
del self.listGlobalPrefixes[-1] # remove prefix count
|
|
223
227
|
del self.listGlobalPrefixes[-1] # remove prefix name
|
|
224
228
|
|
|
225
|
-
elif type(oData)
|
|
229
|
+
elif type(oData) is tuple:
|
|
226
230
|
nNrOfElements = len(oData)
|
|
227
231
|
if nNrOfElements == 0:
|
|
228
232
|
# -- indicate empty tuple
|
|
@@ -242,7 +246,7 @@ class CTypePrint():
|
|
|
242
246
|
del self.listGlobalPrefixes[-1] # remove prefix count
|
|
243
247
|
del self.listGlobalPrefixes[-1] # remove prefix name
|
|
244
248
|
|
|
245
|
-
elif type(oData)
|
|
249
|
+
elif type(oData) is set:
|
|
246
250
|
nNrOfElements = len(oData)
|
|
247
251
|
if nNrOfElements == 0:
|
|
248
252
|
# -- indicate empty set
|
|
@@ -262,7 +266,7 @@ class CTypePrint():
|
|
|
262
266
|
del self.listGlobalPrefixes[-1] # remove prefix count
|
|
263
267
|
del self.listGlobalPrefixes[-1] # remove prefix name
|
|
264
268
|
|
|
265
|
-
elif type(oData)
|
|
269
|
+
elif type(oData) is dict:
|
|
266
270
|
nNrOfElements = len(oData)
|
|
267
271
|
if nNrOfElements == 0:
|
|
268
272
|
# -- indicate empty dictionary
|
|
@@ -284,8 +288,7 @@ class CTypePrint():
|
|
|
284
288
|
del self.listGlobalPrefixes[-1] # remove prefix count
|
|
285
289
|
del self.listGlobalPrefixes[-1] # remove prefix name
|
|
286
290
|
|
|
287
|
-
|
|
288
|
-
elif ( (type(oData) == dotdict) or (str(type(oData)) == "<class 'robot.utils.dotdict.DotDict'>") ):
|
|
291
|
+
elif ( (type(oData) is dotdict) or (str(type(oData)) == "<class 'robot.utils.dotdict.DotDict'>") or (str(type(oData)) == "<class 'RobotFramework_TestsuitesManagement.Config.CConfig.dotdict'>") ):
|
|
289
292
|
nNrOfElements = len(oData)
|
|
290
293
|
if nNrOfElements == 0:
|
|
291
294
|
# -- indicate empty dot dictionary
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# **************************************************************************************************************
|
|
2
|
+
#
|
|
3
|
+
# Copyright 2020-2022 Robert Bosch GmbH
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
#
|
|
17
|
+
# **************************************************************************************************************
|
|
18
|
+
#
|
|
19
|
+
# Version and date of PythonExtensionsCollection
|
|
20
|
+
#
|
|
21
|
+
VERSION = "0.13.0"
|
|
22
|
+
VERSION_DATE = "03.04.2023"
|
|
23
|
+
|
{PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/METADATA
RENAMED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PythonExtensionsCollection
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.13.0
|
|
4
|
+
Summary: Additional Python functions
|
|
5
5
|
Home-page: https://github.com/test-fullautomation/python-extensions-collection
|
|
6
6
|
Author: Holger Queckenstedt
|
|
7
7
|
Author-email: Holger.Queckenstedt@de.bosch.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
8
10
|
Classifier: Programming Language :: Python :: 3
|
|
9
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -14,56 +16,58 @@ Classifier: Topic :: Software Development
|
|
|
14
16
|
Requires-Python: >=3.0
|
|
15
17
|
Description-Content-Type: text/markdown
|
|
16
18
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
> obtain a copy of the License at
|
|
24
|
-
>
|
|
25
|
-
> <http://www.apache.org/licenses/LICENSE-2.0>
|
|
26
|
-
>
|
|
27
|
-
> Unless required by applicable law or agreed to in writing, software
|
|
28
|
-
> distributed under the License is distributed on an \"AS IS\" BASIS,
|
|
29
|
-
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
30
|
-
> implied. See the License for the specific language governing
|
|
31
|
-
> permissions and limitations under the License.
|
|
32
|
-
|
|
33
|
-
# Package Description
|
|
34
|
-
|
|
35
|
-
## Getting Started
|
|
36
|
-
|
|
37
|
-
The Python Extensions Collection package extends the functionality of
|
|
19
|
+
Requires-Dist: dotdict
|
|
20
|
+
|
|
21
|
+
Package Description
|
|
22
|
+
===================
|
|
23
|
+
|
|
24
|
+
The **PythonExtensionsCollection** package extends the functionality of
|
|
38
25
|
Python by some useful functions that are not available in Python
|
|
39
26
|
immediately.
|
|
40
27
|
|
|
41
|
-
|
|
28
|
+
How to install
|
|
29
|
+
--------------
|
|
30
|
+
|
|
31
|
+
The **PythonExtensionsCollection** can be installed in two different
|
|
32
|
+
ways.
|
|
33
|
+
|
|
34
|
+
1. Installation via PyPi (recommended for users)
|
|
35
|
+
|
|
36
|
+
``` {.}
|
|
37
|
+
pip install PythonExtensionsCollection
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[PythonExtensionsCollection in
|
|
41
|
+
PyPi](https://pypi.org/project/PythonExtensionsCollection/)
|
|
42
|
+
|
|
43
|
+
2. Installation via GitHub (recommended for developers)
|
|
42
44
|
|
|
43
|
-
|
|
44
|
-
machine.
|
|
45
|
+
Clone the **python-extensions-collection** repository to your
|
|
46
|
+
machine.
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
+
``` {.}
|
|
49
|
+
git clone https://github.com/test-fullautomation/python-extensions-collection.git
|
|
50
|
+
```
|
|
48
51
|
|
|
49
|
-
|
|
52
|
+
[PythonExtensionsCollection in
|
|
53
|
+
GitHub](https://github.com/test-fullautomation/python-extensions-collection)
|
|
50
54
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
setup.py install will install the package
|
|
54
|
-
```
|
|
55
|
+
Use the following command to install the
|
|
56
|
+
**PythonExtensionsCollection**:
|
|
55
57
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
``` {.}
|
|
59
|
+
setup.py install
|
|
60
|
+
```
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
Package Documentation
|
|
63
|
+
---------------------
|
|
61
64
|
|
|
62
|
-
A detailed documentation of the
|
|
63
|
-
|
|
64
|
-
[
|
|
65
|
+
A detailed documentation of the **PythonExtensionsCollection** can be
|
|
66
|
+
found here:
|
|
67
|
+
[PythonExtensionsCollection.pdf](https://github.com/test-fullautomation/python-extensions-collection/blob/develop/PythonExtensionsCollection/PythonExtensionsCollection.pdf)
|
|
65
68
|
|
|
66
|
-
|
|
69
|
+
Feedback
|
|
70
|
+
--------
|
|
67
71
|
|
|
68
72
|
To give us a feedback, you can send an email to [Thomas
|
|
69
73
|
Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
|
|
@@ -71,15 +75,22 @@ Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
|
|
|
71
75
|
In case you want to report a bug or request any interesting feature,
|
|
72
76
|
please don\'t hesitate to raise a ticket.
|
|
73
77
|
|
|
74
|
-
|
|
78
|
+
Maintainers
|
|
79
|
+
-----------
|
|
80
|
+
|
|
81
|
+
[Holger Queckenstedt](mailto:Holger.Queckenstedt@de.bosch.com)
|
|
75
82
|
|
|
76
83
|
[Thomas Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
|
|
77
84
|
|
|
78
|
-
|
|
85
|
+
Contributors
|
|
86
|
+
------------
|
|
79
87
|
|
|
80
88
|
[Holger Queckenstedt](mailto:Holger.Queckenstedt@de.bosch.com)
|
|
81
89
|
|
|
82
|
-
|
|
90
|
+
[Thomas Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
|
|
91
|
+
|
|
92
|
+
License
|
|
93
|
+
-------
|
|
83
94
|
|
|
84
95
|
Copyright 2020-2022 Robert Bosch GmbH
|
|
85
96
|
|
|
@@ -95,3 +106,5 @@ distributed under the License is distributed on an \"AS IS\" BASIS,
|
|
|
95
106
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
96
107
|
See the License for the specific language governing permissions and
|
|
97
108
|
limitations under the License.
|
|
109
|
+
|
|
110
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
PythonExtensionsCollection/PythonExtensionsCollection.pdf,sha256=H1EVoh3wU2adU7jFvtq0xCrac2Nik2FvMYNjBojLtE4,281523
|
|
2
|
+
PythonExtensionsCollection/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
3
|
+
PythonExtensionsCollection/version.py,sha256=w9Xlc1o3uKY2FoynLeHuH5Ii8jBKW7c_eTtfPTThFTQ,932
|
|
4
|
+
PythonExtensionsCollection/Comparison/CComparison.py,sha256=QS9ianplFbS8aN1oT8ax2kgh1TT6lE1djQhljJqloCQ,12552
|
|
5
|
+
PythonExtensionsCollection/Comparison/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
6
|
+
PythonExtensionsCollection/File/CFile.py,sha256=vLEmVnYowxqLilEtQmPuomUBiyABEtnUu5XFZW27skU,36382
|
|
7
|
+
PythonExtensionsCollection/File/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
8
|
+
PythonExtensionsCollection/Folder/CFolder.py,sha256=WUMITkZnpPNdxGPZraPsmxe0IzGmlZBbeEwiKv4AR7o,15985
|
|
9
|
+
PythonExtensionsCollection/Folder/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
10
|
+
PythonExtensionsCollection/String/CString.py,sha256=iJxfMW5NwJ5Mc9sFqHMWrNMTfH2KgAzPj19Mask4cig,37642
|
|
11
|
+
PythonExtensionsCollection/String/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
12
|
+
PythonExtensionsCollection/Utils/CUtils.py,sha256=bwYFsIMC-kwlrzPutmqTd7C4XoQXiKLLxI7vD_TXIgk,11926
|
|
13
|
+
PythonExtensionsCollection/Utils/__init__.py,sha256=hr5YI0Et3k8uubFLR_hLILpLtqgnJvEYil0neGoKXhA,596
|
|
14
|
+
PythonExtensionsCollection-0.13.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
15
|
+
PythonExtensionsCollection-0.13.0.dist-info/METADATA,sha256=WTzPez6NAEOSrtfnjKOrsw4YntvYx_duhi92EUQvYZQ,3211
|
|
16
|
+
PythonExtensionsCollection-0.13.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
17
|
+
PythonExtensionsCollection-0.13.0.dist-info/top_level.txt,sha256=xv5w-C3GQkdbxctBNzEqPfWvpJ1kpAaHBe3TEdGcozQ,27
|
|
18
|
+
PythonExtensionsCollection-0.13.0.dist-info/RECORD,,
|