PyFunceble-dev 4.2.23__py3-none-any.whl → 4.2.25__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.
@@ -53,7 +53,7 @@ License:
53
53
  import copy
54
54
  import functools
55
55
  import string
56
- from typing import Dict, Optional
56
+ from typing import Dict, List, Optional
57
57
 
58
58
 
59
59
  class PrinterBase:
@@ -118,12 +118,14 @@ class PrinterBase:
118
118
 
119
119
  _template_to_use: Optional[str] = None
120
120
  _dataset: Optional[Dict[str, str]] = None
121
+ _skip_column: Optional[List[str]] = []
121
122
 
122
123
  def __init__(
123
124
  self,
124
125
  template_to_use: Optional[str] = None,
125
126
  *,
126
127
  dataset: Optional[Dict[str, str]] = None,
128
+ skip_column: Optional[List[str]] = None,
127
129
  ) -> None:
128
130
  if template_to_use is not None:
129
131
  self.template_to_use = template_to_use
@@ -131,6 +133,9 @@ class PrinterBase:
131
133
  if dataset is not None:
132
134
  self.dataset = dataset
133
135
 
136
+ if skip_column is not None:
137
+ self.skip_column = skip_column
138
+
134
139
  def ensure_template_to_use_is_given(func): # pylint: disable=no-self-argument
135
140
  """
136
141
  Ensures that the template to use is given before launching the
@@ -167,6 +172,46 @@ class PrinterBase:
167
172
 
168
173
  return wrapper
169
174
 
175
+ @property
176
+ def skip_column(self) -> Optional[List[str]]:
177
+ """
178
+ Provides the current state of the :code:`_skip_column` attribute.
179
+ """
180
+
181
+ return self._skip_column
182
+
183
+ @skip_column.setter
184
+ def skip_column(self, value: List[str]) -> None:
185
+ """
186
+ Sets the columns to skip.
187
+
188
+ :param value:
189
+ The value to set.
190
+
191
+ :raise TypeError:
192
+ When the given :code:`value` is not a :py:class:`list`.
193
+ """
194
+
195
+ if not isinstance(value, list):
196
+ raise TypeError(f"<value> should be {list}, {type(value)} given.")
197
+
198
+ if any(not isinstance(x, str) for x in value):
199
+ raise TypeError(f"<value> should be a list of {str}, {type(value)} given.")
200
+
201
+ self._skip_column = value
202
+
203
+ def set_skip_column(self, value: List[str]) -> "PrinterBase":
204
+ """
205
+ Sets the columns to skip.
206
+
207
+ :param value:
208
+ The value to set.
209
+ """
210
+
211
+ self.skip_column = value
212
+
213
+ return self
214
+
170
215
  @property
171
216
  def template_to_use(self) -> Optional[str]:
172
217
  """
@@ -269,6 +314,12 @@ class PrinterBase:
269
314
  if key not in self.TEMPLATES[self.template_to_use].template:
270
315
  continue
271
316
 
317
+ if key in self.skip_column:
318
+ self.TEMPLATES[self.template_to_use].template = self.TEMPLATES[
319
+ self.template_to_use
320
+ ].template.replace(f"${key} ", "")
321
+ continue
322
+
272
323
  to_print_data[0][key] = f"{value:<{self.STD_LENGTH[key]}}"
273
324
 
274
325
  for key, value in to_print_data[0].items():
@@ -297,7 +348,7 @@ class PrinterBase:
297
348
  ignore_length = ["simple", "hosts", "plain", "execution_time"]
298
349
 
299
350
  for key, value in self.dataset.items():
300
- if key not in self.HEADERS:
351
+ if key not in self.HEADERS or key in self.skip_column:
301
352
  continue
302
353
 
303
354
  if not value and value != 0:
@@ -82,11 +82,12 @@ class FilePrinter(PrinterBase):
82
82
  *,
83
83
  dataset: Optional[Dict[str, str]] = None,
84
84
  destination: Optional[str] = None,
85
+ **kwargs,
85
86
  ) -> None:
86
87
  if destination is not None:
87
88
  self.destination = destination
88
89
 
89
- super().__init__(template_to_use=template_to_use, dataset=dataset)
90
+ super().__init__(template_to_use=template_to_use, dataset=dataset, **kwargs)
90
91
 
91
92
  def ensure_destination_is_given(func): # pylint: disable=no-self-argument
92
93
  """
@@ -110,13 +110,14 @@ class StdoutPrinter(PrinterBase):
110
110
  *,
111
111
  dataset: Optional[Dict[str, str]] = None,
112
112
  allow_coloration: Optional[bool] = None,
113
+ **kwargs,
113
114
  ) -> None:
114
115
  if allow_coloration is not None:
115
116
  self.allow_coloration = allow_coloration
116
117
  else:
117
118
  self.guess_allow_coloration()
118
119
 
119
- super().__init__(template_to_use=template_to_use, dataset=dataset)
120
+ super().__init__(template_to_use=template_to_use, dataset=dataset, **kwargs)
120
121
 
121
122
  @property
122
123
  def allow_coloration(self) -> bool:
@@ -105,8 +105,13 @@ class ProducerWorker(WorkerBase):
105
105
  )
106
106
 
107
107
  def __post_init__(self) -> None:
108
- self.stdout_printer = StdoutPrinter()
109
- self.file_printer = FilePrinter()
108
+ skip_columns = []
109
+
110
+ if not PyFunceble.storage.CONFIGURATION.cli_testing.display_mode.registrar:
111
+ skip_columns.append("registrar")
112
+
113
+ self.stdout_printer = StdoutPrinter(skip_column=skip_columns)
114
+ self.file_printer = FilePrinter(skip_column=skip_columns)
110
115
  self.whois_dataset = get_whois_dataset_object(db_session=self.db_session)
111
116
  self.inactive_dataset = get_inactive_dataset_object(db_session=self.db_session)
112
117
  self.continue_dataset = get_continue_databaset_object(
@@ -410,6 +410,7 @@ class SystemLauncher(SystemBase):
410
410
 
411
411
  # pylint: disable=line-too-long
412
412
  if (
413
+ not self.testing_protocol and
413
414
  PyFunceble.storage.CONFIGURATION.cli_testing.testing_mode.platform_contribution
414
415
  ):
415
416
  self.testing_protocol.append(
PyFunceble/storage.py CHANGED
@@ -61,7 +61,7 @@ from dotenv import load_dotenv
61
61
  from PyFunceble.storage_facility import get_config_directory
62
62
 
63
63
  PROJECT_NAME: str = "PyFunceble"
64
- PROJECT_VERSION: str = "4.2.23.dev (Blue Duckling: Ixora)"
64
+ PROJECT_VERSION: str = "4.2.25.dev (Blue Duckling: Ixora)"
65
65
 
66
66
  DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
67
67
  DISTRIBUTED_DIR_STRUCTURE_FILENAME: str = "dir_structure_production.json"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyFunceble-dev
3
- Version: 4.2.23
3
+ Version: 4.2.25
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
@@ -21,81 +21,81 @@ Classifier: Programming Language :: Python :: 3
21
21
  Classifier: License :: OSI Approved
22
22
  Requires-Python: >=3.8, <4
23
23
  License-File: LICENSE
24
+ Requires-Dist: python-box[all] ~=6.0.0
24
25
  Requires-Dist: alembic
26
+ Requires-Dist: domain2idna ~=1.12.0
25
27
  Requires-Dist: SQLAlchemy ~=2.0
26
- Requires-Dist: inflection
28
+ Requires-Dist: requests[socks] <3
27
29
  Requires-Dist: PyYAML
28
- Requires-Dist: dnspython[doh] ~=2.6.0
30
+ Requires-Dist: python-dotenv
29
31
  Requires-Dist: packaging
30
- Requires-Dist: setuptools >=65.5.1
32
+ Requires-Dist: cryptography ~=42.0
31
33
  Requires-Dist: PyMySQL
32
- Requires-Dist: python-dotenv
33
34
  Requires-Dist: colorama
34
- Requires-Dist: cryptography ~=42.0
35
- Requires-Dist: python-box[all] ~=6.0.0
36
35
  Requires-Dist: shtab
37
- Requires-Dist: domain2idna ~=1.12.0
38
- Requires-Dist: requests[socks] <3
36
+ Requires-Dist: inflection
37
+ Requires-Dist: dnspython[doh] ~=2.6.0
38
+ Requires-Dist: setuptools >=65.5.1
39
39
  Provides-Extra: dev
40
40
  Requires-Dist: black ; extra == 'dev'
41
41
  Requires-Dist: pylint ; extra == 'dev'
42
42
  Requires-Dist: isort ; extra == 'dev'
43
43
  Requires-Dist: flake8 ; extra == 'dev'
44
44
  Provides-Extra: docs
45
- Requires-Dist: urllib3 >=2.2.2 ; extra == 'docs'
46
45
  Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
47
- Requires-Dist: sphinx >=3.4.3 ; extra == 'docs'
48
46
  Requires-Dist: alabaster <0.8,>=0.7 ; extra == 'docs'
49
- Requires-Dist: requests >=2.32.0 ; extra == 'docs'
50
47
  Requires-Dist: Pygments >=2.0 ; extra == 'docs'
48
+ Requires-Dist: urllib3 >=2.2.2 ; extra == 'docs'
49
+ Requires-Dist: sphinx >=3.4.3 ; extra == 'docs'
50
+ Requires-Dist: requests >=2.32.0 ; extra == 'docs'
51
51
  Provides-Extra: full
52
- Requires-Dist: SQLAlchemy ~=2.0 ; extra == 'full'
53
- Requires-Dist: dnspython[doh] ~=2.6.0 ; extra == 'full'
54
- Requires-Dist: alabaster <0.8,>=0.7 ; extra == 'full'
55
- Requires-Dist: pylint ; extra == 'full'
56
- Requires-Dist: cryptography ~=42.0 ; extra == 'full'
57
52
  Requires-Dist: domain2idna ~=1.12.0 ; extra == 'full'
58
- Requires-Dist: urllib3 >=2.2.2 ; extra == 'full'
59
- Requires-Dist: inflection ; extra == 'full'
60
- Requires-Dist: packaging ; extra == 'full'
61
- Requires-Dist: requests[socks] <3 ; extra == 'full'
62
- Requires-Dist: python-box[all] ~=6.0.0 ; extra == 'full'
63
- Requires-Dist: Pygments >=2.0 ; extra == 'full'
64
53
  Requires-Dist: flake8 ; extra == 'full'
65
- Requires-Dist: sphinx >=3.4.3 ; extra == 'full'
66
- Requires-Dist: tox ; extra == 'full'
67
- Requires-Dist: setuptools >=65.5.1 ; extra == 'full'
54
+ Requires-Dist: SQLAlchemy ~=2.0 ; extra == 'full'
55
+ Requires-Dist: Pygments >=2.0 ; extra == 'full'
56
+ Requires-Dist: urllib3 >=2.2.2 ; extra == 'full'
57
+ Requires-Dist: black ; extra == 'full'
68
58
  Requires-Dist: PyMySQL ; extra == 'full'
69
- Requires-Dist: python-dotenv ; extra == 'full'
59
+ Requires-Dist: colorama ; extra == 'full'
60
+ Requires-Dist: inflection ; extra == 'full'
70
61
  Requires-Dist: requests >=2.32.0 ; extra == 'full'
62
+ Requires-Dist: pylint ; extra == 'full'
63
+ Requires-Dist: isort ; extra == 'full'
64
+ Requires-Dist: PyYAML ; extra == 'full'
71
65
  Requires-Dist: coverage ; extra == 'full'
72
66
  Requires-Dist: shtab ; extra == 'full'
67
+ Requires-Dist: dnspython[doh] ~=2.6.0 ; extra == 'full'
68
+ Requires-Dist: python-box[all] ~=6.0.0 ; extra == 'full'
73
69
  Requires-Dist: alembic ; extra == 'full'
74
- Requires-Dist: black ; extra == 'full'
70
+ Requires-Dist: python-dotenv ; extra == 'full'
71
+ Requires-Dist: packaging ; extra == 'full'
72
+ Requires-Dist: sphinx >=3.4.3 ; extra == 'full'
75
73
  Requires-Dist: sphinx-rtd-theme ; extra == 'full'
76
- Requires-Dist: isort ; extra == 'full'
77
- Requires-Dist: colorama ; extra == 'full'
78
- Requires-Dist: PyYAML ; extra == 'full'
74
+ Requires-Dist: tox ; extra == 'full'
75
+ Requires-Dist: alabaster <0.8,>=0.7 ; extra == 'full'
76
+ Requires-Dist: requests[socks] <3 ; extra == 'full'
77
+ Requires-Dist: cryptography ~=42.0 ; extra == 'full'
78
+ Requires-Dist: setuptools >=65.5.1 ; extra == 'full'
79
79
  Provides-Extra: psql
80
- Requires-Dist: psycopg2 ; extra == 'psql'
80
+ Requires-Dist: python-box[all] ~=6.0.0 ; extra == 'psql'
81
81
  Requires-Dist: alembic ; extra == 'psql'
82
+ Requires-Dist: domain2idna ~=1.12.0 ; extra == 'psql'
83
+ Requires-Dist: psycopg2 ; extra == 'psql'
82
84
  Requires-Dist: SQLAlchemy ~=2.0 ; extra == 'psql'
83
- Requires-Dist: inflection ; extra == 'psql'
85
+ Requires-Dist: requests[socks] <3 ; extra == 'psql'
84
86
  Requires-Dist: PyYAML ; extra == 'psql'
85
- Requires-Dist: dnspython[doh] ~=2.6.0 ; extra == 'psql'
87
+ Requires-Dist: python-dotenv ; extra == 'psql'
86
88
  Requires-Dist: packaging ; extra == 'psql'
87
- Requires-Dist: setuptools >=65.5.1 ; extra == 'psql'
89
+ Requires-Dist: cryptography ~=42.0 ; extra == 'psql'
88
90
  Requires-Dist: PyMySQL ; extra == 'psql'
89
- Requires-Dist: python-dotenv ; extra == 'psql'
90
91
  Requires-Dist: colorama ; extra == 'psql'
91
- Requires-Dist: cryptography ~=42.0 ; extra == 'psql'
92
- Requires-Dist: python-box[all] ~=6.0.0 ; extra == 'psql'
93
92
  Requires-Dist: shtab ; extra == 'psql'
94
- Requires-Dist: domain2idna ~=1.12.0 ; extra == 'psql'
95
- Requires-Dist: requests[socks] <3 ; extra == 'psql'
93
+ Requires-Dist: inflection ; extra == 'psql'
94
+ Requires-Dist: dnspython[doh] ~=2.6.0 ; extra == 'psql'
95
+ Requires-Dist: setuptools >=65.5.1 ; extra == 'psql'
96
96
  Provides-Extra: test
97
- Requires-Dist: tox ; extra == 'test'
98
97
  Requires-Dist: coverage ; extra == 'test'
98
+ Requires-Dist: tox ; extra == 'test'
99
99
 
100
100
  .. image:: https://raw.githubusercontent.com/PyFunceble/logo/dev/Green/HD/RM.png
101
101
 
@@ -4,7 +4,7 @@ PyFunceble/facility.py,sha256=zwQ-5JFtBr-n0uahkCLIheXNADX34A3uzVcEdFTWT8o,2640
4
4
  PyFunceble/factory.py,sha256=EIMObS1gaWpGamlqIoLoHAg9xpcXdfKEnDGe31O9WIw,2590
5
5
  PyFunceble/logger.py,sha256=8ex6ccGeV8sXtF6MMZsIfCAv2ZJmwKrvRQZd_4cIDCM,16829
6
6
  PyFunceble/sessions.py,sha256=lmqepbwtCCU8KVBNZ-XBo6kFFh5cpCKPgT_GegiLhk8,2582
7
- PyFunceble/storage.py,sha256=f7bZl2LAzTTyYLFSeUk0VXTW7Fm8iy447gJRNF0wQfU,6297
7
+ PyFunceble/storage.py,sha256=9LroXsr8RIveX75c-AM1DMfYKwZIS3UtnQ1Y_hXwlrw,6297
8
8
  PyFunceble/storage_facility.py,sha256=dnjRkVbH3kFtbWlX7evPyNT6rfo7nGCd4oNC9AajWtY,4833
9
9
  PyFunceble/checker/__init__.py,sha256=aiQBstQTw1nXwZ3IGxf_k3CofRbbtFB4WAu_ezvmi_0,2444
10
10
  PyFunceble/checker/base.py,sha256=0Jg-tI46Pqc_9-rSURzXEoViK1pz-pRL_P4W7PvryBs,13629
@@ -86,9 +86,9 @@ PyFunceble/cli/filesystem/dir_structure/backup.py,sha256=gKrnCvtVzNgQQEgDwhx8E3u
86
86
  PyFunceble/cli/filesystem/dir_structure/base.py,sha256=h2WFobPno4RE6yMjJ_kSLNJQvMVstuyYhfM4gvQzSqE,5376
87
87
  PyFunceble/cli/filesystem/dir_structure/restore.py,sha256=LcAawKCrD4lPclGKbeFEQ8pNeTsHhKdv0dDBAxzOm3g,5883
88
88
  PyFunceble/cli/filesystem/printer/__init__.py,sha256=fi-WMsgj79J8LOCebCdfNEGP9SuDFvCbqtInS0E-_ZM,2498
89
- PyFunceble/cli/filesystem/printer/base.py,sha256=Ffh2mAagtvkmP_tOsr-no2V4Bop7-ngWhXMKKHkNJto,10789
90
- PyFunceble/cli/filesystem/printer/file.py,sha256=vPSrGhs6Abakp9-VCPBLwkBBvyA3P_RaZN_B1_nOAIU,6844
91
- PyFunceble/cli/filesystem/printer/stdout.py,sha256=qNXRzwNyN9thwR8709e-FcvAsLe-LiJN3CBL7kKX6gY,7681
89
+ PyFunceble/cli/filesystem/printer/base.py,sha256=apTNYZnRjhk9l2g-RFrkq6FmI08O7g30m3qGocz0K0M,12265
90
+ PyFunceble/cli/filesystem/printer/file.py,sha256=VKmzSR8Z0C4oNTjasGt2yx8tihlpH8uLjeh218LHSBE,6872
91
+ PyFunceble/cli/filesystem/printer/stdout.py,sha256=QnY2Rfn0NzHrKzfM1bu8W8BnEP9xiMfZzX5RRqlXQS4,7709
92
92
  PyFunceble/cli/migrators/__init__.py,sha256=8YY6QMam9Bkox-FAMIlrglJQTEUVXhjCWFkJ1rLiRac,2452
93
93
  PyFunceble/cli/migrators/alembic.py,sha256=fVhPeWCfpjrOFtuzA8Xqz11Oz88B1CMR93RU2qSuOgg,7523
94
94
  PyFunceble/cli/migrators/base.py,sha256=3fjp0p9ojimzy1YhnOx0-RxUfzL1BuRLHbNfDKPceWY,3296
@@ -129,7 +129,7 @@ PyFunceble/cli/processes/workers/file_sorter.py,sha256=KLjplewupcLHzpKqWylwAU1_A
129
129
  PyFunceble/cli/processes/workers/file_sorter_base.py,sha256=1GCbEqvLnk9mk0obx5HfCxvo0zkGojhY7tJjV-QBRf0,8042
130
130
  PyFunceble/cli/processes/workers/migrator.py,sha256=jNNplKW4oMj_f0-ApTE-xJk4lEvjiN2rYlgOScOkKmY,3517
131
131
  PyFunceble/cli/processes/workers/miner.py,sha256=ZHxxo6oyVzTWV4IEQEispFSzetq7gO_KfWWqWLq05WQ,7127
132
- PyFunceble/cli/processes/workers/producer.py,sha256=gOjQCtmoDKXswOn1vredAVQMgQyeQrsSwNojwHV8_2c,17161
132
+ PyFunceble/cli/processes/workers/producer.py,sha256=vutG0r1j9YNz881gDUV0x9NhzEKsPhzbFL8Hcn4KCkE,17366
133
133
  PyFunceble/cli/processes/workers/tester.py,sha256=1VLbhVeAaN4EE0l3fdD0R69Kv4QTL3i9yXvSHiO1SrM,11751
134
134
  PyFunceble/cli/scripts/__init__.py,sha256=jSHEdUgOBxuhESK-n_unZDV7Vts09LNCNRiSJIe9Fno,2451
135
135
  PyFunceble/cli/scripts/iana.py,sha256=IQAu_TKtL-54Lh2q4ymet6T1faqQmiJXg4hME1Md3PU,9991
@@ -138,7 +138,7 @@ PyFunceble/cli/scripts/public_suffix.py,sha256=-xYAQVv2ug_2Uk7-VoEkVyEHqP5Crmj8C
138
138
  PyFunceble/cli/system/__init__.py,sha256=4jXK5yT6fDjsbNg5LULnpfJ8G1yM_uP78-OLkPM1Skc,2522
139
139
  PyFunceble/cli/system/base.py,sha256=E3TsC7y0qrL7hhLLAlaUhFWU9etTbOKOuqIrDSCeRqA,4888
140
140
  PyFunceble/cli/system/integrator.py,sha256=46UpOie_xG2IXv0dpw94pkSum9IKcz4_BcYaY_u32l0,10830
141
- PyFunceble/cli/system/launcher.py,sha256=N4R8qikFDNf_iEuZt8NTcbIKnbb7PdaGVODhDZR25Zg,45417
141
+ PyFunceble/cli/system/launcher.py,sha256=_KRf2hFiZ4fsxxNy4VnY0o7iEZUoZjn_2834o4tlCjo,45459
142
142
  PyFunceble/cli/utils/__init__.py,sha256=69PJomADQHaFLgnfTpS7SFTgVkqZiRdvpUKX41nUuXs,2465
143
143
  PyFunceble/cli/utils/ascii_logo.py,sha256=Zff57bUS-2GkjAzyv6OEpw8THrolr0rhjjvjepsMgR8,4236
144
144
  PyFunceble/cli/utils/sort.py,sha256=Vi2V4S55hbqP9Mrk_OsYxESKAnKIS6DOFZ7nZXEv7u4,4375
@@ -275,9 +275,9 @@ PyFunceble/utils/__init__.py,sha256=l6Mz-0GPHPCSPXuNFtHbnjD0fYI5BRr-RwDbVgAUdmI,
275
275
  PyFunceble/utils/platform.py,sha256=px_pauOFMCEtc9ST0vYZvDWDhcWNP1S595iKK4P3n7c,3920
276
276
  PyFunceble/utils/profile.py,sha256=Fp5yntq5Ys5eQe-FbQsUpx4ydxDxVYW3ACn-3KcTk_A,4566
277
277
  PyFunceble/utils/version.py,sha256=Tb3DWk96Xl6WbdDa2t3QQGBBDcnKDNJV_iFWMVQfCoc,8330
278
- PyFunceble_dev-4.2.23.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
279
- PyFunceble_dev-4.2.23.dist-info/METADATA,sha256=ZrBOWZJEnnS6ksK3GnwxOTdD288crkV1HoU6pFjo8cw,15319
280
- PyFunceble_dev-4.2.23.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
281
- PyFunceble_dev-4.2.23.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
282
- PyFunceble_dev-4.2.23.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
283
- PyFunceble_dev-4.2.23.dist-info/RECORD,,
278
+ PyFunceble_dev-4.2.25.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
279
+ PyFunceble_dev-4.2.25.dist-info/METADATA,sha256=kn75jNotJQ7djfNYf3SK6g5F5q3iyi-ne28gtENwZfU,15319
280
+ PyFunceble_dev-4.2.25.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
281
+ PyFunceble_dev-4.2.25.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
282
+ PyFunceble_dev-4.2.25.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
283
+ PyFunceble_dev-4.2.25.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.0)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5