PythonExtensionsCollection 0.16.0__py3-none-any.whl → 0.17.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.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2024 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2024 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2024 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2024 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2025 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
20
20
  #
21
21
  # XC-HWP/ESW3-Queckenstedt
22
22
  #
23
- # 29.01.2025
23
+ # 12.03.2026
24
24
  #
25
25
  # **************************************************************************************************************
26
26
 
@@ -379,38 +379,28 @@ It is also possible to let the method dump the list to a text file.
379
379
  bSuccess = None
380
380
  sResult = "UNKNOWN"
381
381
 
382
- listofTuplesPackages = []
383
-
384
- sFreezeData = None
382
+ sListData = None
385
383
  try:
386
- sFreezeData = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze'], encoding="utf-8", text=True)
384
+ sListData = subprocess.run([sys.executable, '-m', 'pip', 'list', '--format=columns'], capture_output=True, text=True)
385
+ sListLines = sListData.stdout.strip().split('\n')
387
386
  except Exception as reason:
388
387
  bSuccess = None
389
388
  sResult = str(reason)
390
389
  sResult = CString.FormatResult(sMethod, bSuccess, sResult)
391
390
  return listofTuplesPackages, bSuccess, sResult
392
391
 
393
- if sFreezeData is None:
392
+ if sListData is None:
394
393
  bSuccess = None
395
- sResult = "sFreezeData is None"
394
+ sResult = "sListData is None"
396
395
  sResult = CString.FormatResult(sMethod, bSuccess, sResult)
397
396
  return listofTuplesPackages, bSuccess, sResult
398
397
 
399
- sFreezeData = str(sFreezeData) # to make the content 'split()' save
400
-
401
- for sPackage in sFreezeData.split():
402
- sName = None
403
- sVersion = None
404
- listParts = sPackage.split('==')
405
- if len(listParts) != 2:
406
- sName = sPackage
407
- sVersion = "UNKNOWN"
408
- # but I really would not expect this
409
- else:
410
- sName = listParts[0]
411
- sVersion = listParts[1]
412
- listofTuplesPackages.append((sName, sVersion))
413
- # eof for sPackage in sFreezeData.split():
398
+ listofTuplesPackages = []
399
+ # lines[2:] => skip headline of 'pip list'
400
+ for sLine in sListLines[2:]:
401
+ parts = sLine.split()
402
+ if len(parts) >= 2:
403
+ listofTuplesPackages.append((parts[0], parts[1]))
414
404
 
415
405
  nNrOfPackages = len(listofTuplesPackages)
416
406
 
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020-2024 Robert Bosch GmbH
1
+ # Copyright 2020-2026 Robert Bosch GmbH
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # **************************************************************************************************************
2
2
  #
3
- # Copyright 2020-2024 Robert Bosch GmbH
3
+ # Copyright 2020-2026 Robert Bosch GmbH
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -18,6 +18,5 @@
18
18
  #
19
19
  # Version and date of PythonExtensionsCollection
20
20
  #
21
- VERSION = "0.16.0"
22
- VERSION_DATE = "29.01.2025"
23
-
21
+ VERSION = "0.17.0"
22
+ VERSION_DATE = "28.05.2026"
@@ -0,0 +1,173 @@
1
+ Metadata-Version: 2.4
2
+ Name: PythonExtensionsCollection
3
+ Version: 0.17.0
4
+ Summary: Additional Python functions
5
+ Author-email: Holger Queckenstedt <Holger.Queckenstedt@de.bosch.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://pypi.org/project/PythonExtensionsCollection/
8
+ Project-URL: Documentation, https://github.com/test-fullautomation/python-extensions-collection/blob/develop/PythonExtensionsCollection/PythonExtensionsCollection.pdf
9
+ Project-URL: Readme, https://github.com/test-fullautomation/python-extensions-collection/blob/develop/README.rst
10
+ Project-URL: Repository, https://github.com/test-fullautomation/python-extensions-collection
11
+ Project-URL: Issues, https://github.com/test-fullautomation/python-extensions-collection/issues
12
+ Keywords: string,file,folder,path
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Topic :: Software Development
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/x-rst
20
+ License-File: LICENSE
21
+ Requires-Dist: docutils>=0.22.4
22
+ Requires-Dist: colorama
23
+ Requires-Dist: GenPackageDoc
24
+ Provides-Extra: dev
25
+ Requires-Dist: pytest>=6.0; extra == "dev"
26
+ Requires-Dist: pytest-cov>=3.0; extra == "dev"
27
+ Provides-Extra: docs
28
+ Requires-Dist: docutils>=0.22.4; extra == "docs"
29
+ Dynamic: license-file
30
+
31
+ .. Copyright 2020-2026 Robert Bosch GmbH
32
+
33
+ .. Licensed under the Apache License, Version 2.0 (the "License");
34
+ you may not use this file except in compliance with the License.
35
+ You may obtain a copy of the License at
36
+
37
+ .. http://www.apache.org/licenses/LICENSE-2.0
38
+
39
+ .. Unless required by applicable law or agreed to in writing, software
40
+ distributed under the License is distributed on an "AS IS" BASIS,
41
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42
+ See the License for the specific language governing permissions and
43
+ limitations under the License.
44
+
45
+ Package Description
46
+ ===================
47
+
48
+ The **PythonExtensionsCollection** extends the functionality of Python by some useful functions
49
+ that are not available in Python immediately.
50
+
51
+ How to install
52
+ --------------
53
+
54
+ The **PythonExtensionsCollection** can be installed in two different ways.
55
+
56
+ 1. Installation via PyPi (recommended for users)
57
+
58
+ .. code::
59
+
60
+ pip install PythonExtensionsCollection
61
+
62
+ `PythonExtensionsCollection in PyPi <https://pypi.org/project/PythonExtensionsCollection/>`_
63
+
64
+ 2. Installation via GitHub (recommended for developers)
65
+
66
+ * Clone the **python-extensions-collection** repository to your machine.
67
+
68
+ .. code::
69
+
70
+ git clone https://github.com/test-fullautomation/python-extensions-collection.git
71
+
72
+ `PythonExtensionsCollection in GitHub <https://github.com/test-fullautomation/python-extensions-collection>`_
73
+
74
+ * Use the following command to install **PythonExtensionsCollection** (executed in repository main folder):
75
+
76
+ .. code::
77
+
78
+ python -m pip install .
79
+
80
+ Or:
81
+
82
+ .. code::
83
+
84
+ python -m pip install --proxy <proxy> .
85
+
86
+ This command will also download and install all dependencies that are required to work with the source files in the current repository.
87
+ After the initial installation of **PythonExtensionsCollection** is done, you have the following two possibilities:
88
+
89
+ 1. *Clean the previous installation*:
90
+
91
+ .. code::
92
+
93
+ python "./cleanup_installation.py"
94
+
95
+ ``cleanup_installation.py`` explicitly deletes all files and folders within the component installation folder under
96
+ ``site-packages`` and also deletes local build artefacts.
97
+
98
+ 2. *Render the component documentation*:
99
+
100
+ .. code::
101
+
102
+ python "./genpackagedoc.py"
103
+
104
+ This would e.g. be required in case of changes in the interface of **PythonExtensionsCollection**.
105
+
106
+ The documentation is rendered by a separate application called **GenPackageDoc**, that is part
107
+ of the build dependencies and runtime dependencies of **PythonExtensionsCollection**.
108
+
109
+ **GenPackageDoc** needs to be configured. Details about how to do this, can be found in the
110
+ `README.rst <https://github.com/test-fullautomation/python-genpackagedoc/blob/develop/README.rst>`_
111
+ (sections *Install dependencies* and *Configure dependencies*).
112
+
113
+ * Use the following command to build **PythonExtensionsCollection** (executed in repository main folder):
114
+
115
+ .. code::
116
+
117
+ python -m build .
118
+
119
+ Or:
120
+
121
+ .. code::
122
+
123
+ python -m pip config set global.proxy <proxy>
124
+ python -m build .
125
+
126
+ Package Documentation
127
+ ---------------------
128
+
129
+ A detailed documentation of the **PythonExtensionsCollection** can be found here:
130
+ `PythonExtensionsCollection.pdf <https://github.com/test-fullautomation/python-extensions-collection/blob/develop/PythonExtensionsCollection/PythonExtensionsCollection.pdf>`_
131
+
132
+
133
+ Feedback
134
+ --------
135
+
136
+ To give us a feedback, you can send an email to `Thomas Pollerspöck <mailto:Thomas.Pollerspoeck@de.bosch.com>`_
137
+
138
+ In case you want to report a bug or request any interesting feature, please don't hesitate to raise a ticket.
139
+
140
+ Maintainers
141
+ -----------
142
+
143
+ `Holger Queckenstedt <mailto:Holger.Queckenstedt@de.bosch.com>`_
144
+
145
+ `Thomas Pollerspöck <mailto:Thomas.Pollerspoeck@de.bosch.com>`_
146
+
147
+ Contributors
148
+ ------------
149
+
150
+ `Holger Queckenstedt <mailto:Holger.Queckenstedt@de.bosch.com>`_
151
+
152
+ `Thomas Pollerspöck <mailto:Thomas.Pollerspoeck@de.bosch.com>`_
153
+
154
+ License
155
+ -------
156
+
157
+ Copyright 2020-2026 Robert Bosch GmbH
158
+
159
+ Licensed under the Apache License, Version 2.0 (the "License");
160
+ you may not use this file except in compliance with the License.
161
+ You may obtain a copy of the License at
162
+
163
+ |License: Apache v2|
164
+
165
+ Unless required by applicable law or agreed to in writing, software
166
+ distributed under the License is distributed on an "AS IS" BASIS,
167
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
168
+ See the License for the specific language governing permissions and
169
+ limitations under the License.
170
+
171
+
172
+ .. |License: Apache v2| image:: https://img.shields.io/pypi/l/robotframework.svg
173
+ :target: http://www.apache.org/licenses/LICENSE-2.0.html
@@ -0,0 +1,18 @@
1
+ PythonExtensionsCollection/PythonExtensionsCollection.pdf,sha256=kXArW7rS7bx6ZdbLuNZ0o_BPT5dwr1uLNVkIs1YTTL8,264215
2
+ PythonExtensionsCollection/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
3
+ PythonExtensionsCollection/version.py,sha256=I9Y9JA_0SWShVq8O-dC10nUBUEd-Ys3GUr0jDAdQsC4,931
4
+ PythonExtensionsCollection/Comparison/CComparison.py,sha256=PKoYKcF2OH-lZg9yuGZCf0zAlu6kqHtBuHd7bwdMcbE,12553
5
+ PythonExtensionsCollection/Comparison/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
6
+ PythonExtensionsCollection/File/CFile.py,sha256=kpNMydbZnrYGI6zCsuX8QvvWAUzVIGGbr4XLBWZVTr4,36383
7
+ PythonExtensionsCollection/File/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
8
+ PythonExtensionsCollection/Folder/CFolder.py,sha256=jHmmmrEFa-J0vfD9mPHkwoLyjkbWfOpJnp7ti2SdkCk,15986
9
+ PythonExtensionsCollection/Folder/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
10
+ PythonExtensionsCollection/String/CString.py,sha256=9uchuMkCEG_C4BPrOyYeSEZajZBf0i-dsVK3esa-blc,38424
11
+ PythonExtensionsCollection/String/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
12
+ PythonExtensionsCollection/Utils/CUtils.py,sha256=XKwv80NPU7MP-NX84QSv169fS6IDmEcsOFOFJjCrIvI,15699
13
+ PythonExtensionsCollection/Utils/__init__.py,sha256=QGox2k2vxlv4xBA8Q82Elqn9X8gf47khen7co4L3fVI,596
14
+ pythonextensionscollection-0.17.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
+ pythonextensionscollection-0.17.0.dist-info/METADATA,sha256=ABW0dIscACb_wwWmVSaOluEKzeW5zY-a4B1LVUIIAuY,6146
16
+ pythonextensionscollection-0.17.0.dist-info/WHEEL,sha256=VI2vfq3A8oyu8nOQDd3fRSv7Q1LTpHATAyLP-GQy07o,91
17
+ pythonextensionscollection-0.17.0.dist-info/top_level.txt,sha256=xv5w-C3GQkdbxctBNzEqPfWvpJ1kpAaHBe3TEdGcozQ,27
18
+ pythonextensionscollection-0.17.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.45.1)
2
+ Generator: setuptools (0.17.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,139 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: PythonExtensionsCollection
3
- Version: 0.16.0
4
- Summary: Additional Python functions
5
- Home-page: https://github.com/test-fullautomation/python-extensions-collection
6
- Author: Holger Queckenstedt
7
- Author-email: Holger.Queckenstedt@de.bosch.com
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: License :: OSI Approved :: Apache Software License
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Development Status :: 4 - Beta
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Topic :: Software Development
16
- Requires-Python: >=3.0
17
- Description-Content-Type: text/markdown
18
- License-File: LICENSE
19
- Requires-Dist: dotdict
20
-
21
- # Package Description
22
-
23
- The **PythonExtensionsCollection** extends the functionality of Python
24
- by some useful functions that are not available in Python immediately.
25
-
26
- ## How to install
27
-
28
- The **PythonExtensionsCollection** can be installed in two different
29
- ways.
30
-
31
- 1. Installation via PyPi (recommended for users)
32
-
33
- ```
34
- pip install PythonExtensionsCollection
35
- ```
36
-
37
- [PythonExtensionsCollection in
38
- PyPi](https://pypi.org/project/PythonExtensionsCollection/)
39
-
40
- 2. Installation via GitHub (recommended for developers)
41
-
42
- - Clone the **python-extensions-collection** repository to your
43
- machine.
44
-
45
- ```
46
- git clone https://github.com/test-fullautomation/python-extensions-collection.git
47
- ```
48
-
49
- [PythonExtensionsCollection in
50
- GitHub](https://github.com/test-fullautomation/python-extensions-collection)
51
-
52
- - Install dependencies
53
-
54
- **PythonExtensionsCollection** requires some additional Python
55
- libraries. Before you install the cloned repository sources you
56
- have to install the dependencies manually. The names of all
57
- related packages you can find in the file `requirements.txt` in
58
- the repository root folder. Use pip to install them:
59
-
60
- ```
61
- pip install -r ./requirements.txt
62
- ```
63
-
64
- Additionally install **LaTeX** (recommended: TeX Live). This is
65
- used to render the documentation.
66
-
67
- - Configure dependencies
68
-
69
- The installation of **PythonExtensionsCollection** includes to
70
- generate the documentation in PDF format. This is done by an
71
- application called **GenPackageDoc**, that is part of the
72
- installation dependencies (see `requirements.txt`).
73
-
74
- **GenPackageDoc** uses **LaTeX** to generate the documentation
75
- in PDF format. Therefore **GenPackageDoc** needs to know where
76
- to find **LaTeX**. This is defined in the **GenPackageDoc**
77
- configuration file
78
-
79
- ```
80
- packagedoc\packagedoc_config.json
81
- ```
82
-
83
- Before you start the installation you have to introduce the
84
- following environment variable, that is used in
85
- `packagedoc_config.json`:
86
-
87
- - `GENDOC_LATEXPATH` : path to `pdflatex` executable
88
-
89
- - Use the following command to install the
90
- **PythonExtensionsCollection**:
91
-
92
- ```
93
- setup.py install
94
- ```
95
-
96
- ## Package Documentation
97
-
98
- A detailed documentation of the **PythonExtensionsCollection** can be
99
- found here:
100
- [PythonExtensionsCollection.pdf](https://github.com/test-fullautomation/python-extensions-collection/blob/develop/PythonExtensionsCollection/PythonExtensionsCollection.pdf)
101
-
102
- ## Feedback
103
-
104
- To give us a feedback, you can send an email to [Thomas
105
- Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
106
-
107
- In case you want to report a bug or request any interesting feature,
108
- please don\'t hesitate to raise a ticket.
109
-
110
- ## Maintainers
111
-
112
- [Holger Queckenstedt](mailto:Holger.Queckenstedt@de.bosch.com)
113
-
114
- [Thomas Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
115
-
116
- ## Contributors
117
-
118
- [Holger Queckenstedt](mailto:Holger.Queckenstedt@de.bosch.com)
119
-
120
- [Thomas Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
121
-
122
- ## License
123
-
124
- Copyright 2020-2024 Robert Bosch GmbH
125
-
126
- Licensed under the Apache License, Version 2.0 (the \"License\"); you
127
- may not use this file except in compliance with the License. You may
128
- obtain a copy of the License at
129
-
130
- > [![License: Apache
131
- > v2](https://img.shields.io/pypi/l/robotframework.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
132
-
133
- Unless required by applicable law or agreed to in writing, software
134
- distributed under the License is distributed on an \"AS IS\" BASIS,
135
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
136
- See the License for the specific language governing permissions and
137
- limitations under the License.
138
-
139
-
@@ -1,18 +0,0 @@
1
- PythonExtensionsCollection/PythonExtensionsCollection.pdf,sha256=cqXo9geIh3Zq28yep8xlqPVic26qdyCXpcz9kfrtA6Q,288293
2
- PythonExtensionsCollection/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
3
- PythonExtensionsCollection/version.py,sha256=aJ-E9N0REHbut9QXDaG-kZKG45j8r4AtnJP96N38NxE,932
4
- PythonExtensionsCollection/Comparison/CComparison.py,sha256=NKBdHlWwMGk52UwrCWIG-rRTYv6W7_Q_pPr9vyfHcMA,12553
5
- PythonExtensionsCollection/Comparison/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
6
- PythonExtensionsCollection/File/CFile.py,sha256=ykQbZnmaKCXluQbm7T5sLODUFfVnBgB19LwgGp6iEP0,36383
7
- PythonExtensionsCollection/File/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
8
- PythonExtensionsCollection/Folder/CFolder.py,sha256=0991d_OXQKG8FL0AGBrouApsgyLmithwaokhTKvQ6q0,15986
9
- PythonExtensionsCollection/Folder/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
10
- PythonExtensionsCollection/String/CString.py,sha256=OyMtfYf89DyfPqzS_Y3Nw2lsMmzv324Pagx6SH6IhiI,38424
11
- PythonExtensionsCollection/String/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
12
- PythonExtensionsCollection/Utils/CUtils.py,sha256=EhVrSMeBWSBuD6ewbuMVtU7CumHP4eyDoSukGw5PHUw,15976
13
- PythonExtensionsCollection/Utils/__init__.py,sha256=a6qP310WpO1pwWYLuGFyhneeD55p6HV4VlQ7RdK4Brw,596
14
- PythonExtensionsCollection-0.16.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
- PythonExtensionsCollection-0.16.0.dist-info/METADATA,sha256=XqB5eKtNuNoT4K1cFjNpaKW0o83TKxQ4MUuXJ4vkupw,4549
16
- PythonExtensionsCollection-0.16.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
17
- PythonExtensionsCollection-0.16.0.dist-info/top_level.txt,sha256=xv5w-C3GQkdbxctBNzEqPfWvpJ1kpAaHBe3TEdGcozQ,27
18
- PythonExtensionsCollection-0.16.0.dist-info/RECORD,,