PyFunceble-dev 4.3.0a16__py3-none-any.whl → 4.3.0a18__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.
- PyFunceble/cli/processes/workers/base.py +1 -1
- PyFunceble/cli/system/launcher.py +11 -6
- PyFunceble/cli/utils/version.py +2 -2
- PyFunceble/helpers/download.py +14 -9
- PyFunceble/storage.py +1 -1
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/METADATA +105 -105
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/RECORD +11 -11
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/WHEEL +1 -1
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/LICENSE +0 -0
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/entry_points.txt +0 -0
- {pyfunceble_dev-4.3.0a16.dist-info → pyfunceble_dev-4.3.0a18.dist-info}/top_level.txt +0 -0
@@ -1090,10 +1090,16 @@ class SystemLauncher(SystemBase):
|
|
1090
1090
|
Sends our stop signal and wait until all managers are finished.
|
1091
1091
|
"""
|
1092
1092
|
|
1093
|
-
#
|
1094
|
-
#
|
1095
|
-
#
|
1096
|
-
|
1093
|
+
# We start the termination process of the tester.
|
1094
|
+
#
|
1095
|
+
# Please note that we do not explicitly wait for the tester to terminate
|
1096
|
+
# through the `wait` method. The reason is that the `terminate` method
|
1097
|
+
# will wait for the tester to finish before terminating itself.
|
1098
|
+
#
|
1099
|
+
# Please also note that any process depending on the tester will be
|
1100
|
+
# terminated after the tester is done because we are setting the
|
1101
|
+
# `spread_stop_signal` # attribute to `True` (cf: see __init__ method).
|
1102
|
+
self.tester_process_manager.terminate()
|
1097
1103
|
|
1098
1104
|
if self.miner_process_manager:
|
1099
1105
|
self.miner_process_manager.wait()
|
@@ -1105,8 +1111,7 @@ class SystemLauncher(SystemBase):
|
|
1105
1111
|
# From here, we are sure that every test and files are produced.
|
1106
1112
|
# We now format the generated file(s).
|
1107
1113
|
self.dir_files_sorter_process_manager.start()
|
1108
|
-
self.dir_files_sorter_process_manager.
|
1109
|
-
self.dir_files_sorter_process_manager.wait()
|
1114
|
+
self.dir_files_sorter_process_manager.terminate()
|
1110
1115
|
except AssertionError:
|
1111
1116
|
# Example: Already started previously.
|
1112
1117
|
pass
|
PyFunceble/cli/utils/version.py
CHANGED
@@ -55,7 +55,6 @@ import sys
|
|
55
55
|
from datetime import datetime, timezone
|
56
56
|
|
57
57
|
import colorama
|
58
|
-
import requests
|
59
58
|
from box import Box
|
60
59
|
|
61
60
|
import PyFunceble.cli.storage
|
@@ -65,6 +64,7 @@ from PyFunceble.cli.utils.stdout import print_single_line
|
|
65
64
|
from PyFunceble.converter.internal_url import InternalUrlConverter
|
66
65
|
from PyFunceble.helpers.dict import DictHelper
|
67
66
|
from PyFunceble.helpers.download import DownloadHelper
|
67
|
+
from PyFunceble.helpers.exceptions import UnableToDownload
|
68
68
|
from PyFunceble.utils.version import VersionUtility
|
69
69
|
|
70
70
|
|
@@ -86,7 +86,7 @@ def get_upstream_version() -> Box:
|
|
86
86
|
else True
|
87
87
|
),
|
88
88
|
).download_text()
|
89
|
-
except
|
89
|
+
except UnableToDownload:
|
90
90
|
response = "{}"
|
91
91
|
|
92
92
|
return Box(
|
PyFunceble/helpers/download.py
CHANGED
@@ -363,16 +363,21 @@ class DownloadHelper:
|
|
363
363
|
:raise UnableToDownload: When could not unable to download the URL.
|
364
364
|
"""
|
365
365
|
|
366
|
-
|
366
|
+
try:
|
367
|
+
req = self.session.get(self.url, verify=self.certificate_validation)
|
367
368
|
|
368
|
-
|
369
|
-
|
369
|
+
if req.status_code == 200:
|
370
|
+
response = req.text
|
370
371
|
|
371
|
-
|
372
|
-
|
372
|
+
if destination and isinstance(destination, str):
|
373
|
+
FileHelper(destination).write(req.text, overwrite=True)
|
373
374
|
|
374
|
-
|
375
|
+
return response
|
375
376
|
|
376
|
-
|
377
|
-
|
378
|
-
|
377
|
+
raise PyFunceble.helpers.exceptions.UnableToDownload(
|
378
|
+
f"{req.url} (retries: {self.retries} | status code: {req.status_code})"
|
379
|
+
)
|
380
|
+
except requests.exceptions.RequestException as exception:
|
381
|
+
raise PyFunceble.helpers.exceptions.UnableToDownload(
|
382
|
+
f"{self.url} (could not resolve?)"
|
383
|
+
) from exception
|
PyFunceble/storage.py
CHANGED
@@ -60,7 +60,7 @@ from dotenv import load_dotenv
|
|
60
60
|
from PyFunceble.storage_facility import get_config_directory
|
61
61
|
|
62
62
|
PROJECT_NAME: str = "PyFunceble"
|
63
|
-
PROJECT_VERSION: str = "4.3.
|
63
|
+
PROJECT_VERSION: str = "4.3.0a18.dev (Blue Duckling: Tulip)"
|
64
64
|
|
65
65
|
DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
|
66
66
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: PyFunceble-dev
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.0a18
|
4
4
|
Summary: The tool to check the availability or syntax of domain, IP or URL.
|
5
5
|
Home-page: https://github.com/funilrys/PyFunceble
|
6
6
|
Author: funilrys
|
@@ -22,176 +22,176 @@ Classifier: License :: OSI Approved
|
|
22
22
|
Requires-Python: >=3.9, <4
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: requests[socks]<3
|
26
|
-
Requires-Dist: python-box[all]~=6.0.0
|
27
|
-
Requires-Dist: packaging
|
28
25
|
Requires-Dist: SQLAlchemy~=2.0
|
29
26
|
Requires-Dist: colorama
|
30
|
-
Requires-Dist:
|
27
|
+
Requires-Dist: requests[socks]<3
|
28
|
+
Requires-Dist: shtab
|
31
29
|
Requires-Dist: domain2idna~=1.12.0
|
32
30
|
Requires-Dist: PyMySQL
|
33
|
-
Requires-Dist:
|
34
|
-
Requires-Dist: dnspython[DOH]~=2.6.0
|
31
|
+
Requires-Dist: setuptools>=65.5.1
|
35
32
|
Requires-Dist: PyYAML
|
33
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10
|
36
34
|
Requires-Dist: inflection
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
35
|
+
Requires-Dist: python-box[all]~=6.0.0
|
36
|
+
Requires-Dist: packaging
|
37
|
+
Requires-Dist: python-dotenv
|
38
|
+
Requires-Dist: dnspython[DOH]~=2.6.0
|
39
|
+
Requires-Dist: alembic
|
40
40
|
Provides-Extra: docs
|
41
|
-
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
|
42
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
|
43
|
-
Requires-Dist: zipp>=3.19.1; extra == "docs"
|
44
|
-
Requires-Dist: mkdocs-material~=9.5; extra == "docs"
|
45
|
-
Requires-Dist: mkdocs~=1.5; extra == "docs"
|
46
|
-
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
|
47
|
-
Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
|
48
41
|
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
|
49
42
|
Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
|
50
43
|
Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
|
44
|
+
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
|
45
|
+
Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
|
46
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
|
51
47
|
Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
|
48
|
+
Requires-Dist: mkdocs-material~=9.5; extra == "docs"
|
49
|
+
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
|
50
|
+
Requires-Dist: zipp>=3.19.1; extra == "docs"
|
51
|
+
Requires-Dist: mkdocs~=1.5; extra == "docs"
|
52
52
|
Provides-Extra: dev
|
53
53
|
Requires-Dist: pylint; extra == "dev"
|
54
|
-
Requires-Dist: black; extra == "dev"
|
55
54
|
Requires-Dist: isort; extra == "dev"
|
55
|
+
Requires-Dist: black; extra == "dev"
|
56
56
|
Requires-Dist: flake8; extra == "dev"
|
57
57
|
Provides-Extra: test
|
58
58
|
Requires-Dist: coverage; extra == "test"
|
59
59
|
Requires-Dist: tox; extra == "test"
|
60
60
|
Provides-Extra: psql
|
61
|
-
Requires-Dist: requests[socks]<3; extra == "psql"
|
62
|
-
Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
|
63
|
-
Requires-Dist: packaging; extra == "psql"
|
64
61
|
Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
|
65
62
|
Requires-Dist: colorama; extra == "psql"
|
66
|
-
Requires-Dist:
|
63
|
+
Requires-Dist: requests[socks]<3; extra == "psql"
|
64
|
+
Requires-Dist: shtab; extra == "psql"
|
67
65
|
Requires-Dist: domain2idna~=1.12.0; extra == "psql"
|
68
66
|
Requires-Dist: PyMySQL; extra == "psql"
|
69
|
-
Requires-Dist:
|
70
|
-
Requires-Dist: alembic; extra == "psql"
|
71
|
-
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
|
67
|
+
Requires-Dist: setuptools>=65.5.1; extra == "psql"
|
72
68
|
Requires-Dist: PyYAML; extra == "psql"
|
69
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql"
|
73
70
|
Requires-Dist: inflection; extra == "psql"
|
74
|
-
Requires-Dist:
|
75
|
-
Requires-Dist:
|
76
|
-
Requires-Dist:
|
71
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
|
72
|
+
Requires-Dist: packaging; extra == "psql"
|
73
|
+
Requires-Dist: psycopg2; extra == "psql"
|
74
|
+
Requires-Dist: python-dotenv; extra == "psql"
|
75
|
+
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
|
76
|
+
Requires-Dist: alembic; extra == "psql"
|
77
77
|
Provides-Extra: psql-binary
|
78
|
-
Requires-Dist: requests[socks]<3; extra == "psql-binary"
|
79
|
-
Requires-Dist: psycopg2-binary; extra == "psql-binary"
|
80
|
-
Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
|
81
|
-
Requires-Dist: packaging; extra == "psql-binary"
|
82
78
|
Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
|
83
79
|
Requires-Dist: colorama; extra == "psql-binary"
|
84
|
-
Requires-Dist:
|
80
|
+
Requires-Dist: requests[socks]<3; extra == "psql-binary"
|
81
|
+
Requires-Dist: shtab; extra == "psql-binary"
|
85
82
|
Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
|
86
83
|
Requires-Dist: PyMySQL; extra == "psql-binary"
|
87
|
-
Requires-Dist:
|
88
|
-
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
|
84
|
+
Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
|
89
85
|
Requires-Dist: PyYAML; extra == "psql-binary"
|
86
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql-binary"
|
90
87
|
Requires-Dist: inflection; extra == "psql-binary"
|
91
|
-
Requires-Dist:
|
92
|
-
Requires-Dist:
|
93
|
-
Requires-Dist:
|
88
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
|
89
|
+
Requires-Dist: packaging; extra == "psql-binary"
|
90
|
+
Requires-Dist: psycopg2-binary; extra == "psql-binary"
|
91
|
+
Requires-Dist: python-dotenv; extra == "psql-binary"
|
92
|
+
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
|
93
|
+
Requires-Dist: alembic; extra == "psql-binary"
|
94
94
|
Provides-Extra: postgresql
|
95
|
-
Requires-Dist: requests[socks]<3; extra == "postgresql"
|
96
|
-
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
|
97
|
-
Requires-Dist: packaging; extra == "postgresql"
|
98
95
|
Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
|
99
96
|
Requires-Dist: colorama; extra == "postgresql"
|
100
|
-
Requires-Dist:
|
97
|
+
Requires-Dist: requests[socks]<3; extra == "postgresql"
|
98
|
+
Requires-Dist: shtab; extra == "postgresql"
|
101
99
|
Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
|
102
100
|
Requires-Dist: PyMySQL; extra == "postgresql"
|
103
|
-
Requires-Dist:
|
104
|
-
Requires-Dist: alembic; extra == "postgresql"
|
105
|
-
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
|
101
|
+
Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
|
106
102
|
Requires-Dist: PyYAML; extra == "postgresql"
|
103
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql"
|
107
104
|
Requires-Dist: inflection; extra == "postgresql"
|
108
|
-
Requires-Dist:
|
109
|
-
Requires-Dist:
|
110
|
-
Requires-Dist:
|
105
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
|
106
|
+
Requires-Dist: packaging; extra == "postgresql"
|
107
|
+
Requires-Dist: psycopg2; extra == "postgresql"
|
108
|
+
Requires-Dist: python-dotenv; extra == "postgresql"
|
109
|
+
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
|
110
|
+
Requires-Dist: alembic; extra == "postgresql"
|
111
111
|
Provides-Extra: postgresql-binary
|
112
|
-
Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
|
113
|
-
Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
|
114
|
-
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
|
115
|
-
Requires-Dist: packaging; extra == "postgresql-binary"
|
116
112
|
Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
|
117
113
|
Requires-Dist: colorama; extra == "postgresql-binary"
|
118
|
-
Requires-Dist:
|
114
|
+
Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
|
115
|
+
Requires-Dist: shtab; extra == "postgresql-binary"
|
119
116
|
Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
|
120
117
|
Requires-Dist: PyMySQL; extra == "postgresql-binary"
|
121
|
-
Requires-Dist:
|
122
|
-
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
|
118
|
+
Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
|
123
119
|
Requires-Dist: PyYAML; extra == "postgresql-binary"
|
120
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql-binary"
|
124
121
|
Requires-Dist: inflection; extra == "postgresql-binary"
|
125
|
-
Requires-Dist:
|
126
|
-
Requires-Dist:
|
127
|
-
Requires-Dist:
|
122
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
|
123
|
+
Requires-Dist: packaging; extra == "postgresql-binary"
|
124
|
+
Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
|
125
|
+
Requires-Dist: python-dotenv; extra == "postgresql-binary"
|
126
|
+
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
|
127
|
+
Requires-Dist: alembic; extra == "postgresql-binary"
|
128
128
|
Provides-Extra: full
|
129
|
-
Requires-Dist:
|
129
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "full"
|
130
|
+
Requires-Dist: colorama; extra == "full"
|
131
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "full"
|
130
132
|
Requires-Dist: python-box[all]~=6.0.0; extra == "full"
|
131
|
-
Requires-Dist:
|
133
|
+
Requires-Dist: packaging; extra == "full"
|
132
134
|
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
|
133
|
-
Requires-Dist:
|
134
|
-
Requires-Dist:
|
135
|
+
Requires-Dist: alembic; extra == "full"
|
136
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
|
137
|
+
Requires-Dist: inflection; extra == "full"
|
138
|
+
Requires-Dist: black; extra == "full"
|
139
|
+
Requires-Dist: pylint; extra == "full"
|
140
|
+
Requires-Dist: python-dotenv; extra == "full"
|
141
|
+
Requires-Dist: mkdocs~=1.5; extra == "full"
|
142
|
+
Requires-Dist: tox; extra == "full"
|
143
|
+
Requires-Dist: requests[socks]<3; extra == "full"
|
135
144
|
Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
|
136
|
-
Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
|
137
145
|
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
|
146
|
+
Requires-Dist: PyYAML; extra == "full"
|
147
|
+
Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
|
148
|
+
Requires-Dist: mkdocs-material~=9.5; extra == "full"
|
138
149
|
Requires-Dist: isort; extra == "full"
|
139
|
-
Requires-Dist: mkdocs~=1.5; extra == "full"
|
140
150
|
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
|
141
|
-
Requires-Dist: PyMySQL; extra == "full"
|
142
|
-
Requires-Dist: alembic; extra == "full"
|
143
|
-
Requires-Dist: PyYAML; extra == "full"
|
144
|
-
Requires-Dist: tox; extra == "full"
|
145
|
-
Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "full"
|
146
|
-
Requires-Dist: black; extra == "full"
|
147
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
|
148
151
|
Requires-Dist: zipp>=3.19.1; extra == "full"
|
149
|
-
Requires-Dist:
|
150
|
-
Requires-Dist:
|
151
|
-
Requires-Dist:
|
152
|
-
Requires-Dist: setuptools>=65.5.1; extra == "full"
|
152
|
+
Requires-Dist: flake8; extra == "full"
|
153
|
+
Requires-Dist: pymdown-extensions~=10.9; extra == "full"
|
154
|
+
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
|
153
155
|
Requires-Dist: shtab; extra == "full"
|
154
|
-
Requires-Dist:
|
155
|
-
Requires-Dist:
|
156
|
-
Requires-Dist: packaging; extra == "full"
|
157
|
-
Requires-Dist: colorama; extra == "full"
|
158
|
-
Requires-Dist: domain2idna~=1.12.0; extra == "full"
|
156
|
+
Requires-Dist: PyMySQL; extra == "full"
|
157
|
+
Requires-Dist: setuptools>=65.5.1; extra == "full"
|
159
158
|
Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
|
160
|
-
Requires-Dist:
|
159
|
+
Requires-Dist: coverage; extra == "full"
|
160
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "full"
|
161
161
|
Provides-Extra: all
|
162
|
-
Requires-Dist:
|
162
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "all"
|
163
|
+
Requires-Dist: colorama; extra == "all"
|
164
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "all"
|
163
165
|
Requires-Dist: python-box[all]~=6.0.0; extra == "all"
|
164
|
-
Requires-Dist:
|
166
|
+
Requires-Dist: packaging; extra == "all"
|
165
167
|
Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
|
166
|
-
Requires-Dist:
|
167
|
-
Requires-Dist:
|
168
|
+
Requires-Dist: alembic; extra == "all"
|
169
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
|
170
|
+
Requires-Dist: inflection; extra == "all"
|
171
|
+
Requires-Dist: black; extra == "all"
|
172
|
+
Requires-Dist: pylint; extra == "all"
|
173
|
+
Requires-Dist: python-dotenv; extra == "all"
|
174
|
+
Requires-Dist: mkdocs~=1.5; extra == "all"
|
175
|
+
Requires-Dist: psycopg2-binary; extra == "all"
|
176
|
+
Requires-Dist: tox; extra == "all"
|
177
|
+
Requires-Dist: requests[socks]<3; extra == "all"
|
168
178
|
Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
|
169
|
-
Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
|
170
179
|
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
|
180
|
+
Requires-Dist: PyYAML; extra == "all"
|
181
|
+
Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
|
182
|
+
Requires-Dist: mkdocs-material~=9.5; extra == "all"
|
171
183
|
Requires-Dist: isort; extra == "all"
|
172
|
-
Requires-Dist: mkdocs~=1.5; extra == "all"
|
173
184
|
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
|
174
|
-
Requires-Dist: PyMySQL; extra == "all"
|
175
|
-
Requires-Dist: alembic; extra == "all"
|
176
|
-
Requires-Dist: PyYAML; extra == "all"
|
177
|
-
Requires-Dist: tox; extra == "all"
|
178
|
-
Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "all"
|
179
|
-
Requires-Dist: black; extra == "all"
|
180
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
|
181
185
|
Requires-Dist: zipp>=3.19.1; extra == "all"
|
182
|
-
Requires-Dist:
|
183
|
-
Requires-Dist:
|
184
|
-
Requires-Dist:
|
185
|
-
Requires-Dist: inflection; extra == "all"
|
186
|
-
Requires-Dist: setuptools>=65.5.1; extra == "all"
|
186
|
+
Requires-Dist: flake8; extra == "all"
|
187
|
+
Requires-Dist: pymdown-extensions~=10.9; extra == "all"
|
188
|
+
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
|
187
189
|
Requires-Dist: shtab; extra == "all"
|
188
|
-
Requires-Dist:
|
189
|
-
Requires-Dist:
|
190
|
-
Requires-Dist: packaging; extra == "all"
|
191
|
-
Requires-Dist: colorama; extra == "all"
|
192
|
-
Requires-Dist: domain2idna~=1.12.0; extra == "all"
|
190
|
+
Requires-Dist: PyMySQL; extra == "all"
|
191
|
+
Requires-Dist: setuptools>=65.5.1; extra == "all"
|
193
192
|
Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
|
194
|
-
Requires-Dist:
|
193
|
+
Requires-Dist: coverage; extra == "all"
|
194
|
+
Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "all"
|
195
195
|
Dynamic: author
|
196
196
|
Dynamic: author-email
|
197
197
|
Dynamic: classifier
|
@@ -4,7 +4,7 @@ PyFunceble/facility.py,sha256=n4JEKAkrVus3qTfMAr9jxDvFbyhfIKn8yz4_4KDzkHk,2632
|
|
4
4
|
PyFunceble/factory.py,sha256=N23qpemMX2Qm934Ds7hfA9oSM3KDwONbTop-JjDpbQw,2582
|
5
5
|
PyFunceble/logger.py,sha256=ATiCxdpzH3ht5NHHQCY87-_8vHSe6tZ7P6y2QwAgn6g,17617
|
6
6
|
PyFunceble/sessions.py,sha256=5zgaUjY_QiGSSH9IeMI8fP_g9Ypcn_1_-Cif623elK0,2574
|
7
|
-
PyFunceble/storage.py,sha256=
|
7
|
+
PyFunceble/storage.py,sha256=xB67961ae3vFLDGvHT46S1DvTYtPuzFo8cbtmADPGi4,5402
|
8
8
|
PyFunceble/storage_facility.py,sha256=hK7eoCtFdBaMFcGsEMEU-mNGxr0kqneyVJSuSgB4CuM,4825
|
9
9
|
PyFunceble/checker/__init__.py,sha256=jv0IWODVKAOBFq9hK8ZUMXMUV7JN_6CKUSzKCH-MOD8,2436
|
10
10
|
PyFunceble/checker/base.py,sha256=ycsjjZJ9L03zt-h0Ze8bBiy45JSSKYizBOSSESd_2RE,13621
|
@@ -122,7 +122,7 @@ PyFunceble/cli/processes/miner.py,sha256=R109IEUaz4fE-M6RI1DwvSUfr3wCVFjgnsNn3E4
|
|
122
122
|
PyFunceble/cli/processes/producer.py,sha256=mNesJLl0ZBbX71N7uCKZxtuxfaXlBodMyoo23oi2lEc,2784
|
123
123
|
PyFunceble/cli/processes/tester.py,sha256=_3XSsuvohdTswpUK5QTeFdrj0PtSbNLP8hyYwZEzRXo,2768
|
124
124
|
PyFunceble/cli/processes/workers/__init__.py,sha256=KvOYoKg-cD8_EiiORHB9LzRlqYJmRIMzGpj_HrP87dY,2450
|
125
|
-
PyFunceble/cli/processes/workers/base.py,sha256=
|
125
|
+
PyFunceble/cli/processes/workers/base.py,sha256=7CSzFIEzxvLF-kz67Rb1ioT1i_XJ66I-WEY3XT170V4,4795
|
126
126
|
PyFunceble/cli/processes/workers/chancy_producer.py,sha256=4smr_itDZnY0Ow-BCe0O2lKImvS55v7EIaPAVD9rxLI,4359
|
127
127
|
PyFunceble/cli/processes/workers/chancy_tester.py,sha256=xRLll04VWQPw5y6D85LtJdjppsg0f4uowX_HQOzfsFo,3701
|
128
128
|
PyFunceble/cli/processes/workers/dir_files_sorter.py,sha256=zWFSspjVkqks23NYWTYLXPcYbQQ2GiZsWgklSyH2T3Y,6051
|
@@ -139,13 +139,13 @@ PyFunceble/cli/scripts/public_suffix.py,sha256=Upwsp0WIzVE6YyBdS70rTidiLLM7hEyMD
|
|
139
139
|
PyFunceble/cli/system/__init__.py,sha256=wBriuC2hLkzZzx9xH2Su2K-4pRaXDSv4Y-soVT10cdc,2514
|
140
140
|
PyFunceble/cli/system/base.py,sha256=MIrGkm8YvE0oBk3bWSs_7oVkAXAOBlm1vy7m4eWL1S4,4881
|
141
141
|
PyFunceble/cli/system/integrator.py,sha256=d39_-Jdtr7HIyYyT5A3yu-XznnbSo9Vgf25bg_c1kEI,12339
|
142
|
-
PyFunceble/cli/system/launcher.py,sha256=
|
142
|
+
PyFunceble/cli/system/launcher.py,sha256=FcN62EyFz8YhLRPGI7fa5f-EW4Fsb68SR3R7kwLmpPU,48137
|
143
143
|
PyFunceble/cli/utils/__init__.py,sha256=yu_2nPAZ-16yYYnUIoS0bbMwscMgH0i5dB2CdcxRU_I,2457
|
144
144
|
PyFunceble/cli/utils/ascii_logo.py,sha256=sTtpa8OxRkGgAy_gMB8ubINyZ3ExkDna7WuN4fpa3EI,4228
|
145
145
|
PyFunceble/cli/utils/sort.py,sha256=fPaVucMT6xzGq27EvMtgTYHA7wC3WVez3mBQuH-NwyE,4367
|
146
146
|
PyFunceble/cli/utils/stdout.py,sha256=qDQYFxn0HIFvhEY-Lo7xrypUGIMdDggqvg-8IEsXcwU,5630
|
147
147
|
PyFunceble/cli/utils/testing.py,sha256=FrnrdlHFsbILIpnsXcOP5_TSCpkQsrRByuwpirCaTIo,10190
|
148
|
-
PyFunceble/cli/utils/version.py,sha256=
|
148
|
+
PyFunceble/cli/utils/version.py,sha256=dk4xImLNBvDM3PMhqg3h7LVDBDMUdatmEsr4o5dSM6s,13921
|
149
149
|
PyFunceble/config/__init__.py,sha256=RZVudb1KuB_KZ_QIKg7EyHXMDm8ULPwT63ZcOkbC9Js,2460
|
150
150
|
PyFunceble/config/compare.py,sha256=J59CcnlQ0DTIqCDJyTSm3OJ6lpMNbY0HDJfs0TJn3_w,13637
|
151
151
|
PyFunceble/config/loader.py,sha256=CGU22HYhUHjwNgUpWOys7VCqGB9PPYVoBKXqpc6Ck7Q,22870
|
@@ -235,7 +235,7 @@ PyFunceble/helpers/__init__.py,sha256=D77SsVeaqvQ-vcW-3jFbJ3bkiPZlP1tlk0XD5q-wUO
|
|
235
235
|
PyFunceble/helpers/command.py,sha256=pDFY8RxauJ81Bat0baf5q8p59U3HkRIo6IV-o-4uAnI,7636
|
236
236
|
PyFunceble/helpers/dict.py,sha256=wNTd1BVzlPvwoHFKxP41sL4IJMaPGcmSSaANXxK2AnA,13775
|
237
237
|
PyFunceble/helpers/directory.py,sha256=7qCA7EkbRpW2my2Piz_e_kIyN_PyIX29RJ5a6Z-siIc,5997
|
238
|
-
PyFunceble/helpers/download.py,sha256=
|
238
|
+
PyFunceble/helpers/download.py,sha256=VAuOiQp6o-Dsya-Q9eHP8_jHs3BGH13LjZud0N3rMeY,11528
|
239
239
|
PyFunceble/helpers/environment_variable.py,sha256=rvKvkd7aHT5NLB5pyDHaXVvLAxfVN-_qTmN0OXAWm2E,7319
|
240
240
|
PyFunceble/helpers/exceptions.py,sha256=13jyf9Zni4wi50W-tf874-pv-1thBEJYOxw7E1-NlPQ,2766
|
241
241
|
PyFunceble/helpers/file.py,sha256=F3uZamVYMaLqkZLQ9U3GyieZPUEtFr4gNXRmUWOS7bQ,6793
|
@@ -276,9 +276,9 @@ PyFunceble/utils/__init__.py,sha256=AmqnVKTnt-IjOH2yhJzB6rrQbCy9oGSymXXk447rLd0,
|
|
276
276
|
PyFunceble/utils/platform.py,sha256=OSXmgySSiHJNOaFK5yvLJFB5QARWI45iqQARZx9F1D4,3912
|
277
277
|
PyFunceble/utils/profile.py,sha256=gk4wSFjwt6nj2ytvE2EtJJy16W7NsJwNu1HudRDngEw,4558
|
278
278
|
PyFunceble/utils/version.py,sha256=WEQhJcfsvhoUStFK63cLVTlTtAMW1-EZUnfH5N4AkOc,8377
|
279
|
-
pyfunceble_dev-4.3.
|
280
|
-
pyfunceble_dev-4.3.
|
281
|
-
pyfunceble_dev-4.3.
|
282
|
-
pyfunceble_dev-4.3.
|
283
|
-
pyfunceble_dev-4.3.
|
284
|
-
pyfunceble_dev-4.3.
|
279
|
+
pyfunceble_dev-4.3.0a18.dist-info/LICENSE,sha256=rE8fp-5WWAbUGya8mg2fMTIkcw3fPA1PNG86URxH3U4,10802
|
280
|
+
pyfunceble_dev-4.3.0a18.dist-info/METADATA,sha256=zezBcw36PsRSrqW1MIz_Atmn5yt0XODIz5qdp9M7jGA,47444
|
281
|
+
pyfunceble_dev-4.3.0a18.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
282
|
+
pyfunceble_dev-4.3.0a18.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
|
283
|
+
pyfunceble_dev-4.3.0a18.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
|
284
|
+
pyfunceble_dev-4.3.0a18.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|