PyFunceble-dev 4.3.0a1__py3-none-any.whl → 4.3.0a2__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.
@@ -74,6 +74,8 @@ class ConfigComparison:
74
74
  "repo",
75
75
  "requirements",
76
76
  "user_agents",
77
+ "api_date_format",
78
+ "api_no_referrer",
77
79
  ]
78
80
  DELETED_CORE: List[str] = [
79
81
  "dns_lookup_over_tcp",
@@ -750,14 +750,8 @@ http_codes:
750
750
  - 510
751
751
  - 511
752
752
 
753
- links:
754
- # Provides some of the non hard-coded URLs.
755
-
756
- # WARNING:
757
- # The parameters listed bellow are not implemented yet as the
758
- # underlaying infrastructure will be rewritten.
759
- api_date_format: "https://pyfunceble.funilrys.com/api/date-format"
760
- api_no_referrer: "https://pyfunceble.funilrys.com/api/no-referrer"
753
+ # Not Implemented yet. Reserved for future usage and implementation.
754
+ links: {}
761
755
 
762
756
  platform:
763
757
  # Provides everything related to the platform.
@@ -305,7 +305,7 @@ class SQLDBDatasetBase(DBDatasetBase):
305
305
  if "expiration_date" not in row and "epoch" not in row:
306
306
  raise exception
307
307
 
308
- y2k38_limit = datetime(2037, 12, 31, 0, 0)
308
+ y2k38_limit = datetime(2035, 12, 31, 0, 0)
309
309
  new_date = datetime.fromtimestamp(float(row["epoch"]), timezone.utc)
310
310
  new_date -= new_date - y2k38_limit
311
311
 
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.0a1.dev (Blue Duckling: Tulip)"
64
+ PROJECT_VERSION: str = "4.3.0a2.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.0a1
3
+ Version: 4.3.0a2
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,88 +22,88 @@ Classifier: License :: OSI Approved
22
22
  Requires-Python: >=3.8, <4
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: setuptools>=65.5.1
25
+ Requires-Dist: python-box[all]~=6.0.0
26
+ Requires-Dist: domain2idna~=1.12.0
27
+ Requires-Dist: cryptography~=42.0
28
+ Requires-Dist: packaging
26
29
  Requires-Dist: requests[socks]<3
30
+ Requires-Dist: dnspython[doh]~=2.6.0
31
+ Requires-Dist: python-dotenv
27
32
  Requires-Dist: inflection
28
- Requires-Dist: packaging
29
- Requires-Dist: colorama
30
33
  Requires-Dist: PyMySQL
31
34
  Requires-Dist: PyYAML
32
- Requires-Dist: python-box[all]~=6.0.0
35
+ Requires-Dist: setuptools>=65.5.1
36
+ Requires-Dist: alembic
33
37
  Requires-Dist: shtab
34
- Requires-Dist: python-dotenv
35
- Requires-Dist: dnspython[doh]~=2.6.0
36
38
  Requires-Dist: SQLAlchemy[postgresql-psycopg2binary]~=2.0
37
- Requires-Dist: cryptography~=42.0
38
- Requires-Dist: alembic
39
- Requires-Dist: domain2idna~=1.12.0
39
+ Requires-Dist: colorama
40
40
  Provides-Extra: dev
41
- Requires-Dist: isort; extra == "dev"
42
41
  Requires-Dist: black; extra == "dev"
43
42
  Requires-Dist: flake8; extra == "dev"
44
43
  Requires-Dist: pylint; extra == "dev"
44
+ Requires-Dist: isort; extra == "dev"
45
45
  Provides-Extra: docs
46
- Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
47
- Requires-Dist: mkdocs-material~=9.5; extra == "docs"
48
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
49
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
50
- Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
51
- Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
52
46
  Requires-Dist: mkdocstrings[python]~=0.26; extra == "docs"
53
- Requires-Dist: zipp>=3.19.1; extra == "docs"
54
- Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
55
47
  Requires-Dist: mkdocs~=1.5; extra == "docs"
48
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "docs"
49
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "docs"
56
50
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "docs"
51
+ Requires-Dist: mkdocs-literate-nav~=0.6; extra == "docs"
52
+ Requires-Dist: pymdown-extensions~=10.9; extra == "docs"
53
+ Requires-Dist: zipp>=3.19.1; extra == "docs"
54
+ Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "docs"
55
+ Requires-Dist: mkdocs-material~=9.5; extra == "docs"
56
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "docs"
57
57
  Provides-Extra: full
58
- Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
59
- Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
60
- Requires-Dist: python-dotenv; extra == "full"
61
- Requires-Dist: SQLAlchemy[postgresql-psycopg2binary]~=2.0; extra == "full"
58
+ Requires-Dist: cryptography~=42.0; extra == "full"
62
59
  Requires-Dist: pymdown-extensions~=10.9; extra == "full"
60
+ Requires-Dist: dnspython[doh]~=2.6.0; extra == "full"
61
+ Requires-Dist: isort; extra == "full"
63
62
  Requires-Dist: mkdocs-git-authors-plugin~=0.9; extra == "full"
64
- Requires-Dist: tox; extra == "full"
65
- Requires-Dist: pylint; extra == "full"
63
+ Requires-Dist: alembic; extra == "full"
64
+ Requires-Dist: SQLAlchemy[postgresql-psycopg2binary]~=2.0; extra == "full"
65
+ Requires-Dist: flake8; extra == "full"
66
+ Requires-Dist: packaging; extra == "full"
67
+ Requires-Dist: python-dotenv; extra == "full"
68
+ Requires-Dist: inflection; extra == "full"
69
+ Requires-Dist: PyMySQL; extra == "full"
66
70
  Requires-Dist: shtab; extra == "full"
71
+ Requires-Dist: mkdocstrings[python]~=0.26; extra == "full"
72
+ Requires-Dist: mkdocs~=1.5; extra == "full"
73
+ Requires-Dist: mkdocs-section-index~=0.3; extra == "full"
74
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
67
75
  Requires-Dist: mkdocs-macros-plugin~=1.2; extra == "full"
68
- Requires-Dist: mkdocs-material~=9.5; extra == "full"
69
- Requires-Dist: colorama; extra == "full"
70
76
  Requires-Dist: mkdocs-literate-nav~=0.6; extra == "full"
71
- Requires-Dist: PyMySQL; extra == "full"
72
- Requires-Dist: dnspython[doh]~=2.6.0; extra == "full"
73
- Requires-Dist: setuptools>=65.5.1; extra == "full"
74
- Requires-Dist: isort; extra == "full"
75
- Requires-Dist: inflection; extra == "full"
76
- Requires-Dist: packaging; extra == "full"
77
- Requires-Dist: python-box[all]~=6.0.0; extra == "full"
78
- Requires-Dist: black; extra == "full"
79
- Requires-Dist: zipp>=3.19.1; extra == "full"
80
- Requires-Dist: cryptography~=42.0; extra == "full"
81
77
  Requires-Dist: requests[socks]<3; extra == "full"
82
- Requires-Dist: domain2idna~=1.12.0; extra == "full"
83
- Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
84
- Requires-Dist: mkdocs-git-revision-date-localized-plugin~=1.2; extra == "full"
85
78
  Requires-Dist: PyYAML; extra == "full"
86
- Requires-Dist: mkdocs~=1.5; extra == "full"
79
+ Requires-Dist: mkdocs-material~=9.5; extra == "full"
80
+ Requires-Dist: colorama; extra == "full"
81
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "full"
82
+ Requires-Dist: python-box[all]~=6.0.0; extra == "full"
87
83
  Requires-Dist: coverage; extra == "full"
88
- Requires-Dist: flake8; extra == "full"
89
- Requires-Dist: alembic; extra == "full"
84
+ Requires-Dist: domain2idna~=1.12.0; extra == "full"
85
+ Requires-Dist: pylint; extra == "full"
86
+ Requires-Dist: zipp>=3.19.1; extra == "full"
87
+ Requires-Dist: black; extra == "full"
88
+ Requires-Dist: setuptools>=65.5.1; extra == "full"
89
+ Requires-Dist: tox; extra == "full"
90
90
  Provides-Extra: psql
91
- Requires-Dist: setuptools>=65.5.1; extra == "psql"
91
+ Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
92
+ Requires-Dist: domain2idna~=1.12.0; extra == "psql"
93
+ Requires-Dist: cryptography~=42.0; extra == "psql"
94
+ Requires-Dist: packaging; extra == "psql"
92
95
  Requires-Dist: requests[socks]<3; extra == "psql"
93
- Requires-Dist: inflection; extra == "psql"
96
+ Requires-Dist: dnspython[doh]~=2.6.0; extra == "psql"
94
97
  Requires-Dist: psycopg2; extra == "psql"
95
- Requires-Dist: packaging; extra == "psql"
96
- Requires-Dist: colorama; extra == "psql"
98
+ Requires-Dist: python-dotenv; extra == "psql"
99
+ Requires-Dist: inflection; extra == "psql"
97
100
  Requires-Dist: PyMySQL; extra == "psql"
98
101
  Requires-Dist: PyYAML; extra == "psql"
99
- Requires-Dist: python-box[all]~=6.0.0; extra == "psql"
102
+ Requires-Dist: setuptools>=65.5.1; extra == "psql"
103
+ Requires-Dist: alembic; extra == "psql"
100
104
  Requires-Dist: shtab; extra == "psql"
101
- Requires-Dist: python-dotenv; extra == "psql"
102
- Requires-Dist: dnspython[doh]~=2.6.0; extra == "psql"
103
105
  Requires-Dist: SQLAlchemy[postgresql-psycopg2binary]~=2.0; extra == "psql"
104
- Requires-Dist: cryptography~=42.0; extra == "psql"
105
- Requires-Dist: alembic; extra == "psql"
106
- Requires-Dist: domain2idna~=1.12.0; extra == "psql"
106
+ Requires-Dist: colorama; extra == "psql"
107
107
  Provides-Extra: test
108
108
  Requires-Dist: tox; extra == "test"
109
109
  Requires-Dist: coverage; extra == "test"
@@ -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=6GRLCZisSnTCfuZN4ph6HpMVGic7yzv11CyhIAjbbYg,5453
7
+ PyFunceble/storage.py,sha256=Tr3HJoYxQwxvLOeZgyanb-_G6bhMuYuBVDoXpip2Evk,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
@@ -146,7 +146,7 @@ PyFunceble/cli/utils/stdout.py,sha256=5nk-pYKC19da60FexsCAWVPSx_75IqYlnThNT8QbDl
146
146
  PyFunceble/cli/utils/testing.py,sha256=yobBqTpA-MT8_sPRMohCuP4ujeCfjUMg7DhOVHfD95w,10184
147
147
  PyFunceble/cli/utils/version.py,sha256=GUIXO5hlt2uDpQS8_6QtXMaZC4Q7dpmY8fhTTRdtApk,13460
148
148
  PyFunceble/config/__init__.py,sha256=5t7ypzV6rpSz5IC0QwQMEbmWb0H_w3J917L6DC9NaWw,2454
149
- PyFunceble/config/compare.py,sha256=x7XeGaSwIdISiBsdvAu4Qg9ZtD1xFG5Wvh9wzZHcqe8,13577
149
+ PyFunceble/config/compare.py,sha256=GLmrcAdCXX2SmWQph8kMG0hdDeKgr-LxMSzFGhkxb5E,13631
150
150
  PyFunceble/config/loader.py,sha256=J7hVhSjYR77pX4mUrh2JNtCb2HAlwyu2UIqdizdXgKs,19428
151
151
  PyFunceble/converter/__init__.py,sha256=xV1NBUxxzsArjJfhSj0c3HLXs0QPHrX196YsbVPvrbw,2436
152
152
  PyFunceble/converter/adblock_input_line2subject.py,sha256=88zGa0BJacMVIV4LkRXX0EqT9Fez8BTUw8pzas0AwPI,12925
@@ -184,7 +184,7 @@ PyFunceble/data/alembic/postgresql/env.py,sha256=UfJff9bY99TTC0z9bQgsm17NqsGnLmz
184
184
  PyFunceble/data/alembic/postgresql/script.py.mako,sha256=8_xgA-gm_OhehnO7CiIijWgnm00ZlszEHtIHrAYFJl0,494
185
185
  PyFunceble/data/alembic/postgresql/versions/__init__.py,sha256=5E57ZZeUcnx4sgc3LJh6e6bjgeaQhS4W-f2UVuUYsrs,2452
186
186
  PyFunceble/data/alembic/postgresql/versions/a32ac5d66eee_initial_version.py,sha256=xJdnoCnHAG1vmt-nBeomuIEDRwUK1Upv1mtkUt1txQM,2487
187
- PyFunceble/data/infrastructure/.PyFunceble_production.yaml,sha256=-MwGqrsmsz9AuZH63xivw8ywd8FIln7g1wSrafY1ch4,24884
187
+ PyFunceble/data/infrastructure/.PyFunceble_production.yaml,sha256=gw0EUuaANnTMZ7xJAeevZXodJXBnB9lVMbJ81uhCADY,24636
188
188
  PyFunceble/data/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
189
  PyFunceble/data/infrastructure/dir_structure_production.json,sha256=XpWin49SkoWu3pvnsoNlbNh6j9MlTGVKkvTmX99jZkM,5722
190
190
  PyFunceble/database/__init__.py,sha256=r8zmExtTZguf07GzlaYW5hz11DCC1C6qeU3XvkSQXSU,2492
@@ -209,7 +209,7 @@ PyFunceble/dataset/db_base.py,sha256=4iTPPtsZRMXSOkJSWFSTuBUSu6dPJMEDD2n3L0nl3i4
209
209
  PyFunceble/dataset/iana.py,sha256=oMSx8p2PQV0tsHejqqqyacos9AzksEOq6YucDAFncBw,4021
210
210
  PyFunceble/dataset/ipv4_reputation.py,sha256=a0KjYvXpaNCKOsK9yIgre-3YP2m3w_jO0_yk9b2mdOI,3977
211
211
  PyFunceble/dataset/public_suffix.py,sha256=q3cUQwHP9_WxAykH45M4EhDOXxUJifpJafAAcOhg51Q,4085
212
- PyFunceble/dataset/sql_base.py,sha256=xgJ2g_2Xw4dxIAJRS6EN1n3R8szBYooranfa35MCI4s,10545
212
+ PyFunceble/dataset/sql_base.py,sha256=bkUd-1iC_D_uhSfmZ4LGLMaZS3BJqzLOlVjhXqJWORk,10545
213
213
  PyFunceble/dataset/user_agent.py,sha256=uQyFEnAW35y488T9zYkqoZ1bpl7xv-W74MiXAOnZGF4,7982
214
214
  PyFunceble/dataset/autocontinue/__init__.py,sha256=GyRntA6zAcd2CBm1fEO1PLYKxi8jbAJei5J88CS315w,2461
215
215
  PyFunceble/dataset/autocontinue/base.py,sha256=46yPQEUtonojqKm8Q0DQjuIaOIKRvO9DlQ-K_79flwQ,3499
@@ -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.0a1.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
279
- PyFunceble_dev-4.3.0a1.dist-info/METADATA,sha256=FEaNLlxic7K6f1HpaJJ2ebEgVJvtQNdNc_DcC5kNFf4,40534
280
- PyFunceble_dev-4.3.0a1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
281
- PyFunceble_dev-4.3.0a1.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
282
- PyFunceble_dev-4.3.0a1.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
283
- PyFunceble_dev-4.3.0a1.dist-info/RECORD,,
278
+ PyFunceble_dev-4.3.0a2.dist-info/LICENSE,sha256=JBG6UfPnf3940AtwZB6vwAK6YH82Eo6nzMVnjGqopF0,10796
279
+ PyFunceble_dev-4.3.0a2.dist-info/METADATA,sha256=0Xtki_c5Zx2ivDiJwq0dJTp0ypMNOvqhsffoblwTOhU,40534
280
+ PyFunceble_dev-4.3.0a2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
281
+ PyFunceble_dev-4.3.0a2.dist-info/entry_points.txt,sha256=Ic1suwopOi_XTgiQi2ErtpY5xT3R8EFMI6B_ONDuR9E,201
282
+ PyFunceble_dev-4.3.0a2.dist-info/top_level.txt,sha256=J7GBKIiNYv93m1AxLy8_gr6ExXyZbMmCVXHMQBTUq2Y,11
283
+ PyFunceble_dev-4.3.0a2.dist-info/RECORD,,