PyFunceble-dev 4.3.0a4__py3-none-any.whl → 4.3.0a9__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.
- PyFunceble/cli/system/launcher.py +19 -11
- PyFunceble/query/platform.py +8 -13
- PyFunceble/storage.py +1 -1
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/METADATA +170 -58
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/RECORD +9 -9
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/WHEEL +1 -1
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/LICENSE +0 -0
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/entry_points.txt +0 -0
- {PyFunceble_dev-4.3.0a4.dist-info → PyFunceble_dev-4.3.0a9.dist-info}/top_level.txt +0 -0
@@ -651,16 +651,14 @@ class SystemLauncher(SystemBase):
|
|
651
651
|
|
652
652
|
max_breakoff = 120.0
|
653
653
|
|
654
|
-
initial_breakoff =
|
655
|
-
max_breakoff / PyFunceble.storage.CONFIGURATION.cli_testing.max_workers
|
656
|
-
)
|
654
|
+
initial_breakoff = 0.1 * self.tester_process_manager.max_worker
|
657
655
|
breakoff = initial_breakoff
|
658
656
|
|
659
657
|
while True:
|
658
|
+
protocol_data = {}
|
659
|
+
|
660
660
|
for next_contract in next(
|
661
|
-
query_tool.pull_contract(
|
662
|
-
PyFunceble.storage.CONFIGURATION.cli_testing.max_workers
|
663
|
-
)
|
661
|
+
query_tool.pull_contract(self.tester_process_manager.max_worker)
|
664
662
|
):
|
665
663
|
if "subject" not in next_contract or not next_contract["subject"]:
|
666
664
|
continue
|
@@ -682,16 +680,26 @@ class SystemLauncher(SystemBase):
|
|
682
680
|
|
683
681
|
self.ci_stop_in_the_middle_if_time_exceeded()
|
684
682
|
|
683
|
+
if (
|
684
|
+
self.tester_process_manager.input_queue.qsize()
|
685
|
+
>= self.tester_process_manager.max_worker
|
686
|
+
):
|
687
|
+
breakoff_multiplier = (
|
688
|
+
self.tester_process_manager.input_queue.qsize() * 2
|
689
|
+
)
|
690
|
+
|
691
|
+
if breakoff < max_breakoff:
|
692
|
+
breakoff += 0.1 * breakoff_multiplier
|
693
|
+
else:
|
694
|
+
breakoff = initial_breakoff
|
695
|
+
elif breakoff >= max_breakoff:
|
696
|
+
breakoff = initial_breakoff
|
697
|
+
|
685
698
|
if PyFunceble.storage.CONFIGURATION.cli_testing.display_mode.dots:
|
686
699
|
PyFunceble.cli.utils.stdout.print_single_line("S")
|
687
700
|
|
688
701
|
time.sleep(breakoff)
|
689
702
|
|
690
|
-
if breakoff < max_breakoff:
|
691
|
-
breakoff += 0.02
|
692
|
-
else:
|
693
|
-
breakoff = initial_breakoff
|
694
|
-
|
695
703
|
for protocol in self.testing_protocol:
|
696
704
|
self.ci_stop_in_the_middle_if_time_exceeded()
|
697
705
|
|
PyFunceble/query/platform.py
CHANGED
@@ -702,9 +702,7 @@ class PlatformQueryTool:
|
|
702
702
|
"shuffle": True,
|
703
703
|
}
|
704
704
|
|
705
|
-
if "none" in self.checker_priority:
|
706
|
-
params["shuffle"] = True
|
707
|
-
else:
|
705
|
+
if "none" not in self.checker_priority:
|
708
706
|
params["checker_type_priority"] = ",".join(self.checker_priority)
|
709
707
|
|
710
708
|
if "none" not in self.checker_exclude:
|
@@ -717,9 +715,9 @@ class PlatformQueryTool:
|
|
717
715
|
timeout=self.timeout * 10,
|
718
716
|
)
|
719
717
|
|
720
|
-
response_json = response.json()
|
721
|
-
|
722
718
|
if response.status_code == 200:
|
719
|
+
response_json = response.json()
|
720
|
+
|
723
721
|
PyFunceble.facility.Logger.debug(
|
724
722
|
"Successfully pulled next %r contracts. Response: %r", response_json
|
725
723
|
)
|
@@ -763,11 +761,7 @@ class PlatformQueryTool:
|
|
763
761
|
if not isinstance(contract_data, dict)
|
764
762
|
else contract_data
|
765
763
|
)
|
766
|
-
|
767
|
-
if contract_id != contract["subject"]["id"]:
|
768
|
-
url = f"{self.url_base}/v1/contracts/{contract_id}/delivery"
|
769
|
-
else:
|
770
|
-
url = f"{self.url_base}/v1/contracts/self-delivery"
|
764
|
+
url = f"{self.url_base}/v1/contracts/{contract_id}/delivery"
|
771
765
|
|
772
766
|
try:
|
773
767
|
response = self.session.post(
|
@@ -776,9 +770,9 @@ class PlatformQueryTool:
|
|
776
770
|
timeout=self.timeout * 10,
|
777
771
|
)
|
778
772
|
|
779
|
-
|
773
|
+
if response.status_code in (202, 200):
|
774
|
+
response_json = response.json()
|
780
775
|
|
781
|
-
if response.status_code == 200:
|
782
776
|
PyFunceble.facility.Logger.debug(
|
783
777
|
"Successfully delivered contract: %r. Response: %r",
|
784
778
|
contract_data,
|
@@ -790,6 +784,7 @@ class PlatformQueryTool:
|
|
790
784
|
)
|
791
785
|
|
792
786
|
return response_json
|
787
|
+
response_json = {}
|
793
788
|
except (requests.RequestException, json.decoder.JSONDecodeError):
|
794
789
|
response_json = {}
|
795
790
|
|
@@ -800,7 +795,7 @@ class PlatformQueryTool:
|
|
800
795
|
"Finished to deliver contract: %r", contract_data
|
801
796
|
)
|
802
797
|
|
803
|
-
return
|
798
|
+
return response_json
|
804
799
|
|
805
800
|
@ensure_modern_api
|
806
801
|
def push(
|
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.3.
|
64
|
+
PROJECT_VERSION: str = "4.3.0a9.dev (Blue Duckling: Tulip)"
|
65
65
|
|
66
66
|
DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
|
67
67
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: PyFunceble-dev
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.0a9
|
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
|
@@ -19,91 +19,176 @@ Classifier: Intended Audience :: Developers
|
|
19
19
|
Classifier: Programming Language :: Python
|
20
20
|
Classifier: Programming Language :: Python :: 3
|
21
21
|
Classifier: License :: OSI Approved
|
22
|
-
Requires-Python: >=3.
|
22
|
+
Requires-Python: >=3.9, <4
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist:
|
25
|
+
Requires-Dist: packaging
|
26
26
|
Requires-Dist: dnspython[doh]~=2.6.0
|
27
27
|
Requires-Dist: python-box[all]~=6.0.0
|
28
|
-
Requires-Dist: alembic
|
29
28
|
Requires-Dist: python-dotenv
|
30
|
-
Requires-Dist: cryptography~=42.0
|
31
|
-
Requires-Dist: inflection
|
32
|
-
Requires-Dist: colorama
|
33
|
-
Requires-Dist: packaging
|
34
|
-
Requires-Dist: PyYAML
|
35
29
|
Requires-Dist: requests[socks]<3
|
30
|
+
Requires-Dist: domain2idna~=1.12.0
|
31
|
+
Requires-Dist: colorama
|
36
32
|
Requires-Dist: setuptools>=65.5.1
|
37
|
-
Requires-Dist:
|
33
|
+
Requires-Dist: shtab
|
34
|
+
Requires-Dist: inflection
|
38
35
|
Requires-Dist: PyMySQL
|
39
|
-
Requires-Dist:
|
36
|
+
Requires-Dist: cryptography>=42.0
|
37
|
+
Requires-Dist: SQLAlchemy~=2.0
|
38
|
+
Requires-Dist: alembic
|
39
|
+
Requires-Dist: PyYAML
|
40
|
+
Provides-Extra: all
|
41
|
+
Requires-Dist: mkdocs~=1.5; extra == "all"
|
42
|
+
Requires-Dist: mkdocs-material~=9.5; extra == "all"
|
43
|
+
Requires-Dist: packaging; extra == "all"
|
44
|
+
Requires-Dist: mkdocs-section-index~=0.3; extra == "all"
|
45
|
+
Requires-Dist: requests[socks]<3; extra == "all"
|
46
|
+
Requires-Dist: mkdocstrings[python]~=0.26; extra == "all"
|
47
|
+
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "all"
|
48
|
+
Requires-Dist: setuptools>=65.5.1; extra == "all"
|
49
|
+
Requires-Dist: PyMySQL; extra == "all"
|
50
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "all"
|
51
|
+
Requires-Dist: cryptography>=42.0; extra == "all"
|
52
|
+
Requires-Dist: mkdocs-gen-files~=0.5; extra == "all"
|
53
|
+
Requires-Dist: flake8; extra == "all"
|
54
|
+
Requires-Dist: isort; extra == "all"
|
55
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "all"
|
56
|
+
Requires-Dist: colorama; extra == "all"
|
57
|
+
Requires-Dist: zipp>=3.19.1; extra == "all"
|
58
|
+
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "all"
|
59
|
+
Requires-Dist: shtab; extra == "all"
|
60
|
+
Requires-Dist: psycopg2-binary; extra == "all"
|
61
|
+
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "all"
|
62
|
+
Requires-Dist: dnspython[doh]~=2.6.0; extra == "all"
|
63
|
+
Requires-Dist: pymdown-extensions~=10.9; extra == "all"
|
64
|
+
Requires-Dist: pylint; extra == "all"
|
65
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "all"
|
66
|
+
Requires-Dist: tox; extra == "all"
|
67
|
+
Requires-Dist: black; extra == "all"
|
68
|
+
Requires-Dist: coverage; extra == "all"
|
69
|
+
Requires-Dist: python-dotenv; extra == "all"
|
70
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "all"
|
71
|
+
Requires-Dist: inflection; extra == "all"
|
72
|
+
Requires-Dist: alembic; extra == "all"
|
73
|
+
Requires-Dist: PyYAML; extra == "all"
|
40
74
|
Provides-Extra: dev
|
41
|
-
Requires-Dist: black; extra == "dev"
|
42
75
|
Requires-Dist: pylint; extra == "dev"
|
43
76
|
Requires-Dist: isort; extra == "dev"
|
77
|
+
Requires-Dist: black; extra == "dev"
|
44
78
|
Requires-Dist: flake8; extra == "dev"
|
45
79
|
Provides-Extra: docs
|
80
|
+
Requires-Dist: mkdocs~=1.5; extra == "docs"
|
81
|
+
Requires-Dist: mkdocs-material~=9.5; extra == "docs"
|
82
|
+
Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
|
83
|
+
Requires-Dist: zipp>=3.19.1; extra == "docs"
|
46
84
|
Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
|
47
|
-
Requires-Dist: mkdocs-
|
48
|
-
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
|
85
|
+
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
|
49
86
|
Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
|
50
|
-
Requires-Dist: zipp>=3.19.1; extra == "docs"
|
51
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
|
52
87
|
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
|
53
|
-
Requires-Dist: mkdocs~=1.
|
54
|
-
Requires-Dist: mkdocs-
|
55
|
-
Requires-Dist: mkdocs-
|
56
|
-
Requires-Dist: mkdocs-material~=9.5; extra == "docs"
|
88
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
|
89
|
+
Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
|
90
|
+
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
|
57
91
|
Provides-Extra: full
|
58
|
-
Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
|
59
|
-
Requires-Dist: shtab; extra == "full"
|
60
|
-
Requires-Dist: pylint; extra == "full"
|
61
|
-
Requires-Dist: pymdown-extensions~=10.9; extra == "full"
|
62
|
-
Requires-Dist: zipp>=3.19.1; extra == "full"
|
63
|
-
Requires-Dist: inflection; extra == "full"
|
64
|
-
Requires-Dist: colorama; extra == "full"
|
65
|
-
Requires-Dist: PyYAML; extra == "full"
|
66
|
-
Requires-Dist: setuptools>=65.5.1; extra == "full"
|
67
|
-
Requires-Dist: SQLAlchemy[postgresql_psycopg2binary]~=2.0; extra == "full"
|
68
|
-
Requires-Dist: coverage; extra == "full"
|
69
92
|
Requires-Dist: mkdocs~=1.5; extra == "full"
|
70
93
|
Requires-Dist: mkdocs-material~=9.5; extra == "full"
|
71
|
-
Requires-Dist: PyMySQL; extra == "full"
|
72
|
-
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
|
73
|
-
Requires-Dist: tox; extra == "full"
|
74
|
-
Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
|
75
|
-
Requires-Dist: alembic; extra == "full"
|
76
|
-
Requires-Dist: black; extra == "full"
|
77
94
|
Requires-Dist: packaging; extra == "full"
|
95
|
+
Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
|
78
96
|
Requires-Dist: requests[socks]<3; extra == "full"
|
97
|
+
Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
|
98
|
+
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
|
99
|
+
Requires-Dist: setuptools>=65.5.1; extra == "full"
|
100
|
+
Requires-Dist: PyMySQL; extra == "full"
|
101
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
|
102
|
+
Requires-Dist: cryptography>=42.0; extra == "full"
|
103
|
+
Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
|
104
|
+
Requires-Dist: flake8; extra == "full"
|
105
|
+
Requires-Dist: isort; extra == "full"
|
106
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "full"
|
107
|
+
Requires-Dist: colorama; extra == "full"
|
108
|
+
Requires-Dist: zipp>=3.19.1; extra == "full"
|
79
109
|
Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
|
110
|
+
Requires-Dist: shtab; extra == "full"
|
111
|
+
Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
|
80
112
|
Requires-Dist: dnspython[doh]~=2.6.0; extra == "full"
|
81
|
-
Requires-Dist:
|
82
|
-
Requires-Dist:
|
83
|
-
Requires-Dist:
|
113
|
+
Requires-Dist: pymdown-extensions~=10.9; extra == "full"
|
114
|
+
Requires-Dist: pylint; extra == "full"
|
115
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "full"
|
116
|
+
Requires-Dist: tox; extra == "full"
|
117
|
+
Requires-Dist: black; extra == "full"
|
118
|
+
Requires-Dist: coverage; extra == "full"
|
84
119
|
Requires-Dist: python-dotenv; extra == "full"
|
85
|
-
Requires-Dist: cryptography~=42.0; extra == "full"
|
86
|
-
Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
|
87
|
-
Requires-Dist: isort; extra == "full"
|
88
|
-
Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
|
89
120
|
Requires-Dist: domain2idna~=1.12.0; extra == "full"
|
121
|
+
Requires-Dist: inflection; extra == "full"
|
122
|
+
Requires-Dist: alembic; extra == "full"
|
123
|
+
Requires-Dist: PyYAML; extra == "full"
|
124
|
+
Provides-Extra: postgresql
|
125
|
+
Requires-Dist: packaging; extra == "postgresql"
|
126
|
+
Requires-Dist: dnspython[doh]~=2.6.0; extra == "postgresql"
|
127
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql"
|
128
|
+
Requires-Dist: python-dotenv; extra == "postgresql"
|
129
|
+
Requires-Dist: requests[socks]<3; extra == "postgresql"
|
130
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "postgresql"
|
131
|
+
Requires-Dist: colorama; extra == "postgresql"
|
132
|
+
Requires-Dist: setuptools>=65.5.1; extra == "postgresql"
|
133
|
+
Requires-Dist: shtab; extra == "postgresql"
|
134
|
+
Requires-Dist: inflection; extra == "postgresql"
|
135
|
+
Requires-Dist: PyMySQL; extra == "postgresql"
|
136
|
+
Requires-Dist: cryptography>=42.0; extra == "postgresql"
|
137
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql"
|
138
|
+
Requires-Dist: psycopg2; extra == "postgresql"
|
139
|
+
Requires-Dist: alembic; extra == "postgresql"
|
140
|
+
Requires-Dist: PyYAML; extra == "postgresql"
|
141
|
+
Provides-Extra: postgresql-binary
|
142
|
+
Requires-Dist: packaging; extra == "postgresql-binary"
|
143
|
+
Requires-Dist: dnspython[doh]~=2.6.0; extra == "postgresql-binary"
|
144
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "postgresql-binary"
|
145
|
+
Requires-Dist: python-dotenv; extra == "postgresql-binary"
|
146
|
+
Requires-Dist: requests[socks]<3; extra == "postgresql-binary"
|
147
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "postgresql-binary"
|
148
|
+
Requires-Dist: colorama; extra == "postgresql-binary"
|
149
|
+
Requires-Dist: setuptools>=65.5.1; extra == "postgresql-binary"
|
150
|
+
Requires-Dist: shtab; extra == "postgresql-binary"
|
151
|
+
Requires-Dist: inflection; extra == "postgresql-binary"
|
152
|
+
Requires-Dist: PyMySQL; extra == "postgresql-binary"
|
153
|
+
Requires-Dist: cryptography>=42.0; extra == "postgresql-binary"
|
154
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "postgresql-binary"
|
155
|
+
Requires-Dist: psycopg2-binary; extra == "postgresql-binary"
|
156
|
+
Requires-Dist: alembic; extra == "postgresql-binary"
|
157
|
+
Requires-Dist: PyYAML; extra == "postgresql-binary"
|
90
158
|
Provides-Extra: psql
|
91
|
-
Requires-Dist:
|
159
|
+
Requires-Dist: packaging; extra == "psql"
|
92
160
|
Requires-Dist: dnspython[doh]~=2.6.0; extra == "psql"
|
93
161
|
Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
|
94
|
-
Requires-Dist: alembic; extra == "psql"
|
95
162
|
Requires-Dist: python-dotenv; extra == "psql"
|
96
|
-
Requires-Dist: cryptography~=42.0; extra == "psql"
|
97
|
-
Requires-Dist: inflection; extra == "psql"
|
98
|
-
Requires-Dist: colorama; extra == "psql"
|
99
|
-
Requires-Dist: packaging; extra == "psql"
|
100
|
-
Requires-Dist: PyYAML; extra == "psql"
|
101
163
|
Requires-Dist: requests[socks]<3; extra == "psql"
|
164
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "psql"
|
165
|
+
Requires-Dist: colorama; extra == "psql"
|
102
166
|
Requires-Dist: setuptools>=65.5.1; extra == "psql"
|
103
|
-
Requires-Dist:
|
104
|
-
Requires-Dist:
|
167
|
+
Requires-Dist: shtab; extra == "psql"
|
168
|
+
Requires-Dist: inflection; extra == "psql"
|
105
169
|
Requires-Dist: PyMySQL; extra == "psql"
|
106
|
-
Requires-Dist:
|
170
|
+
Requires-Dist: cryptography>=42.0; extra == "psql"
|
171
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "psql"
|
172
|
+
Requires-Dist: psycopg2; extra == "psql"
|
173
|
+
Requires-Dist: alembic; extra == "psql"
|
174
|
+
Requires-Dist: PyYAML; extra == "psql"
|
175
|
+
Provides-Extra: psql-binary
|
176
|
+
Requires-Dist: packaging; extra == "psql-binary"
|
177
|
+
Requires-Dist: dnspython[doh]~=2.6.0; extra == "psql-binary"
|
178
|
+
Requires-Dist: python-box[all]~=6.0.0; extra == "psql-binary"
|
179
|
+
Requires-Dist: python-dotenv; extra == "psql-binary"
|
180
|
+
Requires-Dist: requests[socks]<3; extra == "psql-binary"
|
181
|
+
Requires-Dist: domain2idna~=1.12.0; extra == "psql-binary"
|
182
|
+
Requires-Dist: colorama; extra == "psql-binary"
|
183
|
+
Requires-Dist: setuptools>=65.5.1; extra == "psql-binary"
|
184
|
+
Requires-Dist: shtab; extra == "psql-binary"
|
185
|
+
Requires-Dist: inflection; extra == "psql-binary"
|
186
|
+
Requires-Dist: PyMySQL; extra == "psql-binary"
|
187
|
+
Requires-Dist: cryptography>=42.0; extra == "psql-binary"
|
188
|
+
Requires-Dist: SQLAlchemy~=2.0; extra == "psql-binary"
|
189
|
+
Requires-Dist: psycopg2-binary; extra == "psql-binary"
|
190
|
+
Requires-Dist: alembic; extra == "psql-binary"
|
191
|
+
Requires-Dist: PyYAML; extra == "psql-binary"
|
107
192
|
Provides-Extra: test
|
108
193
|
Requires-Dist: coverage; extra == "test"
|
109
194
|
Requires-Dist: tox; extra == "test"
|
@@ -156,6 +241,7 @@ Happy testing with PyFunceble!
|
|
156
241
|
- [Installation](#installation)
|
157
242
|
- [Packages \& Versioning](#packages--versioning)
|
158
243
|
- [PyPi - Python Package Index](#pypi---python-package-index)
|
244
|
+
- [Optional Dependencies](#optional-dependencies)
|
159
245
|
- [pyfunceble](#pyfunceble)
|
160
246
|
- [pyfunceble-dev](#pyfunceble-dev)
|
161
247
|
- [Container Image Registry](#container-image-registry)
|
@@ -219,10 +305,36 @@ the OS specific packages _(see below)_.
|
|
219
305
|
Here is an overview of the packages and where they are hosted.
|
220
306
|
|
221
307
|
| Package | PyPi Link |
|
222
|
-
|
308
|
+
| -------------- | ---------------------------------------- |
|
223
309
|
| pyfunceble | https://pypi.org/project/PyFunceble |
|
224
310
|
| pyfunceble-dev | https://pypi.org/project/PyFunceblee-dev |
|
225
311
|
|
312
|
+
### Optional Dependencies
|
313
|
+
|
314
|
+
The following dependencies are optional and can be installed if you need them.
|
315
|
+
|
316
|
+
| Dependency | Description |
|
317
|
+
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
318
|
+
| `all` | Install all functional dependencies. Basically all but `dev`, `test` and `docs`. _When a binary and non binary version is available, the binary version is installed._ |
|
319
|
+
| `full` | Install all dependencies listed below. _When a binary and non binary version is available, the binary version is installed._ |
|
320
|
+
| `psql`, `postgresql` | **Build** and install the dependencies required to interact with PostgreSQL. |
|
321
|
+
| `psql-binary`, `postgresql-binary` | **Install** the dependencies required to interact with PostgreSQL - from binary. |
|
322
|
+
| `docs` | Install the dependencies required to build the documentation. |
|
323
|
+
| `test` | Install the dependencies required to run the tests. |
|
324
|
+
| `dev` | Install the dependencies required to develop PyFunceble. |
|
325
|
+
|
326
|
+
They are intended to be installed through the following syntax:
|
327
|
+
|
328
|
+
```shell
|
329
|
+
pip3 install --user {pkg}[{dependency}]
|
330
|
+
```
|
331
|
+
|
332
|
+
As an example if you want to install the `docs` and `test` dependencies, you should run:
|
333
|
+
|
334
|
+
```shell
|
335
|
+
pip3 install --user pyfunceble[docs,test]
|
336
|
+
```
|
337
|
+
|
226
338
|
### pyfunceble
|
227
339
|
|
228
340
|
You can install the **pyfunceble** through `pip3`:
|
@@ -255,7 +367,7 @@ is available. :smile:
|
|
255
367
|
Here is an overview of the packages and where they are hosted.
|
256
368
|
|
257
369
|
| Host | Package | Link |
|
258
|
-
|
370
|
+
| ---------- | -------------- | -------------------------------------------------------------------------------------------------------- |
|
259
371
|
| Docker Hub | pyfunceble | [https://hub.docker.com/r/pyfunceble/pyfunceble](https://hub.docker.com/r/pyfunceble/pyfunceble) |
|
260
372
|
| Docker Hub | pyfunceble-dev | [https://hub.docker.com/r/pyfunceble/pyfunceble-dev](https://hub.docker.com/r/pyfunceble/pyfunceble-dev) |
|
261
373
|
|
@@ -305,7 +417,7 @@ this is probably for you.
|
|
305
417
|
Here is an overview of the packages and where they are hosted.
|
306
418
|
|
307
419
|
| Host | Package | Repository |
|
308
|
-
|
420
|
+
| ------ | -------------- | ----------------------------------------------------------------------- |
|
309
421
|
| GitHub | pyfunceble | `git+https://github.com/funilrys/PyFunceble.git@master#egg=PyFunceble` |
|
310
422
|
| GitHub | pyfunceble-dev | `git+https://github.com/funilrys/PyFunceble.git@dev#egg=PyFunceble-dev` |
|
311
423
|
| GitLab | pyfunceble | `git+https://gitlab.com/funilrys/PyFunceble.git@master#egg=PyFunceble` |
|
@@ -474,7 +586,7 @@ From source:
|
|
474
586
|
|
475
587
|
```shell
|
476
588
|
# Install dependencies.
|
477
|
-
pip install --user
|
589
|
+
pip install --user .[docs]
|
478
590
|
# Serve documentation locally.
|
479
591
|
mkdocs serve
|
480
592
|
# Open Documentation with browser.
|
@@ -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=
|
7
|
+
PyFunceble/storage.py,sha256=olXohBR0lHltRTh_b1w3fMFYCa5POQzcaIzK_mbMZfs,5453
|
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
|
@@ -138,7 +138,7 @@ PyFunceble/cli/scripts/public_suffix.py,sha256=F0aCE5mAB6HJOcqq00iR_RsU24kfuB0S-
|
|
138
138
|
PyFunceble/cli/system/__init__.py,sha256=De7iCb3jgTi6NiPRsWwlEN7syLg3XTqE5qU90U4B0Sg,2508
|
139
139
|
PyFunceble/cli/system/base.py,sha256=f_3bvihJ1YlslxZCeN_XJLh62r96RMQAE4XFLCJUXYw,4874
|
140
140
|
PyFunceble/cli/system/integrator.py,sha256=7CdYWhFPVG9yu17r7JLCkK__SWsDyCfj5FTRqC2ykVM,12332
|
141
|
-
PyFunceble/cli/system/launcher.py,sha256=
|
141
|
+
PyFunceble/cli/system/launcher.py,sha256=KNYsrh7DOOCdlfFfMvYw4nRlFxgDH_QQ9qTkU_1XsEo,46296
|
142
142
|
PyFunceble/cli/utils/__init__.py,sha256=ZoqkMMJCwa5lWxOvK0LyU1BJ7m4F1WPlgCva42s8As8,2451
|
143
143
|
PyFunceble/cli/utils/ascii_logo.py,sha256=wYHrkFfHPrzLPE50ELIDDtQKBdDsyz2ekHMuiJM290Q,4222
|
144
144
|
PyFunceble/cli/utils/sort.py,sha256=cffXEaDgc10MXBG4BbUavWJGm886gEwl_NwyodUQ80Q,4361
|
@@ -244,7 +244,7 @@ PyFunceble/helpers/merge.py,sha256=IZGhP2UgFxFl-hpsReFsSRZ9ewL-SDmTkKNH4u7bI7E,6
|
|
244
244
|
PyFunceble/helpers/regex.py,sha256=qZDE3eAd7jeZTE-WrfZBE9YmCKH114XLlytkYbtjusM,6923
|
245
245
|
PyFunceble/query/__init__.py,sha256=OXBccXLI3j_oCQjNx-_t8YkPUHwg8aZHyKwMj6YmW54,2500
|
246
246
|
PyFunceble/query/http_status_code.py,sha256=IUDjSnUbOn4smtXnm-VgKduWOsGiPX0HJEqKFZUhXyo,11763
|
247
|
-
PyFunceble/query/platform.py,sha256=
|
247
|
+
PyFunceble/query/platform.py,sha256=UNAINz9ob9dX23JyOCvl_B4eHtjnecC4GLNFIP4npCY,31460
|
248
248
|
PyFunceble/query/dns/__init__.py,sha256=kt-JmtbbWD5yaTkifiB4HRxV1Ok99vi3ylt8_bQhHN4,2465
|
249
249
|
PyFunceble/query/dns/nameserver.py,sha256=eKjtrhxtm75GQ7Zhw5L-NBBfYATP5cujJyzdCDiQ2Mk,9782
|
250
250
|
PyFunceble/query/dns/query_tool.py,sha256=-lPLCsb69pGt_mjRseVKwlWfJ9dw7YD7f9-AqVWEBjU,32781
|
@@ -275,9 +275,9 @@ PyFunceble/utils/__init__.py,sha256=Vnhd0wNrWJulWwUUK-vlv5VWBiKfSnXtI2XH_FyYkBA,
|
|
275
275
|
PyFunceble/utils/platform.py,sha256=JA6rc6Uyx6czNWR9917HGB-EZyMjMK17kUVagMtEEjs,3906
|
276
276
|
PyFunceble/utils/profile.py,sha256=f9FsKuiN3ScftqqrZ3yGpcIFqGSf616dPT_QvBduqxw,4552
|
277
277
|
PyFunceble/utils/version.py,sha256=LvSiIrQWztuQ1qT7ekiDvh5TateyVRGMFRui73O4wFQ,8371
|
278
|
-
PyFunceble_dev-4.3.
|
279
|
-
PyFunceble_dev-4.3.
|
280
|
-
PyFunceble_dev-4.3.
|
281
|
-
PyFunceble_dev-4.3.
|
282
|
-
PyFunceble_dev-4.3.
|
283
|
-
PyFunceble_dev-4.3.
|
278
|
+
PyFunceble_dev-4.3.0a9.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
|
279
|
+
PyFunceble_dev-4.3.0a9.dist-info/METADATA,sha256=i7br12pvhi35VgbUJUjurWrlmgNSIdS8KRP4s4-JwpQ,47030
|
280
|
+
PyFunceble_dev-4.3.0a9.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
281
|
+
PyFunceble_dev-4.3.0a9.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
|
282
|
+
PyFunceble_dev-4.3.0a9.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
|
283
|
+
PyFunceble_dev-4.3.0a9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|