PyFunceble-dev 4.3.0a19__py3-none-any.whl → 4.3.0a21__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]}"
@@ -194,7 +194,7 @@ class SystemLauncher(SystemBase):
194
194
  if self.continuous_integration.authorized:
195
195
  self.continuous_integration.init()
196
196
 
197
- self.stdout_printer.guess_allow_coloration()
197
+ self.stdout_printer.guess_allow_coloration().guess_allow_background_coloration()
198
198
 
199
199
  self.manager = multiprocessing.Manager()
200
200
 
@@ -123,7 +123,9 @@ class AdblockInputLine2Subject(ConverterBase):
123
123
  Giving :code:`"hello.world/?is=beautiful"` returns :code:`"hello.world"`
124
124
  """
125
125
 
126
- subject = subject.replace("*", "").replace("~", "")
126
+ subject = (
127
+ subject.replace("*", "").replace("~", "").replace('"', "").replace("'", "")
128
+ )
127
129
 
128
130
  try:
129
131
  return Url2Netloc(subject).get_converted()
@@ -175,11 +177,12 @@ class AdblockInputLine2Subject(ConverterBase):
175
177
 
176
178
  if "href" in rule:
177
179
  matched = self._regex_helper.set_regex(
178
- r"((?:\"|\')(.*)(?:\"|\'))"
179
- ).match(rule, return_match=True, rematch=True, group=1)
180
+ r"((?:\"|\')(.*?)(?:\"|\'))"
181
+ ).match(rule, return_match=True, rematch=True)
180
182
 
181
183
  if matched:
182
- result.add(self.extract_base(matched))
184
+ result.update(self.extract_base(x) for x in matched)
185
+
183
186
  continue
184
187
 
185
188
  return result
@@ -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.0a19.dev (Blue Duckling: Tulip)"
63
+ PROJECT_VERSION: str = "4.3.0a21.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.0a19
3
+ Version: 4.3.0a21
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: PyYAML
26
- Requires-Dist: pyfunceble-process-manager==1.0.10
27
25
  Requires-Dist: domain2idna~=1.12.0
28
- Requires-Dist: alembic
29
- Requires-Dist: colorama
30
- Requires-Dist: PyMySQL
31
26
  Requires-Dist: SQLAlchemy~=2.0
32
- Requires-Dist: requests[socks]<3
33
27
  Requires-Dist: python-dotenv
28
+ Requires-Dist: inflection
29
+ Requires-Dist: requests[socks]<3
30
+ Requires-Dist: PyYAML
34
31
  Requires-Dist: dnspython[DOH]~=2.6.0
35
- Requires-Dist: packaging
32
+ Requires-Dist: shtab
36
33
  Requires-Dist: python-box[all]~=6.0.0
34
+ Requires-Dist: alembic
35
+ Requires-Dist: packaging
37
36
  Requires-Dist: setuptools>=65.5.1
38
- Requires-Dist: inflection
39
- Requires-Dist: shtab
37
+ Requires-Dist: PyMySQL
38
+ Requires-Dist: colorama
39
+ Requires-Dist: pyfunceble-process-manager==1.0.10
40
40
  Provides-Extra: docs
41
- Requires-Dist: zipp>=3.19.1; extra == "docs"
42
- Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
43
41
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
44
- Requires-Dist: mkdocs~=1.5; extra == "docs"
45
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
46
42
  Requires-Dist: mkdocstrings[python]~=0.26; 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"
43
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
49
44
  Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
50
- Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
45
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
46
+ Requires-Dist: zipp>=3.19.1; extra == "docs"
47
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
51
48
  Requires-Dist: mkdocs-material~=9.5; extra == "docs"
49
+ Requires-Dist: mkdocs~=1.5; extra == "docs"
50
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
51
+ Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
52
52
  Provides-Extra: dev
53
53
  Requires-Dist: flake8; extra == "dev"
54
- Requires-Dist: isort; extra == "dev"
55
54
  Requires-Dist: black; extra == "dev"
56
55
  Requires-Dist: pylint; extra == "dev"
56
+ Requires-Dist: isort; 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: PyYAML; extra == "psql"
62
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql"
61
+ Requires-Dist: psycopg2; extra == "psql"
63
62
  Requires-Dist: domain2idna~=1.12.0; extra == "psql"
64
- Requires-Dist: alembic; extra == "psql"
65
- Requires-Dist: colorama; extra == "psql"
66
- Requires-Dist: PyMySQL; extra == "psql"
67
63
  Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
68
- Requires-Dist: requests[socks]<3; extra == "psql"
69
64
  Requires-Dist: python-dotenv; extra == "psql"
65
+ Requires-Dist: inflection; extra == "psql"
66
+ Requires-Dist: requests[socks]<3; extra == "psql"
67
+ Requires-Dist: PyYAML; extra == "psql"
70
68
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
71
- Requires-Dist: packaging; extra == "psql"
69
+ Requires-Dist: shtab; extra == "psql"
72
70
  Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
71
+ Requires-Dist: alembic; extra == "psql"
72
+ Requires-Dist: packaging; extra == "psql"
73
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"
74
+ Requires-Dist: PyMySQL; extra == "psql"
75
+ Requires-Dist: colorama; extra == "psql"
76
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql"
77
77
  Provides-Extra: psql-binary
78
- Requires-Dist: PyYAML; extra == "psql-binary"
79
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql-binary"
80
78
  Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
81
- Requires-Dist: alembic; extra == "psql-binary"
82
- Requires-Dist: colorama; extra == "psql-binary"
83
- Requires-Dist: PyMySQL; extra == "psql-binary"
79
+ Requires-Dist: psycopg2-binary; extra == "psql-binary"
84
80
  Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
85
- Requires-Dist: requests[socks]<3; extra == "psql-binary"
86
81
  Requires-Dist: python-dotenv; extra == "psql-binary"
82
+ Requires-Dist: inflection; extra == "psql-binary"
83
+ Requires-Dist: requests[socks]<3; extra == "psql-binary"
84
+ Requires-Dist: PyYAML; extra == "psql-binary"
87
85
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
88
- Requires-Dist: packaging; extra == "psql-binary"
86
+ Requires-Dist: shtab; extra == "psql-binary"
89
87
  Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
88
+ Requires-Dist: alembic; extra == "psql-binary"
89
+ Requires-Dist: packaging; extra == "psql-binary"
90
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"
91
+ Requires-Dist: PyMySQL; extra == "psql-binary"
92
+ Requires-Dist: colorama; extra == "psql-binary"
93
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "psql-binary"
94
94
  Provides-Extra: postgresql
95
- Requires-Dist: PyYAML; extra == "postgresql"
96
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql"
95
+ Requires-Dist: psycopg2; extra == "postgresql"
97
96
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
98
- Requires-Dist: alembic; extra == "postgresql"
99
- Requires-Dist: colorama; extra == "postgresql"
100
- Requires-Dist: PyMySQL; extra == "postgresql"
101
97
  Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
102
- Requires-Dist: requests[socks]<3; extra == "postgresql"
103
98
  Requires-Dist: python-dotenv; extra == "postgresql"
99
+ Requires-Dist: inflection; extra == "postgresql"
100
+ Requires-Dist: requests[socks]<3; extra == "postgresql"
101
+ Requires-Dist: PyYAML; extra == "postgresql"
104
102
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
105
- Requires-Dist: packaging; extra == "postgresql"
103
+ Requires-Dist: shtab; extra == "postgresql"
106
104
  Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
105
+ Requires-Dist: alembic; extra == "postgresql"
106
+ Requires-Dist: packaging; extra == "postgresql"
107
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"
108
+ Requires-Dist: PyMySQL; extra == "postgresql"
109
+ Requires-Dist: colorama; extra == "postgresql"
110
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql"
111
111
  Provides-Extra: postgresql-binary
112
- Requires-Dist: PyYAML; extra == "postgresql-binary"
113
- Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql-binary"
114
112
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
115
- Requires-Dist: alembic; extra == "postgresql-binary"
116
- Requires-Dist: colorama; extra == "postgresql-binary"
117
- Requires-Dist: PyMySQL; extra == "postgresql-binary"
113
+ Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
118
114
  Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
119
- Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
120
115
  Requires-Dist: python-dotenv; extra == "postgresql-binary"
116
+ Requires-Dist: inflection; extra == "postgresql-binary"
117
+ Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
118
+ Requires-Dist: PyYAML; extra == "postgresql-binary"
121
119
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
122
- Requires-Dist: packaging; extra == "postgresql-binary"
120
+ Requires-Dist: shtab; extra == "postgresql-binary"
123
121
  Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
122
+ Requires-Dist: alembic; extra == "postgresql-binary"
123
+ Requires-Dist: packaging; extra == "postgresql-binary"
124
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"
125
+ Requires-Dist: PyMySQL; extra == "postgresql-binary"
126
+ Requires-Dist: colorama; extra == "postgresql-binary"
127
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "postgresql-binary"
128
128
  Provides-Extra: full
129
- Requires-Dist: colorama; extra == "full"
130
- Requires-Dist: requests[socks]<3; extra == "full"
131
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
132
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
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"
138
- Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
139
129
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
130
+ Requires-Dist: domain2idna~=1.12.0; extra == "full"
131
+ Requires-Dist: PyYAML; extra == "full"
140
132
  Requires-Dist: mkdocs~=1.5; extra == "full"
133
+ Requires-Dist: pymdown-extensions~=10.9; extra == "full"
134
+ Requires-Dist: requests[socks]<3; extra == "full"
135
+ Requires-Dist: colorama; extra == "full"
136
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "full"
141
137
  Requires-Dist: python-dotenv; extra == "full"
138
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
139
+ Requires-Dist: flake8; extra == "full"
140
+ Requires-Dist: pylint; extra == "full"
142
141
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
143
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
142
+ Requires-Dist: python-box[all]~=6.0.0; extra == "full"
143
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
144
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
145
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
146
+ Requires-Dist: SQLAlchemy~=2.0; extra == "full"
144
147
  Requires-Dist: isort; extra == "full"
145
- Requires-Dist: setuptools>=65.5.1; extra == "full"
146
- Requires-Dist: shtab; extra == "full"
147
- Requires-Dist: flake8; extra == "full"
148
+ Requires-Dist: coverage; extra == "full"
149
+ Requires-Dist: packaging; extra == "full"
150
+ Requires-Dist: PyMySQL; extra == "full"
148
151
  Requires-Dist: inflection; extra == "full"
152
+ Requires-Dist: tox; extra == "full"
153
+ Requires-Dist: zipp>=3.19.1; extra == "full"
154
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
155
+ Requires-Dist: shtab; extra == "full"
149
156
  Requires-Dist: black; extra == "full"
150
157
  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
158
  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"
159
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
160
+ Requires-Dist: setuptools>=65.5.1; extra == "full"
161
161
  Provides-Extra: all
162
- Requires-Dist: colorama; extra == "all"
163
- Requires-Dist: requests[socks]<3; extra == "all"
164
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
165
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
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"
172
- Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
173
162
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
163
+ Requires-Dist: domain2idna~=1.12.0; extra == "all"
164
+ Requires-Dist: PyYAML; extra == "all"
174
165
  Requires-Dist: mkdocs~=1.5; extra == "all"
166
+ Requires-Dist: pymdown-extensions~=10.9; extra == "all"
167
+ Requires-Dist: requests[socks]<3; extra == "all"
168
+ Requires-Dist: colorama; extra == "all"
169
+ Requires-Dist: pyfunceble-process-manager==1.0.10; extra == "all"
170
+ Requires-Dist: psycopg2-binary; extra == "all"
175
171
  Requires-Dist: python-dotenv; extra == "all"
172
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
173
+ Requires-Dist: flake8; extra == "all"
174
+ Requires-Dist: pylint; extra == "all"
176
175
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
177
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
176
+ Requires-Dist: python-box[all]~=6.0.0; extra == "all"
177
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
178
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
179
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
180
+ Requires-Dist: SQLAlchemy~=2.0; extra == "all"
178
181
  Requires-Dist: isort; extra == "all"
179
- Requires-Dist: setuptools>=65.5.1; extra == "all"
180
- Requires-Dist: shtab; extra == "all"
181
- Requires-Dist: flake8; extra == "all"
182
+ Requires-Dist: coverage; extra == "all"
183
+ Requires-Dist: packaging; extra == "all"
184
+ Requires-Dist: PyMySQL; extra == "all"
182
185
  Requires-Dist: inflection; extra == "all"
186
+ Requires-Dist: tox; extra == "all"
187
+ Requires-Dist: zipp>=3.19.1; extra == "all"
188
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
189
+ Requires-Dist: shtab; extra == "all"
183
190
  Requires-Dist: black; extra == "all"
184
191
  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
192
  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"
193
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
194
+ Requires-Dist: setuptools>=65.5.1; 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=EllpDJ8MBY-NUd3gSKZxPxbQQt5J7g0Lb-6gEzi58q0,5402
7
+ PyFunceble/storage.py,sha256=jFmLPlS5-o1xY900fOci1pZ0_xw0htDcSv8rKIYr9xo,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
@@ -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=r4Xge1HmH89IAwZTRzgjGa5mVW5DqQPcSmGkc4AJNBQ,48253
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
@@ -150,7 +150,7 @@ PyFunceble/config/__init__.py,sha256=RZVudb1KuB_KZ_QIKg7EyHXMDm8ULPwT63ZcOkbC9Js
150
150
  PyFunceble/config/compare.py,sha256=J59CcnlQ0DTIqCDJyTSm3OJ6lpMNbY0HDJfs0TJn3_w,13637
151
151
  PyFunceble/config/loader.py,sha256=CGU22HYhUHjwNgUpWOys7VCqGB9PPYVoBKXqpc6Ck7Q,22870
152
152
  PyFunceble/converter/__init__.py,sha256=qcCGRsDDZeyGTZDkVHRGdoDsVLxvqDr2EbmJSv7mu0I,2442
153
- PyFunceble/converter/adblock_input_line2subject.py,sha256=N8y0nicv6gVxniTlhZsLED2yvg3r3hrX_Hd4LVa40Dg,12931
153
+ PyFunceble/converter/adblock_input_line2subject.py,sha256=_M6suHjD5jZHy8i7qcRN0r3yIxLst9ia9IIK7BFh1jY,12996
154
154
  PyFunceble/converter/base.py,sha256=vNTkNxGvHTHgKmIGBVcSKbiivwNoSjDGloCYUR7xaes,4921
155
155
  PyFunceble/converter/cidr2subject.py,sha256=PnLGKhGsGN31I1odkBI5_2vles3YwAravYdkY4e9ZWk,4750
156
156
  PyFunceble/converter/input_line2subject.py,sha256=C69RUzRXSLGkOjcsfFJ1QFd9r50NJ7S48Qr1cMFnBN0,5856
@@ -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.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,,
279
+ pyfunceble_dev-4.3.0a21.dist-info/licenses/LICENSE,sha256=rE8fp-5WWAbUGya8mg2fMTIkcw3fPA1PNG86URxH3U4,10802
280
+ pyfunceble_dev-4.3.0a21.dist-info/METADATA,sha256=vKnlCo9YxHJUdUJj-718DEJNzQhMClVOwpgBvRbYlZc,47466
281
+ pyfunceble_dev-4.3.0a21.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
282
+ pyfunceble_dev-4.3.0a21.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
+ pyfunceble_dev-4.3.0a21.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
+ pyfunceble_dev-4.3.0a21.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