atomicshop 2.16.6__py3-none-any.whl → 2.16.8__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 atomicshop might be problematic. Click here for more details.
- atomicshop/__init__.py +1 -1
- atomicshop/datetimes.py +1 -1
- atomicshop/file_io/file_io.py +1 -7
- atomicshop/python_file_patcher.py +1 -1
- {atomicshop-2.16.6.dist-info → atomicshop-2.16.8.dist-info}/METADATA +1 -1
- {atomicshop-2.16.6.dist-info → atomicshop-2.16.8.dist-info}/RECORD +10 -10
- /atomicshop/archiver/{archiver.py → shutils.py} +0 -0
- {atomicshop-2.16.6.dist-info → atomicshop-2.16.8.dist-info}/LICENSE.txt +0 -0
- {atomicshop-2.16.6.dist-info → atomicshop-2.16.8.dist-info}/WHEEL +0 -0
- {atomicshop-2.16.6.dist-info → atomicshop-2.16.8.dist-info}/top_level.txt +0 -0
atomicshop/__init__.py
CHANGED
atomicshop/datetimes.py
CHANGED
atomicshop/file_io/file_io.py
CHANGED
|
@@ -78,7 +78,6 @@ def write_file(
|
|
|
78
78
|
file_path: str,
|
|
79
79
|
file_mode: str = 'w',
|
|
80
80
|
encoding: str = None,
|
|
81
|
-
convert_list_to_string: bool = False,
|
|
82
81
|
file_object=None,
|
|
83
82
|
**kwargs) -> None:
|
|
84
83
|
"""
|
|
@@ -90,18 +89,13 @@ def write_file(
|
|
|
90
89
|
Default is 'w'.
|
|
91
90
|
:param encoding: string, write the file with encoding. Example: 'utf-8'. 'None' is default, since it is default
|
|
92
91
|
in 'open()' function.
|
|
93
|
-
:param convert_list_to_string: Boolean, if True, the list of strings will be converted to one string with '\n'
|
|
94
|
-
separator between the lines.
|
|
95
92
|
:param file_object: file object of the 'open()' function in the decorator. Decorator executes the 'with open()'
|
|
96
93
|
statement and passes to this function. That's why the default is 'None', since we get it from the decorator.
|
|
97
94
|
:return:
|
|
98
95
|
"""
|
|
99
96
|
|
|
100
97
|
if isinstance(content, list):
|
|
101
|
-
|
|
102
|
-
content = '\n'.join(content)
|
|
103
|
-
else:
|
|
104
|
-
file_object.writelines(content)
|
|
98
|
+
file_object.writelines(content)
|
|
105
99
|
elif isinstance(content, str):
|
|
106
100
|
file_object.write(content)
|
|
107
101
|
# THis will happen if the content is bytes and the file mode is 'wb'.
|
|
@@ -113,4 +113,4 @@ def find_and_replace_in_file(
|
|
|
113
113
|
for index in found_string_indexes:
|
|
114
114
|
file_data[index] = file_data[index].replace(single_find.find_what, single_find.replace_to)
|
|
115
115
|
|
|
116
|
-
file_io.write_file(content=file_data, file_path=file_path, encoding=encoding
|
|
116
|
+
file_io.write_file(content=file_data, file_path=file_path, encoding=encoding)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
atomicshop/__init__.py,sha256=
|
|
1
|
+
atomicshop/__init__.py,sha256=CwKEkGifmzVjdQvwtmwaq54rVlYzkyLjH9YE3bBaYl0,123
|
|
2
2
|
atomicshop/_basics_temp.py,sha256=6cu2dd6r2dLrd1BRNcVDKTHlsHs_26Gpw8QS6v32lQ0,3699
|
|
3
3
|
atomicshop/_create_pdf_demo.py,sha256=Yi-PGZuMg0RKvQmLqVeLIZYadqEZwUm-4A9JxBl_vYA,3713
|
|
4
4
|
atomicshop/_patch_import.py,sha256=ENp55sKVJ0e6-4lBvZnpz9PQCt3Otbur7F6aXDlyje4,6334
|
|
@@ -8,7 +8,7 @@ atomicshop/command_line_processing.py,sha256=u5yT9Ger_cu7ni5ID0VFlRbVD46ARHeNC9t
|
|
|
8
8
|
atomicshop/config_init.py,sha256=BSxc2FhytQPv06g5z9wbAXuA6oYCAsAJLxu_mTExhwI,2491
|
|
9
9
|
atomicshop/console_output.py,sha256=AOSJjrRryE97PAGtgDL03IBtWSi02aNol8noDnW3k6M,4667
|
|
10
10
|
atomicshop/console_user_response.py,sha256=31HIy9QGXa7f-GVR8MzJauQ79E_ZqAeagF3Ks4GGdDU,3234
|
|
11
|
-
atomicshop/datetimes.py,sha256=
|
|
11
|
+
atomicshop/datetimes.py,sha256=IQZ66lmta-ZqxYbyHzm_9eugbJFSilXK1e0kfMgoXGg,18371
|
|
12
12
|
atomicshop/diff_check.py,sha256=Q9RCqRa-jEgo7Fujx08_JTuZ6qcgttMI6aNYB6zN9Ik,27173
|
|
13
13
|
atomicshop/dns.py,sha256=5WrAczISjtR9y2rUbqQ8QQxqSGqR5j8dXenUAW0O5Tc,6460
|
|
14
14
|
atomicshop/domains.py,sha256=Rxu6JhhMqFZRcoFs69IoEd1PtYca0lMCG6F1AomP7z4,3197
|
|
@@ -27,7 +27,7 @@ atomicshop/on_exit.py,sha256=Wf1iy2e0b0Zu7oRxrct3VkLdQ_x9B32-z_JerKTt9Z0,5493
|
|
|
27
27
|
atomicshop/pbtkmultifile_argparse.py,sha256=aEk8nhvoQVu-xyfZosK3ma17CwIgOjzO1erXXdjwtS4,4574
|
|
28
28
|
atomicshop/print_api.py,sha256=j0bZ9b2rFKCcr0TVx1ARraVKeEs6JaaSgIlBdndy1nI,11600
|
|
29
29
|
atomicshop/process.py,sha256=PeLvyixXaCfftdUF3oMbohI1L4MdLtvQVDx2V1Tz_Rk,16662
|
|
30
|
-
atomicshop/python_file_patcher.py,sha256
|
|
30
|
+
atomicshop/python_file_patcher.py,sha256=-uhbUX-um5k-If_XXuOfCr8wMzZ3QE6h9N8xGWw6W_o,5486
|
|
31
31
|
atomicshop/python_functions.py,sha256=zJg4ogUwECxrDD7xdDN5JikIUctITM5lsyabr_ZNsRw,4435
|
|
32
32
|
atomicshop/question_answer_engine.py,sha256=7nM6kGDSFjQNi87b87-kP9lYM0vTjBHn1rEQGNAfdGA,825
|
|
33
33
|
atomicshop/queues.py,sha256=Al0fdC3ZJmdKfv-PyBeIck9lnfLr82BYchvzr189gsI,640
|
|
@@ -74,10 +74,10 @@ atomicshop/addons/process_list/compiled/Win10x64/process_list.exp,sha256=cbvukIT
|
|
|
74
74
|
atomicshop/addons/process_list/compiled/Win10x64/process_list.lib,sha256=T2Ncs0MwKlAaCq8UKFMvfQAfcJdDx-nWiHVBfglrLIU,2112
|
|
75
75
|
atomicshop/archiver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
76
|
atomicshop/archiver/_search_in_zip.py,sha256=dd8qFSvIhcKmtnPj_uYNJFPmMwZp4tZys0kKgTw_ACw,8385
|
|
77
|
-
atomicshop/archiver/archiver.py,sha256=BomnK7zT-nQXA1z0i2R2aTv8eu88wPx7tf2HtOdbmEc,1280
|
|
78
77
|
atomicshop/archiver/search_in_archive.py,sha256=XAxa0QukkXZvPmKna8cpwBHLDEskRUtbgaW1eHvpn6w,10833
|
|
79
78
|
atomicshop/archiver/sevenz_app_w.py,sha256=BWcJb4f7jZEiETDBKyNLE0f5YLFPQx6B91_ObEIXWf8,3007
|
|
80
79
|
atomicshop/archiver/sevenzs.py,sha256=5i_C50-deC1Cz_GQdMGofV2jeMPbbGWAvih-QnA72cg,1370
|
|
80
|
+
atomicshop/archiver/shutils.py,sha256=BomnK7zT-nQXA1z0i2R2aTv8eu88wPx7tf2HtOdbmEc,1280
|
|
81
81
|
atomicshop/archiver/zips.py,sha256=JrAirzB94SelKq5M2ZUYASwqSSTJ2sxacKBOYeJ8VRQ,16979
|
|
82
82
|
atomicshop/basics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
83
|
atomicshop/basics/ansi_escape_codes.py,sha256=WtIkm-BjSZS5J5irDUdAMBNvdX-qXFZcTX98jcBMpJE,3140
|
|
@@ -115,7 +115,7 @@ atomicshop/etws/traces/trace_sysmon_process_creation.py,sha256=OM-bkK38uYMwWLZKN
|
|
|
115
115
|
atomicshop/file_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
116
|
atomicshop/file_io/csvs.py,sha256=oZiaIEd1q50ypNdd9mlHWb-f7HAdGa_D6jLd3T_4sWU,8777
|
|
117
117
|
atomicshop/file_io/docxs.py,sha256=rZnv2VMOvct6KBSQn-bHhwbKOi8886jB5u387flq-0E,5755
|
|
118
|
-
atomicshop/file_io/file_io.py,sha256=
|
|
118
|
+
atomicshop/file_io/file_io.py,sha256=q7t5zwxtWl9arbKxzKx0mWTG0OY3MOz9lTKEAHffvMk,6257
|
|
119
119
|
atomicshop/file_io/jsons.py,sha256=q9ZU8slBKnHLrtn3TnbK1qxrRpj5ZvCm6AlsFzoANjo,5303
|
|
120
120
|
atomicshop/file_io/tomls.py,sha256=ol8EvQPf9sryTmZUf1v55BYSUQ6ml7HVVBHpNKbsIlA,9768
|
|
121
121
|
atomicshop/file_io/xlsxs.py,sha256=v_dyg9GD4LqgWi6wA1QuWRZ8zG4ZwB6Dz52ytdcmmmI,2184
|
|
@@ -305,8 +305,8 @@ atomicshop/wrappers/socketw/socket_server_tester.py,sha256=SdchUf9qrPk1Rrat0RzvM
|
|
|
305
305
|
atomicshop/wrappers/socketw/socket_wrapper.py,sha256=g7f_8RkW80EZeQWNTqGYnfrQkgAI56T3SwWybq7ZsXg,28521
|
|
306
306
|
atomicshop/wrappers/socketw/ssl_base.py,sha256=k4V3gwkbq10MvOH4btU4onLX2GNOsSfUAdcHmL1rpVE,2274
|
|
307
307
|
atomicshop/wrappers/socketw/statistics_csv.py,sha256=Jc0D12crkKRaqoCRQ-2Mz1zm6n4UUx9dXakf-N2TYWA,3065
|
|
308
|
-
atomicshop-2.16.
|
|
309
|
-
atomicshop-2.16.
|
|
310
|
-
atomicshop-2.16.
|
|
311
|
-
atomicshop-2.16.
|
|
312
|
-
atomicshop-2.16.
|
|
308
|
+
atomicshop-2.16.8.dist-info/LICENSE.txt,sha256=lLU7EYycfYcK2NR_1gfnhnRC8b8ccOTElACYplgZN88,1094
|
|
309
|
+
atomicshop-2.16.8.dist-info/METADATA,sha256=TgVDOThqAGihHU2xuw_DAvH9CxmTybC2tzNZRv8NEt0,10502
|
|
310
|
+
atomicshop-2.16.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
311
|
+
atomicshop-2.16.8.dist-info/top_level.txt,sha256=EgKJB-7xcrAPeqTRF2laD_Np2gNGYkJkd4OyXqpJphA,11
|
|
312
|
+
atomicshop-2.16.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|