PyFunceble-dev 4.3.0a17__py3-none-any.whl → 4.3.0a19__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.
@@ -55,6 +55,8 @@ License:
55
55
  import multiprocessing
56
56
  from typing import Optional
57
57
 
58
+ import sqlalchemy.exc
59
+
58
60
  import PyFunceble.cli.facility
59
61
  import PyFunceble.cli.factory
60
62
  import PyFunceble.ext.process_manager
@@ -79,7 +81,10 @@ class WorkerBase(PyFunceble.ext.process_manager.WorkerCore):
79
81
 
80
82
  def __del__(self) -> None:
81
83
  if self.db_session is not None:
82
- self.db_session.close()
84
+ try:
85
+ self.db_session.close()
86
+ except sqlalchemy.exc.OperationalError:
87
+ pass
83
88
 
84
89
  def __post_init__(self) -> None:
85
90
  self.requester = Requester(config=PyFunceble.storage.CONFIGURATION)
@@ -66,6 +66,7 @@ from typing import List, Optional, Union
66
66
 
67
67
  import colorama
68
68
  import domain2idna
69
+ import sqlalchemy.exc
69
70
  from sqlalchemy.orm import Session
70
71
 
71
72
  import PyFunceble.checker.utils.whois
@@ -312,7 +313,10 @@ class SystemLauncher(SystemBase):
312
313
 
313
314
  def __del__(self) -> None:
314
315
  if self.db_session is not None:
315
- self.db_session.close()
316
+ try:
317
+ self.db_session.close()
318
+ except sqlalchemy.exc.OperationalError:
319
+ pass
316
320
 
317
321
  @staticmethod
318
322
  def print_home_ascii() -> None:
@@ -1090,10 +1094,16 @@ class SystemLauncher(SystemBase):
1090
1094
  Sends our stop signal and wait until all managers are finished.
1091
1095
  """
1092
1096
 
1093
- # The idea out here is to propate the stop signal.
1094
- # Meaning that the tester will share it's stop signal to all
1095
- # subsequencial queues after all submitted tasks are done.
1096
- self.tester_process_manager.push_stop_signal(source_worker="main")
1097
+ # We start the termination process of the tester.
1098
+ #
1099
+ # Please note that we do not explicitly wait for the tester to terminate
1100
+ # through the `wait` method. The reason is that the `terminate` method
1101
+ # will wait for the tester to finish before terminating itself.
1102
+ #
1103
+ # Please also note that any process depending on the tester will be
1104
+ # terminated after the tester is done because we are setting the
1105
+ # `spread_stop_signal` # attribute to `True` (cf: see __init__ method).
1106
+ self.tester_process_manager.terminate()
1097
1107
 
1098
1108
  if self.miner_process_manager:
1099
1109
  self.miner_process_manager.wait()
@@ -1105,8 +1115,7 @@ class SystemLauncher(SystemBase):
1105
1115
  # From here, we are sure that every test and files are produced.
1106
1116
  # We now format the generated file(s).
1107
1117
  self.dir_files_sorter_process_manager.start()
1108
- self.dir_files_sorter_process_manager.push_stop_signal()
1109
- self.dir_files_sorter_process_manager.wait()
1118
+ self.dir_files_sorter_process_manager.terminate()
1110
1119
  except AssertionError:
1111
1120
  # Example: Already started previously.
1112
1121
  pass
@@ -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 requests.exceptions.RequestException:
89
+ except UnableToDownload:
90
90
  response = "{}"
91
91
 
92
92
  return Box(
@@ -363,16 +363,21 @@ class DownloadHelper:
363
363
  :raise UnableToDownload: When could not unable to download the URL.
364
364
  """
365
365
 
366
- req = self.session.get(self.url, verify=self.certificate_validation)
366
+ try:
367
+ req = self.session.get(self.url, verify=self.certificate_validation)
367
368
 
368
- if req.status_code == 200:
369
- response = req.text
369
+ if req.status_code == 200:
370
+ response = req.text
370
371
 
371
- if destination and isinstance(destination, str):
372
- FileHelper(destination).write(req.text, overwrite=True)
372
+ if destination and isinstance(destination, str):
373
+ FileHelper(destination).write(req.text, overwrite=True)
373
374
 
374
- return response
375
+ return response
375
376
 
376
- raise PyFunceble.helpers.exceptions.UnableToDownload(
377
- f"{req.url} (retries: {self.retries} | status code: {req.status_code})"
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.0a17.dev (Blue Duckling: Tulip)"
63
+ PROJECT_VERSION: str = "4.3.0a19.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.0a17
3
+ Version: 4.3.0a19
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: setuptools>=65.5.1
26
- Requires-Dist: pyfunceble-process-manager==1.0.7
27
- Requires-Dist: packaging
28
- Requires-Dist: shtab
29
- Requires-Dist: python-box[all]~=6.0.0
30
- Requires-Dist: requests[socks]<3
31
- Requires-Dist: python-dotenv
32
- Requires-Dist: alembic
33
25
  Requires-Dist: PyYAML
34
- Requires-Dist: SQLAlchemy~=2.0
26
+ Requires-Dist: pyfunceble-process-manager==1.0.10
35
27
  Requires-Dist: domain2idna~=1.12.0
28
+ Requires-Dist: alembic
36
29
  Requires-Dist: colorama
37
- Requires-Dist: inflection
38
- Requires-Dist: dnspython[DOH]~=2.6.0
39
30
  Requires-Dist: PyMySQL
31
+ Requires-Dist: SQLAlchemy~=2.0
32
+ Requires-Dist: requests[socks]<3
33
+ Requires-Dist: python-dotenv
34
+ Requires-Dist: dnspython[DOH]~=2.6.0
35
+ Requires-Dist: packaging
36
+ Requires-Dist: python-box[all]~=6.0.0
37
+ Requires-Dist: setuptools>=65.5.1
38
+ Requires-Dist: inflection
39
+ Requires-Dist: shtab
40
40
  Provides-Extra: docs
41
41
  Requires-Dist: zipp>=3.19.1; extra == "docs"
42
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
42
43
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
44
+ Requires-Dist: mkdocs~=1.5; extra == "docs"
43
45
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
44
- Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
45
- Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
46
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
47
46
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
48
- Requires-Dist: mkdocs~=1.5; extra == "docs"
47
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
48
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
49
49
  Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
50
+ Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
50
51
  Requires-Dist: mkdocs-material~=9.5; extra == "docs"
51
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
52
52
  Provides-Extra: dev
53
+ Requires-Dist: flake8; extra == "dev"
53
54
  Requires-Dist: isort; extra == "dev"
54
55
  Requires-Dist: black; extra == "dev"
55
- Requires-Dist: flake8; extra == "dev"
56
56
  Requires-Dist: pylint; extra == "dev"
57
57
  Provides-Extra: test
58
58
  Requires-Dist: tox; extra == "test"
59
59
  Requires-Dist: coverage; extra == "test"
60
60
  Provides-Extra: psql
61
- Requires-Dist: setuptools>=65.5.1; extra == "psql"
62
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "psql"
63
- Requires-Dist: packaging; extra == "psql"
64
- Requires-Dist: psycopg2; extra == "psql"
65
- Requires-Dist: shtab; extra == "psql"
66
- Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
67
- Requires-Dist: requests[socks]<3; extra == "psql"
68
- Requires-Dist: python-dotenv; extra == "psql"
69
- Requires-Dist: alembic; extra == "psql"
70
61
  Requires-Dist: PyYAML; extra == "psql"
71
- Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
62
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql"
72
63
  Requires-Dist: domain2idna~=1.12.0; extra == "psql"
64
+ Requires-Dist: alembic; extra == "psql"
73
65
  Requires-Dist: colorama; extra == "psql"
74
- Requires-Dist: inflection; extra == "psql"
75
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
76
66
  Requires-Dist: PyMySQL; extra == "psql"
67
+ Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
68
+ Requires-Dist: requests[socks]<3; extra == "psql"
69
+ Requires-Dist: python-dotenv; extra == "psql"
70
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
71
+ Requires-Dist: packaging; extra == "psql"
72
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
73
+ Requires-Dist: setuptools>=65.5.1; extra == "psql"
74
+ Requires-Dist: inflection; extra == "psql"
75
+ Requires-Dist: psycopg2; extra == "psql"
76
+ Requires-Dist: shtab; extra == "psql"
77
77
  Provides-Extra: psql-binary
78
- Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
79
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "psql-binary"
80
- Requires-Dist: packaging; extra == "psql-binary"
81
- Requires-Dist: shtab; extra == "psql-binary"
82
- Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
83
- Requires-Dist: psycopg2-binary; extra == "psql-binary"
84
- Requires-Dist: requests[socks]<3; extra == "psql-binary"
85
- Requires-Dist: python-dotenv; extra == "psql-binary"
86
- Requires-Dist: alembic; extra == "psql-binary"
87
78
  Requires-Dist: PyYAML; extra == "psql-binary"
88
- Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
79
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql-binary"
89
80
  Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
81
+ Requires-Dist: alembic; extra == "psql-binary"
90
82
  Requires-Dist: colorama; extra == "psql-binary"
91
- Requires-Dist: inflection; extra == "psql-binary"
92
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
93
83
  Requires-Dist: PyMySQL; extra == "psql-binary"
84
+ Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
85
+ Requires-Dist: requests[socks]<3; extra == "psql-binary"
86
+ Requires-Dist: python-dotenv; extra == "psql-binary"
87
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
88
+ Requires-Dist: packaging; extra == "psql-binary"
89
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
90
+ Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
91
+ Requires-Dist: inflection; extra == "psql-binary"
92
+ Requires-Dist: shtab; extra == "psql-binary"
93
+ Requires-Dist: psycopg2-binary; extra == "psql-binary"
94
94
  Provides-Extra: postgresql
95
- Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
96
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "postgresql"
97
- Requires-Dist: packaging; extra == "postgresql"
98
- Requires-Dist: psycopg2; extra == "postgresql"
99
- Requires-Dist: shtab; extra == "postgresql"
100
- Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
101
- Requires-Dist: requests[socks]<3; extra == "postgresql"
102
- Requires-Dist: python-dotenv; extra == "postgresql"
103
- Requires-Dist: alembic; extra == "postgresql"
104
95
  Requires-Dist: PyYAML; extra == "postgresql"
105
- Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
96
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql"
106
97
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
98
+ Requires-Dist: alembic; extra == "postgresql"
107
99
  Requires-Dist: colorama; extra == "postgresql"
108
- Requires-Dist: inflection; extra == "postgresql"
109
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
110
100
  Requires-Dist: PyMySQL; extra == "postgresql"
101
+ Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
102
+ Requires-Dist: requests[socks]<3; extra == "postgresql"
103
+ Requires-Dist: python-dotenv; extra == "postgresql"
104
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
105
+ Requires-Dist: packaging; extra == "postgresql"
106
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
107
+ Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
108
+ Requires-Dist: inflection; extra == "postgresql"
109
+ Requires-Dist: psycopg2; extra == "postgresql"
110
+ Requires-Dist: shtab; extra == "postgresql"
111
111
  Provides-Extra: postgresql-binary
112
- Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
113
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "postgresql-binary"
114
- Requires-Dist: packaging; extra == "postgresql-binary"
115
- Requires-Dist: shtab; extra == "postgresql-binary"
116
- Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
117
- Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
118
- Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
119
- Requires-Dist: python-dotenv; extra == "postgresql-binary"
120
- Requires-Dist: alembic; extra == "postgresql-binary"
121
112
  Requires-Dist: PyYAML; extra == "postgresql-binary"
122
- Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
113
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql-binary"
123
114
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
115
+ Requires-Dist: alembic; extra == "postgresql-binary"
124
116
  Requires-Dist: colorama; extra == "postgresql-binary"
125
- Requires-Dist: inflection; extra == "postgresql-binary"
126
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
127
117
  Requires-Dist: PyMySQL; extra == "postgresql-binary"
118
+ Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
119
+ Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
120
+ Requires-Dist: python-dotenv; extra == "postgresql-binary"
121
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
122
+ Requires-Dist: packaging; extra == "postgresql-binary"
123
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
124
+ Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
125
+ Requires-Dist: inflection; extra == "postgresql-binary"
126
+ Requires-Dist: shtab; extra == "postgresql-binary"
127
+ Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
128
128
  Provides-Extra: full
129
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "full"
130
- Requires-Dist: flake8; extra == "full"
131
- Requires-Dist: pylint; extra == "full"
132
- Requires-Dist: tox; extra == "full"
133
- Requires-Dist: inflection; extra == "full"
134
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
135
- Requires-Dist: setuptools>=65.5.1; extra == "full"
136
- Requires-Dist: zipp>=3.19.1; extra == "full"
137
- Requires-Dist: packaging; extra == "full"
138
- Requires-Dist: black; extra == "full"
139
- Requires-Dist: alembic; extra == "full"
140
- Requires-Dist: PyYAML; extra == "full"
141
- Requires-Dist: pymdown-extensions~=10.9; extra == "full"
142
- Requires-Dist: SQLAlchemy~=2.0; extra == "full"
143
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
144
- Requires-Dist: mkdocs~=1.5; extra == "full"
145
- Requires-Dist: PyMySQL; extra == "full"
146
- Requires-Dist: isort; extra == "full"
129
+ Requires-Dist: colorama; extra == "full"
130
+ Requires-Dist: requests[socks]<3; extra == "full"
147
131
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
132
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
148
133
  Requires-Dist: python-box[all]~=6.0.0; extra == "full"
134
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
135
+ Requires-Dist: pylint; extra == "full"
136
+ Requires-Dist: PyYAML; extra == "full"
137
+ Requires-Dist: domain2idna~=1.12.0; extra == "full"
149
138
  Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
139
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
140
+ Requires-Dist: mkdocs~=1.5; extra == "full"
150
141
  Requires-Dist: python-dotenv; extra == "full"
151
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
152
- Requires-Dist: colorama; extra == "full"
153
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
142
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
154
143
  Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
155
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
144
+ Requires-Dist: isort; extra == "full"
145
+ Requires-Dist: setuptools>=65.5.1; extra == "full"
156
146
  Requires-Dist: shtab; extra == "full"
157
- Requires-Dist: requests[socks]<3; extra == "full"
158
- Requires-Dist: domain2idna~=1.12.0; extra == "full"
159
- Requires-Dist: coverage; extra == "full"
147
+ Requires-Dist: flake8; extra == "full"
148
+ Requires-Dist: inflection; extra == "full"
149
+ Requires-Dist: black; extra == "full"
160
150
  Requires-Dist: mkdocs-material~=9.5; extra == "full"
151
+ Requires-Dist: pymdown-extensions~=10.9; extra == "full"
152
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "full"
153
+ Requires-Dist: alembic; extra == "full"
154
+ Requires-Dist: PyMySQL; extra == "full"
155
+ Requires-Dist: zipp>=3.19.1; extra == "full"
156
+ Requires-Dist: SQLAlchemy~=2.0; extra == "full"
157
+ Requires-Dist: coverage; extra == "full"
158
+ Requires-Dist: packaging; extra == "full"
159
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
160
+ Requires-Dist: tox; extra == "full"
161
161
  Provides-Extra: all
162
- Requires-Dist: pyfunceble-process-manager==1.0.7; extra == "all"
163
- Requires-Dist: flake8; extra == "all"
164
- Requires-Dist: pylint; extra == "all"
165
- Requires-Dist: tox; extra == "all"
166
- Requires-Dist: inflection; extra == "all"
167
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
168
- Requires-Dist: setuptools>=65.5.1; extra == "all"
169
- Requires-Dist: zipp>=3.19.1; extra == "all"
170
- Requires-Dist: packaging; extra == "all"
171
- Requires-Dist: black; extra == "all"
172
- Requires-Dist: alembic; extra == "all"
173
- Requires-Dist: PyYAML; extra == "all"
174
- Requires-Dist: pymdown-extensions~=10.9; extra == "all"
175
- Requires-Dist: SQLAlchemy~=2.0; extra == "all"
176
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
177
- Requires-Dist: mkdocs~=1.5; extra == "all"
178
- Requires-Dist: PyMySQL; extra == "all"
179
- Requires-Dist: isort; extra == "all"
162
+ Requires-Dist: colorama; extra == "all"
163
+ Requires-Dist: requests[socks]<3; extra == "all"
180
164
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
165
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
181
166
  Requires-Dist: python-box[all]~=6.0.0; extra == "all"
167
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
168
+ Requires-Dist: pylint; extra == "all"
169
+ Requires-Dist: psycopg2-binary; extra == "all"
170
+ Requires-Dist: PyYAML; extra == "all"
171
+ Requires-Dist: domain2idna~=1.12.0; extra == "all"
182
172
  Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
173
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
174
+ Requires-Dist: mkdocs~=1.5; extra == "all"
183
175
  Requires-Dist: python-dotenv; extra == "all"
184
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
185
- Requires-Dist: colorama; extra == "all"
186
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
176
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
187
177
  Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
188
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
178
+ Requires-Dist: isort; extra == "all"
179
+ Requires-Dist: setuptools>=65.5.1; extra == "all"
189
180
  Requires-Dist: shtab; extra == "all"
190
- Requires-Dist: psycopg2-binary; extra == "all"
191
- Requires-Dist: requests[socks]<3; extra == "all"
192
- Requires-Dist: domain2idna~=1.12.0; extra == "all"
193
- Requires-Dist: coverage; extra == "all"
181
+ Requires-Dist: flake8; extra == "all"
182
+ Requires-Dist: inflection; extra == "all"
183
+ Requires-Dist: black; extra == "all"
194
184
  Requires-Dist: mkdocs-material~=9.5; extra == "all"
185
+ Requires-Dist: pymdown-extensions~=10.9; extra == "all"
186
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "all"
187
+ Requires-Dist: alembic; extra == "all"
188
+ Requires-Dist: PyMySQL; extra == "all"
189
+ Requires-Dist: zipp>=3.19.1; extra == "all"
190
+ Requires-Dist: SQLAlchemy~=2.0; extra == "all"
191
+ Requires-Dist: coverage; extra == "all"
192
+ Requires-Dist: packaging; extra == "all"
193
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
194
+ Requires-Dist: tox; 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=d2LwwTqxDJuSeCglbGONZu3vCQ5xd-UwatkSku4aEiI,5402
7
+ PyFunceble/storage.py,sha256=EllpDJ8MBY-NUd3gSKZxPxbQQt5J7g0Lb-6gEzi58q0,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=7CSzFIEzxvLF-kz67Rb1ioT1i_XJ66I-WEY3XT170V4,4795
125
+ PyFunceble/cli/processes/workers/base.py,sha256=In4CqrKEZ3MuxdiGovHhYNPn9vL5OXisWGvlapgbUZo,4912
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=krW9wMW8OLQ5jxPQK3sMdnHNYbaShGCjR84f7gsJ850,47884
142
+ PyFunceble/cli/system/launcher.py,sha256=r4Xge1HmH89IAwZTRzgjGa5mVW5DqQPcSmGkc4AJNBQ,48253
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=RjQrhi3ljBgOLgrxiEJOOq_ouYdTuzeJUGuHvIBVx-I,13898
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=V_Ysb5XybuDAp25a-cIFEztw4Z9sOWz0KcKE9iQZ61Q,11267
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.0a17.dist-info/LICENSE,sha256=rE8fp-5WWAbUGya8mg2fMTIkcw3fPA1PNG86URxH3U4,10802
280
- pyfunceble_dev-4.3.0a17.dist-info/METADATA,sha256=TP6fVdL_92koZ_lxTAd_3VjqbidkC1dGhoiyfSZjjbg,47437
281
- pyfunceble_dev-4.3.0a17.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
282
- pyfunceble_dev-4.3.0a17.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
- pyfunceble_dev-4.3.0a17.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
- pyfunceble_dev-4.3.0a17.dist-info/RECORD,,
279
+ pyfunceble_dev-4.3.0a19.dist-info/LICENSE,sha256=rE8fp-5WWAbUGya8mg2fMTIkcw3fPA1PNG86URxH3U4,10802
280
+ pyfunceble_dev-4.3.0a19.dist-info/METADATA,sha256=Lbs5K8vj9eAMJtjJk3L9o_oddLKpfbrt0ZcmacrnECU,47444
281
+ pyfunceble_dev-4.3.0a19.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
282
+ pyfunceble_dev-4.3.0a19.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
+ pyfunceble_dev-4.3.0a19.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
+ pyfunceble_dev-4.3.0a19.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5