PyFunceble-dev 4.3.0a14__py3-none-any.whl → 4.3.0a15__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.
@@ -442,7 +442,7 @@ class ConfigLoader:
442
442
  if not self.is_already_loaded():
443
443
  if not self.file_helper.set_path(self.path_to_config).exists():
444
444
  self.file_helper.set_path(self.path_to_default_config).copy(
445
- self.path_to_config
445
+ self.path_to_config, create_parent=True
446
446
  )
447
447
 
448
448
  return self
@@ -515,7 +515,7 @@ class ConfigLoader:
515
515
  config = self.dict_helper.from_yaml_file(self.path_to_config)
516
516
  except (MarkedYAMLError, FileNotFoundError):
517
517
  self.file_helper.set_path(self.path_to_default_config).copy(
518
- self.path_to_config
518
+ self.path_to_config, create_parent=True
519
519
  )
520
520
  config = self.dict_helper.from_yaml_file(self.path_to_config)
521
521
 
@@ -201,13 +201,17 @@ class FileHelper:
201
201
 
202
202
  return open(self.path, *args, **kwargs) # pylint: disable=unspecified-encoding
203
203
 
204
- def copy(self, destination: str) -> "FileHelper":
204
+ def copy(self, destination: str, *, create_parent: bool = False) -> "FileHelper":
205
205
  """
206
206
  Copy the globaly given file path to the given destination.
207
207
 
208
208
  :param str destination: The destination of the copy.
209
+ :param bool create_parent: Tell us if we have to create the parent directory.
209
210
  """
210
211
 
212
+ if create_parent:
213
+ DirectoryHelper(os.path.dirname(destination)).create()
214
+
211
215
  if self.exists():
212
216
  shutil.copy(self.path, destination)
213
217
 
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.0a14.dev (Blue Duckling: Tulip)"
63
+ PROJECT_VERSION: str = "4.3.0a15.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.1
2
2
  Name: PyFunceble-dev
3
- Version: 4.3.0a14
3
+ Version: 4.3.0a15
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,169 +22,169 @@ 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: colorama
26
- Requires-Dist: PyMySQL
27
- Requires-Dist: python-box[all]~=6.0.0
28
- Requires-Dist: requests[socks]<3
29
- Requires-Dist: packaging
30
- Requires-Dist: inflection
31
- Requires-Dist: shtab
25
+ Requires-Dist: alembic
32
26
  Requires-Dist: domain2idna~=1.12.0
33
27
  Requires-Dist: setuptools>=65.5.1
28
+ Requires-Dist: inflection
29
+ Requires-Dist: shtab
30
+ Requires-Dist: python-box[all]~=6.0.0
31
+ Requires-Dist: PyYAML
32
+ Requires-Dist: colorama
34
33
  Requires-Dist: dnspython[DOH]~=2.6.0
35
34
  Requires-Dist: SQLAlchemy~=2.0
35
+ Requires-Dist: requests[socks]<3
36
+ Requires-Dist: packaging
36
37
  Requires-Dist: python-dotenv
37
- Requires-Dist: PyYAML
38
- Requires-Dist: alembic
38
+ Requires-Dist: PyMySQL
39
39
  Provides-Extra: docs
40
- Requires-Dist: mkdocs-material~=9.5; extra == "docs"
41
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
42
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
43
- Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
44
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
45
40
  Requires-Dist: mkdocs~=1.5; extra == "docs"
46
41
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
42
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
43
+ Requires-Dist: zipp>=3.19.1; extra == "docs"
44
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
45
+ Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
47
46
  Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
48
47
  Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
49
- Requires-Dist: zipp>=3.19.1; extra == "docs"
50
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
48
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
49
+ Requires-Dist: mkdocs-material~=9.5; extra == "docs"
50
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
51
51
  Provides-Extra: dev
52
+ Requires-Dist: black; extra == "dev"
53
+ Requires-Dist: pylint; extra == "dev"
52
54
  Requires-Dist: isort; extra == "dev"
53
55
  Requires-Dist: flake8; extra == "dev"
54
- Requires-Dist: pylint; extra == "dev"
55
- Requires-Dist: black; extra == "dev"
56
56
  Provides-Extra: test
57
- Requires-Dist: coverage; extra == "test"
58
57
  Requires-Dist: tox; extra == "test"
58
+ Requires-Dist: coverage; extra == "test"
59
59
  Provides-Extra: psql
60
- Requires-Dist: colorama; extra == "psql"
61
- Requires-Dist: PyMySQL; extra == "psql"
62
- Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
63
- Requires-Dist: requests[socks]<3; extra == "psql"
64
- Requires-Dist: packaging; extra == "psql"
65
- Requires-Dist: inflection; extra == "psql"
66
- Requires-Dist: shtab; extra == "psql"
60
+ Requires-Dist: alembic; extra == "psql"
67
61
  Requires-Dist: domain2idna~=1.12.0; extra == "psql"
68
62
  Requires-Dist: setuptools>=65.5.1; extra == "psql"
63
+ Requires-Dist: inflection; extra == "psql"
64
+ Requires-Dist: shtab; extra == "psql"
65
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
66
+ Requires-Dist: PyYAML; extra == "psql"
67
+ Requires-Dist: colorama; extra == "psql"
69
68
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql"
70
69
  Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
71
70
  Requires-Dist: psycopg2; extra == "psql"
71
+ Requires-Dist: requests[socks]<3; extra == "psql"
72
+ Requires-Dist: packaging; extra == "psql"
72
73
  Requires-Dist: python-dotenv; extra == "psql"
73
- Requires-Dist: PyYAML; extra == "psql"
74
- Requires-Dist: alembic; extra == "psql"
74
+ Requires-Dist: PyMySQL; extra == "psql"
75
75
  Provides-Extra: psql-binary
76
- Requires-Dist: colorama; extra == "psql-binary"
77
- Requires-Dist: PyMySQL; extra == "psql-binary"
78
- Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
79
- Requires-Dist: requests[socks]<3; extra == "psql-binary"
80
- Requires-Dist: packaging; extra == "psql-binary"
81
- Requires-Dist: inflection; extra == "psql-binary"
82
- Requires-Dist: shtab; extra == "psql-binary"
83
- Requires-Dist: psycopg2-binary; extra == "psql-binary"
76
+ Requires-Dist: alembic; extra == "psql-binary"
84
77
  Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
85
78
  Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
79
+ Requires-Dist: inflection; extra == "psql-binary"
80
+ Requires-Dist: shtab; extra == "psql-binary"
81
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
82
+ Requires-Dist: PyYAML; extra == "psql-binary"
83
+ Requires-Dist: colorama; extra == "psql-binary"
86
84
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "psql-binary"
87
85
  Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
86
+ Requires-Dist: requests[socks]<3; extra == "psql-binary"
87
+ Requires-Dist: packaging; extra == "psql-binary"
88
88
  Requires-Dist: python-dotenv; extra == "psql-binary"
89
- Requires-Dist: PyYAML; extra == "psql-binary"
90
- Requires-Dist: alembic; extra == "psql-binary"
89
+ Requires-Dist: PyMySQL; extra == "psql-binary"
90
+ Requires-Dist: psycopg2-binary; extra == "psql-binary"
91
91
  Provides-Extra: postgresql
92
- Requires-Dist: colorama; extra == "postgresql"
93
- Requires-Dist: PyMySQL; extra == "postgresql"
94
- Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
95
- Requires-Dist: requests[socks]<3; extra == "postgresql"
96
- Requires-Dist: packaging; extra == "postgresql"
97
- Requires-Dist: inflection; extra == "postgresql"
98
- Requires-Dist: shtab; extra == "postgresql"
92
+ Requires-Dist: alembic; extra == "postgresql"
99
93
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
100
94
  Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
95
+ Requires-Dist: inflection; extra == "postgresql"
96
+ Requires-Dist: shtab; extra == "postgresql"
97
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
98
+ Requires-Dist: PyYAML; extra == "postgresql"
99
+ Requires-Dist: colorama; extra == "postgresql"
101
100
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql"
102
101
  Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
103
102
  Requires-Dist: psycopg2; extra == "postgresql"
103
+ Requires-Dist: requests[socks]<3; extra == "postgresql"
104
+ Requires-Dist: packaging; extra == "postgresql"
104
105
  Requires-Dist: python-dotenv; extra == "postgresql"
105
- Requires-Dist: PyYAML; extra == "postgresql"
106
- Requires-Dist: alembic; extra == "postgresql"
106
+ Requires-Dist: PyMySQL; extra == "postgresql"
107
107
  Provides-Extra: postgresql-binary
108
- Requires-Dist: colorama; extra == "postgresql-binary"
109
- Requires-Dist: PyMySQL; extra == "postgresql-binary"
110
- Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
111
- Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
112
- Requires-Dist: packaging; extra == "postgresql-binary"
113
- Requires-Dist: inflection; extra == "postgresql-binary"
114
- Requires-Dist: shtab; extra == "postgresql-binary"
115
- Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
108
+ Requires-Dist: alembic; extra == "postgresql-binary"
116
109
  Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
117
110
  Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
111
+ Requires-Dist: inflection; extra == "postgresql-binary"
112
+ Requires-Dist: shtab; extra == "postgresql-binary"
113
+ Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
114
+ Requires-Dist: PyYAML; extra == "postgresql-binary"
115
+ Requires-Dist: colorama; extra == "postgresql-binary"
118
116
  Requires-Dist: dnspython[DOH]~=2.6.0; extra == "postgresql-binary"
119
117
  Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
118
+ Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
119
+ Requires-Dist: packaging; extra == "postgresql-binary"
120
120
  Requires-Dist: python-dotenv; extra == "postgresql-binary"
121
- Requires-Dist: PyYAML; extra == "postgresql-binary"
122
- Requires-Dist: alembic; extra == "postgresql-binary"
121
+ Requires-Dist: PyMySQL; extra == "postgresql-binary"
122
+ Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
123
123
  Provides-Extra: full
124
- Requires-Dist: python-box[all]~=6.0.0; extra == "full"
125
- Requires-Dist: mkdocs-material~=9.5; extra == "full"
126
- Requires-Dist: packaging; extra == "full"
124
+ Requires-Dist: alembic; extra == "full"
125
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
126
+ Requires-Dist: colorama; extra == "full"
127
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
128
+ Requires-Dist: requests[socks]<3; extra == "full"
129
+ Requires-Dist: coverage; extra == "full"
130
+ Requires-Dist: tox; extra == "full"
131
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
132
+ Requires-Dist: shtab; extra == "full"
133
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
134
+ Requires-Dist: PyYAML; extra == "full"
135
+ Requires-Dist: PyMySQL; extra == "full"
136
+ Requires-Dist: pylint; extra == "full"
137
+ Requires-Dist: domain2idna~=1.12.0; extra == "full"
127
138
  Requires-Dist: inflection; extra == "full"
139
+ Requires-Dist: python-box[all]~=6.0.0; extra == "full"
128
140
  Requires-Dist: black; extra == "full"
129
- Requires-Dist: domain2idna~=1.12.0; extra == "full"
130
- Requires-Dist: setuptools>=65.5.1; extra == "full"
141
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
131
142
  Requires-Dist: SQLAlchemy~=2.0; extra == "full"
132
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
133
- Requires-Dist: PyYAML; extra == "full"
134
- Requires-Dist: alembic; extra == "full"
135
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
136
- Requires-Dist: coverage; extra == "full"
137
143
  Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
138
- Requires-Dist: shtab; extra == "full"
144
+ Requires-Dist: mkdocs-material~=9.5; extra == "full"
145
+ Requires-Dist: flake8; extra == "full"
146
+ Requires-Dist: mkdocs~=1.5; extra == "full"
147
+ Requires-Dist: zipp>=3.19.1; extra == "full"
148
+ Requires-Dist: setuptools>=65.5.1; extra == "full"
139
149
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
140
- Requires-Dist: tox; extra == "full"
141
- Requires-Dist: isort; extra == "full"
142
- Requires-Dist: colorama; extra == "full"
143
- Requires-Dist: PyMySQL; extra == "full"
144
150
  Requires-Dist: pymdown-extensions~=10.9; extra == "full"
145
- Requires-Dist: mkdocs~=1.5; extra == "full"
146
- Requires-Dist: pylint; extra == "full"
147
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
151
+ Requires-Dist: packaging; extra == "full"
148
152
  Requires-Dist: python-dotenv; extra == "full"
149
- Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
150
- Requires-Dist: requests[socks]<3; extra == "full"
153
+ Requires-Dist: isort; extra == "full"
151
154
  Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
152
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "full"
153
- Requires-Dist: zipp>=3.19.1; extra == "full"
154
- Requires-Dist: flake8; extra == "full"
155
155
  Provides-Extra: all
156
- Requires-Dist: python-box[all]~=6.0.0; extra == "all"
157
- Requires-Dist: mkdocs-material~=9.5; extra == "all"
158
- Requires-Dist: packaging; extra == "all"
156
+ Requires-Dist: alembic; extra == "all"
157
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
158
+ Requires-Dist: colorama; extra == "all"
159
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
160
+ Requires-Dist: requests[socks]<3; extra == "all"
161
+ Requires-Dist: coverage; extra == "all"
162
+ Requires-Dist: tox; extra == "all"
163
+ Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
164
+ Requires-Dist: shtab; extra == "all"
165
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
166
+ Requires-Dist: PyYAML; extra == "all"
167
+ Requires-Dist: PyMySQL; extra == "all"
168
+ Requires-Dist: pylint; extra == "all"
169
+ Requires-Dist: psycopg2-binary; extra == "all"
170
+ Requires-Dist: domain2idna~=1.12.0; extra == "all"
159
171
  Requires-Dist: inflection; extra == "all"
172
+ Requires-Dist: python-box[all]~=6.0.0; extra == "all"
160
173
  Requires-Dist: black; extra == "all"
161
- Requires-Dist: domain2idna~=1.12.0; extra == "all"
162
- Requires-Dist: setuptools>=65.5.1; extra == "all"
174
+ Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
163
175
  Requires-Dist: SQLAlchemy~=2.0; extra == "all"
164
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
165
- Requires-Dist: PyYAML; extra == "all"
166
- Requires-Dist: alembic; extra == "all"
167
- Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
168
- Requires-Dist: coverage; extra == "all"
169
176
  Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
170
- Requires-Dist: shtab; extra == "all"
177
+ Requires-Dist: mkdocs-material~=9.5; extra == "all"
178
+ Requires-Dist: flake8; extra == "all"
179
+ Requires-Dist: mkdocs~=1.5; extra == "all"
180
+ Requires-Dist: zipp>=3.19.1; extra == "all"
181
+ Requires-Dist: setuptools>=65.5.1; extra == "all"
171
182
  Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
172
- Requires-Dist: tox; extra == "all"
173
- Requires-Dist: psycopg2-binary; extra == "all"
174
- Requires-Dist: isort; extra == "all"
175
- Requires-Dist: colorama; extra == "all"
176
- Requires-Dist: PyMySQL; extra == "all"
177
183
  Requires-Dist: pymdown-extensions~=10.9; extra == "all"
178
- Requires-Dist: mkdocs~=1.5; extra == "all"
179
- Requires-Dist: pylint; extra == "all"
180
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
184
+ Requires-Dist: packaging; extra == "all"
181
185
  Requires-Dist: python-dotenv; extra == "all"
182
- Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
183
- Requires-Dist: requests[socks]<3; extra == "all"
186
+ Requires-Dist: isort; extra == "all"
184
187
  Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
185
- Requires-Dist: dnspython[DOH]~=2.6.0; extra == "all"
186
- Requires-Dist: zipp>=3.19.1; extra == "all"
187
- Requires-Dist: flake8; extra == "all"
188
188
 
189
189
  ![image](https://raw.githubusercontent.com/PyFunceble/logo/dev/Green/HD/RM.png)
190
190
 
@@ -4,7 +4,7 @@ PyFunceble/facility.py,sha256=hyEzCCTOgtAS0x88uEtv9xNwIXnDCDvgq5RHcPNDE-A,2626
4
4
  PyFunceble/factory.py,sha256=ETvTe1Ss3VaIhSBOj-ro80XFAYiknsGG9B5oKpubr2s,2576
5
5
  PyFunceble/logger.py,sha256=pmValhdu0XB34FrK1rSgOAhr4spQ8a3QbqQ26jpJHa0,16815
6
6
  PyFunceble/sessions.py,sha256=juHBKHSuVd-tAEIMRj3RXyGyUhZQLEBmeMssd_5qo1U,2568
7
- PyFunceble/storage.py,sha256=nqG7u6kLO80Y141dKR_H_yJS0a-gwbuD3ScqybfdMI8,5396
7
+ PyFunceble/storage.py,sha256=LF7wCAkhFwsJrqoo2Gjhddaq0XHDBAwOgLh1v0ceYeU,5396
8
8
  PyFunceble/storage_facility.py,sha256=uvW91dOTxF7-2nXxIp2xGI5sDRABBoGMA7D9xfemfGk,4819
9
9
  PyFunceble/checker/__init__.py,sha256=jSCfY25VNBrxLECSgNwU6kTGSl0bM1_JLl_UKvtKP6w,2430
10
10
  PyFunceble/checker/base.py,sha256=WP9Rjl6rvsq69oCaG4a5WDhoWofMpyxfa4K-WY27Gxw,13615
@@ -148,7 +148,7 @@ PyFunceble/cli/utils/testing.py,sha256=yobBqTpA-MT8_sPRMohCuP4ujeCfjUMg7DhOVHfD9
148
148
  PyFunceble/cli/utils/version.py,sha256=G-yLUVolaQouGz1qnQigT33VgH6EEUu8-Qm_QkkXfUo,13892
149
149
  PyFunceble/config/__init__.py,sha256=5t7ypzV6rpSz5IC0QwQMEbmWb0H_w3J917L6DC9NaWw,2454
150
150
  PyFunceble/config/compare.py,sha256=GLmrcAdCXX2SmWQph8kMG0hdDeKgr-LxMSzFGhkxb5E,13631
151
- PyFunceble/config/loader.py,sha256=syRD0jmR5Y9TU-aIGJJ_7zxKJSfYcAOG1jNv-YML3cY,22824
151
+ PyFunceble/config/loader.py,sha256=P3bkXdqOUxygME0C0Tb-qiaYM3wGeIbWmm6D-7J4Qes,22864
152
152
  PyFunceble/converter/__init__.py,sha256=xV1NBUxxzsArjJfhSj0c3HLXs0QPHrX196YsbVPvrbw,2436
153
153
  PyFunceble/converter/adblock_input_line2subject.py,sha256=88zGa0BJacMVIV4LkRXX0EqT9Fez8BTUw8pzas0AwPI,12925
154
154
  PyFunceble/converter/base.py,sha256=bhljvSmbqTiEHXkZ01WyD7XYXXxYG9VmW3RNRtcZlB0,4915
@@ -238,7 +238,7 @@ PyFunceble/helpers/directory.py,sha256=8Zj1bipT-znsJSXuOGMqgm0-OzuEz11RD3b9EmWSy
238
238
  PyFunceble/helpers/download.py,sha256=G9Jv1Kj3qKgYcJdNPEy9k3IWZBn_OoOZGRS_i0pV_5s,11261
239
239
  PyFunceble/helpers/environment_variable.py,sha256=7PlDw6OqWwIUnpf71V-IhGSUAe9jNQrS-Z4RNC-zVts,7313
240
240
  PyFunceble/helpers/exceptions.py,sha256=DTUWqjG7gUkIpv3ppQF_S_yC2w9ZKuOSAFQ5-_YXQ7M,2760
241
- PyFunceble/helpers/file.py,sha256=FU_KzUB7Jf-LyGPDK7N8m0OH3kHQFSpY1Wt7ZKGCwP8,6575
241
+ PyFunceble/helpers/file.py,sha256=ASJ0TusZKXVIfMJZXPguEdcAWEbIGVb36SJQ_cil75Q,6787
242
242
  PyFunceble/helpers/hash.py,sha256=X52JGAh8hxF_Ooy7FqxLOOATtv5LDflBbShtAgXpLIo,5034
243
243
  PyFunceble/helpers/list.py,sha256=teTpHvarS0yj1BKzggHhTTHKB5BSRfjkt4wY3Ya2pjk,5001
244
244
  PyFunceble/helpers/merge.py,sha256=IZGhP2UgFxFl-hpsReFsSRZ9ewL-SDmTkKNH4u7bI7E,6046
@@ -276,9 +276,9 @@ PyFunceble/utils/__init__.py,sha256=Vnhd0wNrWJulWwUUK-vlv5VWBiKfSnXtI2XH_FyYkBA,
276
276
  PyFunceble/utils/platform.py,sha256=JA6rc6Uyx6czNWR9917HGB-EZyMjMK17kUVagMtEEjs,3906
277
277
  PyFunceble/utils/profile.py,sha256=f9FsKuiN3ScftqqrZ3yGpcIFqGSf616dPT_QvBduqxw,4552
278
278
  PyFunceble/utils/version.py,sha256=LvSiIrQWztuQ1qT7ekiDvh5TateyVRGMFRui73O4wFQ,8371
279
- PyFunceble_dev-4.3.0a14.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
280
- PyFunceble_dev-4.3.0a14.dist-info/METADATA,sha256=4AVyFnooal83gmSj5mJKaXnQty_XV_RXWVJC5SZjUnk,46666
281
- PyFunceble_dev-4.3.0a14.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
282
- PyFunceble_dev-4.3.0a14.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
- PyFunceble_dev-4.3.0a14.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
- PyFunceble_dev-4.3.0a14.dist-info/RECORD,,
279
+ PyFunceble_dev-4.3.0a15.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
280
+ PyFunceble_dev-4.3.0a15.dist-info/METADATA,sha256=9FX8LRVLduMa19Z2UyT6QrSr8hqxZ2ivhWNAdOifC40,46666
281
+ PyFunceble_dev-4.3.0a15.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
282
+ PyFunceble_dev-4.3.0a15.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
283
+ PyFunceble_dev-4.3.0a15.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
284
+ PyFunceble_dev-4.3.0a15.dist-info/RECORD,,