PyFunceble-dev 4.3.0a18__py3-none-any.whl → 4.3.0a20__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.
@@ -835,6 +835,16 @@ def get_output_control_group_data() -> List[Tuple[List[str], dict]]:
835
835
  % get_configured_value("cli_testing.display_mode.colour"),
836
836
  },
837
837
  ),
838
+ (
839
+ ["--background-colour", "--background-color"],
840
+ {
841
+ "dest": "cli_testing.display_mode.background_colour",
842
+ "action": "store_true",
843
+ "help": "Activates or disables the background coloration to\n"
844
+ "STDOUT. %s"
845
+ % get_configured_value("cli_testing.display_mode.background_colour"),
846
+ },
847
+ ),
838
848
  (
839
849
  ["--display-status"],
840
850
  {
@@ -103,6 +103,7 @@ class StdoutPrinter(PrinterBase):
103
103
  FOREGROUND_COLORATED: List[str] = ["percentage", "simple"]
104
104
 
105
105
  _allow_coloration: bool = True
106
+ _allow_background_coloration: bool = True
106
107
 
107
108
  def __init__(
108
109
  self,
@@ -110,6 +111,7 @@ class StdoutPrinter(PrinterBase):
110
111
  *,
111
112
  dataset: Optional[Dict[str, str]] = None,
112
113
  allow_coloration: Optional[bool] = None,
114
+ allow_background_coloration: Optional[bool] = None,
113
115
  **kwargs,
114
116
  ) -> None:
115
117
  if allow_coloration is not None:
@@ -117,6 +119,11 @@ class StdoutPrinter(PrinterBase):
117
119
  else:
118
120
  self.guess_allow_coloration()
119
121
 
122
+ if allow_background_coloration is not None:
123
+ self.allow_background_coloration = allow_background_coloration
124
+ else:
125
+ self.guess_allow_background_coloration()
126
+
120
127
  super().__init__(template_to_use=template_to_use, dataset=dataset, **kwargs)
121
128
 
122
129
  @property
@@ -170,6 +177,63 @@ class StdoutPrinter(PrinterBase):
170
177
  else:
171
178
  self.allow_coloration = self.STD_ALLOW_COLORATION
172
179
 
180
+ return self
181
+
182
+ @property
183
+ def allow_background_coloration(self) -> bool:
184
+ """
185
+ Provides the current state of the :code:`_allow_background_coloration`
186
+ attribute.
187
+ """
188
+
189
+ return self._allow_background_coloration
190
+
191
+ @allow_background_coloration.setter
192
+ def allow_background_coloration(self, value: bool) -> Optional[bool]:
193
+ """
194
+ Sets the authorization to use the coloration.
195
+
196
+ :param value:
197
+ The value to set.
198
+
199
+ :raise TypeError:
200
+ When the given :code:`value` is not a :py:class:`str`.
201
+ :raise ValueError:
202
+ When teh given :code:`value` is empty.
203
+ """
204
+
205
+ if not isinstance(value, bool):
206
+ raise TypeError(f"<value> should be {bool}, {type(value)} given.")
207
+
208
+ self._allow_background_coloration = value
209
+
210
+ def set_allow_background_coloration(self, value: bool) -> "StdoutPrinter":
211
+ """
212
+ Sets the authorization to use the coloration.
213
+
214
+ :param value:
215
+ The value to set.
216
+ """
217
+
218
+ self.allow_background_coloration = value
219
+
220
+ return self
221
+
222
+ def guess_allow_background_coloration(self) -> "StdoutPrinter":
223
+ """
224
+ Try to guess and set the :code:`disable_background_coloration` attribute.
225
+ """
226
+
227
+ if PyFunceble.facility.ConfigLoader.is_already_loaded():
228
+ # pylint: disable=line-too-long
229
+ self.allow_background_coloration = (
230
+ PyFunceble.storage.CONFIGURATION.cli_testing.display_mode.background_colour
231
+ )
232
+ else:
233
+ self.allow_background_coloration = True
234
+
235
+ return self
236
+
173
237
  def print_interpolated_line(self):
174
238
  """
175
239
  Prints the interpolated line into the destination.
@@ -186,10 +250,16 @@ class StdoutPrinter(PrinterBase):
186
250
 
187
251
  if self.allow_coloration:
188
252
  if self.template_to_use in self.BACKGROUND_COLORATED:
189
- print(
190
- f"{self.STATUS2BACKGROUND_COLOR[status_to_compare]}"
191
- f"{line_to_print}"
192
- )
253
+ if self.allow_background_coloration:
254
+ print(
255
+ f"{self.STATUS2BACKGROUND_COLOR[status_to_compare]}"
256
+ f"{line_to_print}"
257
+ )
258
+ else:
259
+ print(
260
+ f"{self.STATUS2FORGROUND_COLOR[status_to_compare]}"
261
+ f"{line_to_print}"
262
+ )
193
263
  elif self.template_to_use in self.FOREGROUND_COLORATED:
194
264
  print(
195
265
  f"{self.STATUS2FORGROUND_COLOR[status_to_compare]}"
@@ -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
@@ -193,7 +194,7 @@ class SystemLauncher(SystemBase):
193
194
  if self.continuous_integration.authorized:
194
195
  self.continuous_integration.init()
195
196
 
196
- self.stdout_printer.guess_allow_coloration()
197
+ self.stdout_printer.guess_allow_coloration().guess_allow_background_coloration()
197
198
 
198
199
  self.manager = multiprocessing.Manager()
199
200
 
@@ -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:
@@ -358,6 +358,11 @@ cli_testing:
358
358
  # CLI Argument: --colour | --color
359
359
  colour: yes
360
360
 
361
+ # Enable/Disable the printing of background colors.
362
+ #
363
+ # CLI Argument: --background-colour | --background-color
364
+ background_colour: yes
365
+
361
366
  # Set the status to display to STDOUT.
362
367
  #
363
368
  # WARNING:
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.0a18.dev (Blue Duckling: Tulip)"
63
+ PROJECT_VERSION: str = "4.3.0a20.dev (Blue Duckling: Tulip)"
64
64
 
65
65
  DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
66
66
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: PyFunceble-dev
3
- Version: 4.3.0a18
3
+ Version: 4.3.0a20
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: SQLAlchemy~=2.0
26
- Requires-Dist: colorama
25
+ Requires-Dist: python-box[all]~=6.0.0
26
+ Requires-Dist: inflection
27
+ Requires-Dist: PyYAML
27
28
  Requires-Dist: requests[socks]<3
29
+ Requires-Dist: python-dotenv
30
+ Requires-Dist: packaging
31
+ Requires-Dist: setuptools>=65.5.1
32
+ Requires-Dist: SQLAlchemy~=2.0
28
33
  Requires-Dist: shtab
29
34
  Requires-Dist: domain2idna~=1.12.0
30
35
  Requires-Dist: PyMySQL
31
- Requires-Dist: setuptools>=65.5.1
32
- Requires-Dist: PyYAML
33
36
  Requires-Dist: pyfunceble-process-manager==1.0.10
34
- Requires-Dist: inflection
35
- Requires-Dist: python-box[all]~=6.0.0
36
- Requires-Dist: packaging
37
- Requires-Dist: python-dotenv
38
37
  Requires-Dist: dnspython[DOH]~=2.6.0
39
38
  Requires-Dist: alembic
39
+ Requires-Dist: colorama
40
40
  Provides-Extra: docs
41
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
42
- Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
41
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
43
42
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
44
43
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
45
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
44
+ Requires-Dist: mkdocs~=1.5; extra == "docs"
45
+ Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
46
+ Requires-Dist: zipp>=3.19.1; extra == "docs"
46
47
  Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
47
- Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
48
- Requires-Dist: mkdocs-material~=9.5; extra == "docs"
48
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
49
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
49
50
  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"
51
+ Requires-Dist: mkdocs-material~=9.5; extra == "docs"
52
52
  Provides-Extra: dev
53
53
  Requires-Dist: pylint; extra == "dev"
54
+ Requires-Dist: flake8; extra == "dev"
54
55
  Requires-Dist: isort; extra == "dev"
55
56
  Requires-Dist: black; extra == "dev"
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: SQLAlchemy~=2.0; extra == "psql"
62
- Requires-Dist: colorama; extra == "psql"
61
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
62
+ Requires-Dist: inflection; extra == "psql"
63
+ Requires-Dist: PyYAML; extra == "psql"
63
64
  Requires-Dist: requests[socks]<3; extra == "psql"
65
+ Requires-Dist: python-dotenv; extra == "psql"
66
+ Requires-Dist: packaging; extra == "psql"
67
+ Requires-Dist: setuptools>=65.5.1; extra == "psql"
68
+ Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
69
+ Requires-Dist: psycopg2; extra == "psql"
64
70
  Requires-Dist: shtab; extra == "psql"
65
71
  Requires-Dist: domain2idna~=1.12.0; extra == "psql"
66
72
  Requires-Dist: PyMySQL; extra == "psql"
67
- Requires-Dist: setuptools>=65.5.1; extra == "psql"
68
- Requires-Dist: PyYAML; extra == "psql"
69
73
  Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql"
70
- Requires-Dist: inflection; extra == "psql"
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
74
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
76
75
  Requires-Dist: alembic; extra == "psql"
76
+ Requires-Dist: colorama; extra == "psql"
77
77
  Provides-Extra: psql-binary
78
- Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
79
- Requires-Dist: colorama; extra == "psql-binary"
78
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
79
+ Requires-Dist: inflection; extra == "psql-binary"
80
+ Requires-Dist: PyYAML; extra == "psql-binary"
80
81
  Requires-Dist: requests[socks]<3; extra == "psql-binary"
82
+ Requires-Dist: python-dotenv; extra == "psql-binary"
83
+ Requires-Dist: psycopg2-binary; extra == "psql-binary"
84
+ Requires-Dist: packaging; extra == "psql-binary"
85
+ Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
86
+ Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
81
87
  Requires-Dist: shtab; extra == "psql-binary"
82
88
  Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
83
89
  Requires-Dist: PyMySQL; extra == "psql-binary"
84
- Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
85
- Requires-Dist: PyYAML; extra == "psql-binary"
86
90
  Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql-binary"
87
- Requires-Dist: inflection; extra == "psql-binary"
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
91
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
93
92
  Requires-Dist: alembic; extra == "psql-binary"
93
+ Requires-Dist: colorama; extra == "psql-binary"
94
94
  Provides-Extra: postgresql
95
- Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
96
- Requires-Dist: colorama; extra == "postgresql"
95
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
96
+ Requires-Dist: inflection; extra == "postgresql"
97
+ Requires-Dist: PyYAML; extra == "postgresql"
97
98
  Requires-Dist: requests[socks]<3; extra == "postgresql"
99
+ Requires-Dist: python-dotenv; extra == "postgresql"
100
+ Requires-Dist: packaging; extra == "postgresql"
101
+ Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
102
+ Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
103
+ Requires-Dist: psycopg2; extra == "postgresql"
98
104
  Requires-Dist: shtab; extra == "postgresql"
99
105
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
100
106
  Requires-Dist: PyMySQL; extra == "postgresql"
101
- Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
102
- Requires-Dist: PyYAML; extra == "postgresql"
103
107
  Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql"
104
- Requires-Dist: inflection; extra == "postgresql"
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
108
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
110
109
  Requires-Dist: alembic; extra == "postgresql"
110
+ Requires-Dist: colorama; extra == "postgresql"
111
111
  Provides-Extra: postgresql-binary
112
- Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
113
- Requires-Dist: colorama; extra == "postgresql-binary"
112
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
113
+ Requires-Dist: inflection; extra == "postgresql-binary"
114
+ Requires-Dist: PyYAML; extra == "postgresql-binary"
114
115
  Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
116
+ Requires-Dist: python-dotenv; extra == "postgresql-binary"
117
+ Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
118
+ Requires-Dist: packaging; extra == "postgresql-binary"
119
+ Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
120
+ Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
115
121
  Requires-Dist: shtab; extra == "postgresql-binary"
116
122
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
117
123
  Requires-Dist: PyMySQL; extra == "postgresql-binary"
118
- Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
119
- Requires-Dist: PyYAML; extra == "postgresql-binary"
120
124
  Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql-binary"
121
- Requires-Dist: inflection; extra == "postgresql-binary"
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
125
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
127
126
  Requires-Dist: alembic; extra == "postgresql-binary"
127
+ Requires-Dist: colorama; extra == "postgresql-binary"
128
128
  Provides-Extra: full
129
- Requires-Dist: SQLAlchemy~=2.0; extra == "full"
130
- Requires-Dist: colorama; extra == "full"
131
- Requires-Dist: domain2idna~=1.12.0; extra == "full"
132
- Requires-Dist: python-box[all]~=6.0.0; extra == "full"
133
- Requires-Dist: packaging; extra == "full"
134
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
135
- Requires-Dist: alembic; extra == "full"
136
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
137
129
  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
130
  Requires-Dist: tox; extra == "full"
143
- Requires-Dist: requests[socks]<3; extra == "full"
131
+ Requires-Dist: isort; extra == "full"
132
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
144
133
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
145
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
146
134
  Requires-Dist: PyYAML; extra == "full"
147
- Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
148
135
  Requires-Dist: mkdocs-material~=9.5; extra == "full"
149
- Requires-Dist: isort; extra == "full"
150
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
151
- Requires-Dist: zipp>=3.19.1; extra == "full"
152
- Requires-Dist: flake8; extra == "full"
136
+ Requires-Dist: requests[socks]<3; extra == "full"
137
+ Requires-Dist: SQLAlchemy~=2.0; extra == "full"
153
138
  Requires-Dist: pymdown-extensions~=10.9; extra == "full"
154
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
155
- Requires-Dist: shtab; extra == "full"
156
- Requires-Dist: PyMySQL; extra == "full"
139
+ Requires-Dist: zipp>=3.19.1; extra == "full"
140
+ Requires-Dist: domain2idna~=1.12.0; extra == "full"
141
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "full"
142
+ Requires-Dist: alembic; extra == "full"
143
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
144
+ Requires-Dist: python-box[all]~=6.0.0; extra == "full"
145
+ Requires-Dist: python-dotenv; extra == "full"
146
+ Requires-Dist: black; extra == "full"
157
147
  Requires-Dist: setuptools>=65.5.1; extra == "full"
148
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
149
+ Requires-Dist: mkdocs~=1.5; extra == "full"
150
+ Requires-Dist: pylint; extra == "full"
151
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
158
152
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
153
+ Requires-Dist: flake8; extra == "full"
154
+ Requires-Dist: packaging; extra == "full"
159
155
  Requires-Dist: coverage; extra == "full"
160
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "full"
156
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
157
+ Requires-Dist: shtab; extra == "full"
158
+ Requires-Dist: PyMySQL; extra == "full"
159
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
160
+ Requires-Dist: colorama; extra == "full"
161
161
  Provides-Extra: all
162
- Requires-Dist: SQLAlchemy~=2.0; extra == "all"
163
- Requires-Dist: colorama; extra == "all"
164
- Requires-Dist: domain2idna~=1.12.0; extra == "all"
165
- Requires-Dist: python-box[all]~=6.0.0; extra == "all"
166
- Requires-Dist: packaging; extra == "all"
167
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
168
- Requires-Dist: alembic; extra == "all"
169
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
170
162
  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
163
  Requires-Dist: tox; extra == "all"
177
- Requires-Dist: requests[socks]<3; extra == "all"
164
+ Requires-Dist: isort; extra == "all"
165
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
178
166
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
179
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
180
167
  Requires-Dist: PyYAML; extra == "all"
181
- Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
182
168
  Requires-Dist: mkdocs-material~=9.5; extra == "all"
183
- Requires-Dist: isort; extra == "all"
184
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
185
- Requires-Dist: zipp>=3.19.1; extra == "all"
186
- Requires-Dist: flake8; extra == "all"
169
+ Requires-Dist: requests[socks]<3; extra == "all"
170
+ Requires-Dist: SQLAlchemy~=2.0; extra == "all"
187
171
  Requires-Dist: pymdown-extensions~=10.9; extra == "all"
188
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
189
- Requires-Dist: shtab; extra == "all"
190
- Requires-Dist: PyMySQL; extra == "all"
172
+ Requires-Dist: zipp>=3.19.1; extra == "all"
173
+ Requires-Dist: domain2idna~=1.12.0; extra == "all"
174
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "all"
175
+ Requires-Dist: alembic; extra == "all"
176
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
177
+ Requires-Dist: python-box[all]~=6.0.0; extra == "all"
178
+ Requires-Dist: python-dotenv; extra == "all"
179
+ Requires-Dist: black; extra == "all"
191
180
  Requires-Dist: setuptools>=65.5.1; extra == "all"
181
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
182
+ Requires-Dist: mkdocs~=1.5; extra == "all"
183
+ Requires-Dist: pylint; extra == "all"
184
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
192
185
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
186
+ Requires-Dist: flake8; extra == "all"
187
+ Requires-Dist: psycopg2-binary; extra == "all"
188
+ Requires-Dist: packaging; extra == "all"
193
189
  Requires-Dist: coverage; extra == "all"
194
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "all"
190
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
191
+ Requires-Dist: shtab; extra == "all"
192
+ Requires-Dist: PyMySQL; extra == "all"
193
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
194
+ Requires-Dist: colorama; extra == "all"
195
195
  Dynamic: author
196
196
  Dynamic: author-email
197
197
  Dynamic: classifier
@@ -200,6 +200,7 @@ Dynamic: description-content-type
200
200
  Dynamic: home-page
201
201
  Dynamic: keywords
202
202
  Dynamic: license
203
+ Dynamic: license-file
203
204
  Dynamic: platform
204
205
  Dynamic: project-url
205
206
  Dynamic: provides-extra
@@ -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=xB67961ae3vFLDGvHT46S1DvTYtPuzFo8cbtmADPGi4,5402
7
+ PyFunceble/storage.py,sha256=f_mwS9ZJsVRapQv0BkeHpvqFNv09-ZT6J4GiB9txYF0,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
@@ -74,7 +74,7 @@ PyFunceble/cli/entry_points/production.py,sha256=Cgc4ev9IHZaGQfjSGLyNQ8mmbNZj2ud
74
74
  PyFunceble/cli/entry_points/public_suffix.py,sha256=V63DjHceSqubVhNOQuAU2Jd53EtkqT5hZcqbNMpclYA,4338
75
75
  PyFunceble/cli/entry_points/pyfunceble/__init__.py,sha256=JPNEI3iSjlfdrRa45DhU83S1HZKTC0q1OVGniUQ84J4,2491
76
76
  PyFunceble/cli/entry_points/pyfunceble/argsparser.py,sha256=EBX2eDhwxRR5Wdm3NXG77y2G1djEP90VC99GbaG8TKs,4754
77
- PyFunceble/cli/entry_points/pyfunceble/cli.py,sha256=5pEJFisZizzn9fIlNY0KduFhzK7f9zKl0Wsp2s4mKYQ,49261
77
+ PyFunceble/cli/entry_points/pyfunceble/cli.py,sha256=qJ_Eipcp3VGS_HZupuHWMKrBhAMqUelVHnjObSxJygQ,49674
78
78
  PyFunceble/cli/filesystem/__init__.py,sha256=a7qB5zkZ0C6r6mNF1IZwGxiLJmuyR83s0VSaQcFmyTU,2489
79
79
  PyFunceble/cli/filesystem/cleanup.py,sha256=dflajmuYC_TcAgLNMDb9ocM7V80Sy7-Vh5edK34q6wY,4819
80
80
  PyFunceble/cli/filesystem/counter.py,sha256=5gcqif_J4Lm0BZ_9risCI26pL2HN-tg50tPfVzOqIdw,6969
@@ -89,7 +89,7 @@ PyFunceble/cli/filesystem/dir_structure/restore.py,sha256=rhKiROdYH0AUoQQ4DVpJHe
89
89
  PyFunceble/cli/filesystem/printer/__init__.py,sha256=-F3AWCQHHUFPO5aWCpIXONIngldm8eqmPHaBO-t2e8c,2490
90
90
  PyFunceble/cli/filesystem/printer/base.py,sha256=dUL6T7udgDomKou2BZp5WjZ--b8gbakgD8lsS3Wrznw,12766
91
91
  PyFunceble/cli/filesystem/printer/file.py,sha256=HLUQ4sYwaATVnBpD2cxeVKPPOuks9RkKKw2YKEmbVYs,6864
92
- PyFunceble/cli/filesystem/printer/stdout.py,sha256=h7KvMIdhFNTF1ID-ZpFOBWI96Jz73y1tVmxuL7DBRsY,7701
92
+ PyFunceble/cli/filesystem/printer/stdout.py,sha256=SqUQuRwA9e-GzBfkonsA56VnbWSbhgeOfMLfQ4muXZc,9942
93
93
  PyFunceble/cli/migrators/__init__.py,sha256=6VLryQju9g_Gv6XgbW6UM8jXw5fY0Sdj_nVhIpdrn7g,2444
94
94
  PyFunceble/cli/migrators/alembic.py,sha256=U6n--j7avQzhRXsjzJoIC-ClwzC_aAUEl95XwHH0dUg,7515
95
95
  PyFunceble/cli/migrators/base.py,sha256=BO_N2qk4VeB72z9nWVQRPJKbCnpW0YXiAR8U2df5O_g,4401
@@ -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,7 +139,7 @@ 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=FcN62EyFz8YhLRPGI7fa5f-EW4Fsb68SR3R7kwLmpPU,48137
142
+ PyFunceble/cli/system/launcher.py,sha256=f2SemSDAB3Wf5guty8CGWG_na1PuyAyNZI_mmIszZLI,48289
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
@@ -185,7 +185,7 @@ PyFunceble/data/alembic/postgresql/env.py,sha256=sh2TyC1y8b8v4OyiI87zl23JzD1-QRu
185
185
  PyFunceble/data/alembic/postgresql/script.py.mako,sha256=8_xgA-gm_OhehnO7CiIijWgnm00ZlszEHtIHrAYFJl0,494
186
186
  PyFunceble/data/alembic/postgresql/versions/__init__.py,sha256=M3i4CY9RcLl0KNWOGUn28AaW0K1CMpTfjWrNuK2yMaE,2458
187
187
  PyFunceble/data/alembic/postgresql/versions/a32ac5d66eee_initial_version.py,sha256=xJdnoCnHAG1vmt-nBeomuIEDRwUK1Upv1mtkUt1txQM,2487
188
- PyFunceble/data/infrastructure/.PyFunceble_production.yaml,sha256=iGHEYd4R9zg37vocZKKpDyCnaOlBKBiUv01u8AykpWk,28488
188
+ PyFunceble/data/infrastructure/.PyFunceble_production.yaml,sha256=wNa4CkIsMrcdDgauTS0IliXhkt3Bg2l4EdF7rsDhfkk,28639
189
189
  PyFunceble/data/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
190
  PyFunceble/data/infrastructure/dir_structure_production.json,sha256=XpWin49SkoWu3pvnsoNlbNh6j9MlTGVKkvTmX99jZkM,5722
191
191
  PyFunceble/database/__init__.py,sha256=Qf4dI26R8JBru_DtSrtvHbQxDvqnJHMIO_x3nnOIAls,2498
@@ -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.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,,
279
+ pyfunceble_dev-4.3.0a20.dist-info/licenses/LICENSE,sha256=rE8fp-5WWAbUGya8mg2fMTIkcw3fPA1PNG86URxH3U4,10802
280
+ pyfunceble_dev-4.3.0a20.dist-info/METADATA,sha256=Q0P603sfRjtFjrt9XX7bUfcjr8tgaWcxl2XZx8bTSw8,47466
281
+ pyfunceble_dev-4.3.0a20.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
282
+ pyfunceble_dev-4.3.0a20.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
+ pyfunceble_dev-4.3.0a20.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
+ pyfunceble_dev-4.3.0a20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (77.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5