PyFunceble-dev 4.2.6__tar.gz → 4.2.9__tar.gz

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.
Files changed (296) hide show
  1. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/LICENSE +1 -1
  2. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PKG-INFO +2 -2
  3. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/__init__.py +1 -1
  4. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/__init__.py +1 -1
  5. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/__init__.py +1 -1
  6. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/base.py +17 -10
  7. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/domain.py +1 -2
  8. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/domain_and_ip.py +1 -1
  9. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/__init__.py +1 -1
  10. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/base.py +2 -3
  11. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/dns.py +1 -1
  12. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/etoxic.py +1 -1
  13. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/parked.py +1 -1
  14. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/rules.py +2 -2
  15. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/extras/subject_switch.py +1 -1
  16. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/ip.py +1 -2
  17. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/params.py +1 -1
  18. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/status.py +1 -1
  19. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/availability/url.py +1 -2
  20. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/base.py +1 -1
  21. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/complex_json_encoder.py +1 -1
  22. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/params_base.py +1 -1
  23. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/__init__.py +1 -1
  24. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/base.py +1 -2
  25. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/domain.py +1 -2
  26. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/domain_and_ip.py +1 -1
  27. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/ip.py +1 -2
  28. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/params.py +1 -1
  29. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/status.py +1 -1
  30. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/reputation/url.py +1 -2
  31. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/status_base.py +1 -1
  32. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/__init__.py +1 -1
  33. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/base.py +1 -1
  34. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/domain.py +1 -1
  35. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/domain_and_ip.py +1 -1
  36. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/domain_base.py +1 -1
  37. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/ip.py +1 -1
  38. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/ipv4.py +1 -1
  39. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/ipv6.py +1 -1
  40. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/params.py +1 -1
  41. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/second_lvl_domain.py +7 -3
  42. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/status.py +2 -1
  43. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/subdomain.py +4 -2
  44. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/syntax/url.py +1 -2
  45. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/utils/__init__.py +1 -1
  46. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/checker/utils/whois.py +1 -1
  47. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/__init__.py +1 -1
  48. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/__init__.py +1 -1
  49. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/base.py +1 -1
  50. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/exceptions.py +1 -1
  51. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/github_actions.py +1 -1
  52. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/gitlab_ci.py +1 -1
  53. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/jenkins.py +1 -1
  54. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/travis_ci.py +1 -1
  55. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/continuous_integration/utils.py +1 -1
  56. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/credential_loader.py +4 -4
  57. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/__init__.py +1 -1
  58. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/clean.py +1 -1
  59. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/iana.py +1 -1
  60. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/production.py +1 -1
  61. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/public_suffix.py +1 -1
  62. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/pyfunceble/__init__.py +1 -1
  63. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/pyfunceble/argsparser.py +1 -1
  64. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/entry_points/pyfunceble/cli.py +1 -1
  65. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/execution_time.py +1 -1
  66. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/facility.py +1 -1
  67. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/factory.py +1 -1
  68. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/file_preloader.py +4 -4
  69. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/__init__.py +1 -1
  70. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/cleanup.py +1 -1
  71. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/counter.py +1 -1
  72. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/dir_base.py +1 -1
  73. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/dir_structure/__init__.py +1 -1
  74. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/dir_structure/backup.py +1 -1
  75. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/dir_structure/base.py +1 -1
  76. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/dir_structure/restore.py +1 -1
  77. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/json_base.py +1 -1
  78. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/printer/__init__.py +1 -1
  79. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/printer/base.py +1 -1
  80. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/printer/file.py +1 -1
  81. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/printer/stdout.py +1 -1
  82. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/registrar_counter.py +1 -1
  83. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/filesystem/status_file.py +1 -1
  84. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/__init__.py +1 -1
  85. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/alembic.py +1 -1
  86. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/base.py +1 -2
  87. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/csv_file/__init__.py +1 -1
  88. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/csv_file/base.py +1 -1
  89. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/csv_file/inactive_source_delete.py +1 -1
  90. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/csv_file/whois_registrar_add.py +1 -1
  91. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/db_base.py +1 -1
  92. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/file_cleanup/__init__.py +1 -1
  93. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/file_cleanup/base.py +1 -1
  94. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/file_cleanup/hashes_file.py +1 -1
  95. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/file_cleanup/mining_file.py +1 -1
  96. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/file_cleanup/production_config_file.py +1 -1
  97. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/json2csv/__init__.py +1 -1
  98. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/json2csv/base.py +1 -1
  99. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/json2csv/inactive.py +1 -1
  100. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/json2csv/whois.py +1 -1
  101. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/mariadb/__init__.py +1 -1
  102. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/mariadb/base.py +1 -1
  103. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/mariadb/file_and_status.py +1 -1
  104. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/migrators/mariadb/whois_record_idna_subject.py +1 -1
  105. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/__init__.py +1 -1
  106. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/base.py +1 -1
  107. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/chancy_producer.py +1 -1
  108. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/chancy_tester.py +1 -1
  109. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/dir_files_sorter.py +1 -1
  110. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/file_sorter.py +1 -1
  111. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/migrator.py +1 -1
  112. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/miner.py +1 -1
  113. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/producer.py +1 -1
  114. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/tester.py +1 -1
  115. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/__init__.py +1 -1
  116. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/base.py +4 -4
  117. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/chancy_producer.py +1 -1
  118. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/chancy_tester.py +1 -1
  119. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/dir_files_sorter.py +1 -1
  120. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/file_sorter.py +1 -1
  121. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/file_sorter_base.py +1 -1
  122. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/migrator.py +1 -1
  123. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/miner.py +1 -1
  124. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/producer.py +1 -1
  125. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/processes/workers/tester.py +1 -1
  126. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/scripts/__init__.py +1 -1
  127. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/scripts/iana.py +1 -1
  128. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/scripts/production.py +4 -5
  129. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/scripts/public_suffix.py +1 -1
  130. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/storage.py +6 -4
  131. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/storage_facility.py +1 -1
  132. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/system/__init__.py +1 -1
  133. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/system/base.py +1 -1
  134. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/system/integrator.py +1 -1
  135. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/system/launcher.py +1 -1
  136. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/__init__.py +1 -1
  137. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/ascii_logo.py +1 -1
  138. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/sort.py +1 -1
  139. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/stdout.py +1 -1
  140. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/testing.py +2 -4
  141. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/cli/utils/version.py +1 -1
  142. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/config/__init__.py +1 -1
  143. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/config/compare.py +1 -1
  144. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/config/loader.py +1 -1
  145. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/__init__.py +1 -1
  146. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/adblock_input_line2subject.py +1 -1
  147. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/base.py +1 -1
  148. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/cidr2subject.py +1 -1
  149. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/input_line2subject.py +1 -1
  150. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/internal_url.py +1 -1
  151. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/rpz_input_line2subject.py +1 -1
  152. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/rpz_policy2subject.py +1 -1
  153. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/subject2complements.py +1 -1
  154. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/url2netloc.py +1 -1
  155. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/converter/wildcard2subject.py +1 -1
  156. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/__init__.py +1 -1
  157. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/__init__.py +1 -1
  158. {PyFunceble-dev-4.2.6/PyFunceble/data/alembic/postgresql → PyFunceble-dev-4.2.9/PyFunceble/data/alembic/mysql}/env.py +1 -1
  159. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/35c79626ecb9_fix_some_columns.py +1 -0
  160. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/3a4c55a9320d_add_continue_table.py +1 -0
  161. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/3d6f4a33cdb2_add_inactive_table.py +1 -0
  162. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/45713fea8097_deletion_uneeded_columns_from_whois_.py +1 -0
  163. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/459a0d7b8f09_add_idna_subject_column_into_whois.py +1 -0
  164. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/6f4729deaf03_delete_inactive_source_column.py +1 -0
  165. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/7bcf7fa64ba1_rename_created_to_created_at_and.py +1 -0
  166. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/83ada95132bf_delete_the_file_table.py +1 -0
  167. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/912bbcb77a6c_add_registrar_column.py +1 -0
  168. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/95dc17ddd729_introduction_of_the_session_id_column.py +1 -0
  169. {PyFunceble-dev-4.2.6/PyFunceble/data/alembic/postgresql → PyFunceble-dev-4.2.9/PyFunceble/data/alembic/mysql}/versions/__init__.py +1 -1
  170. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/ade87195b0a0_base.py +1 -0
  171. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/bef7bcaac3f2_make_id_a_bigint.py +1 -0
  172. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/d8893cd406db_allow_whois_record_to_be_empty_null.py +1 -0
  173. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/versions/e04e8301d1a2_deletion_of_the_mined_table.py +1 -0
  174. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/postgresql/__init__.py +1 -1
  175. {PyFunceble-dev-4.2.6/PyFunceble/data/alembic/mysql → PyFunceble-dev-4.2.9/PyFunceble/data/alembic/postgresql}/env.py +1 -1
  176. {PyFunceble-dev-4.2.6/PyFunceble/data/alembic/mysql → PyFunceble-dev-4.2.9/PyFunceble/data/alembic/postgresql}/versions/__init__.py +1 -1
  177. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/postgresql/versions/a32ac5d66eee_initial_version.py +1 -0
  178. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/__init__.py +1 -1
  179. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/credential/__init__.py +1 -1
  180. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/credential/base.py +1 -1
  181. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/credential/mariadb.py +1 -1
  182. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/credential/mysql.py +1 -1
  183. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/credential/postgresql.py +1 -1
  184. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/schemas/__init__.py +1 -1
  185. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/schemas/autocontinue.py +1 -1
  186. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/schemas/inactive.py +1 -1
  187. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/schemas/status.py +1 -1
  188. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/schemas/whois_record.py +1 -1
  189. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/session.py +1 -1
  190. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/sqlalchemy/__init__.py +1 -1
  191. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/sqlalchemy/all_schemas.py +1 -1
  192. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/database/sqlalchemy/base_schema.py +1 -1
  193. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/__init__.py +1 -1
  194. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/autocontinue/__init__.py +1 -1
  195. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/autocontinue/base.py +1 -1
  196. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/autocontinue/csv.py +1 -1
  197. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/autocontinue/sql.py +1 -1
  198. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/base.py +1 -1
  199. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/csv_base.py +1 -1
  200. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/db_base.py +1 -1
  201. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/iana.py +1 -1
  202. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/inactive/__init__.py +1 -1
  203. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/inactive/base.py +1 -1
  204. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/inactive/csv.py +1 -1
  205. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/inactive/sql.py +1 -1
  206. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/ipv4_reputation.py +1 -1
  207. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/public_suffix.py +1 -1
  208. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/sql_base.py +1 -1
  209. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/user_agent.py +51 -9
  210. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/whois/__init__.py +1 -1
  211. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/whois/base.py +1 -1
  212. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/whois/csv.py +1 -1
  213. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/dataset/whois/sql.py +1 -1
  214. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/__init__.py +1 -1
  215. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/base.py +1 -1
  216. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/exceptions.py +1 -1
  217. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/iana.py +1 -1
  218. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/ipv4_reputation.py +1 -1
  219. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/public_suffix.py +1 -1
  220. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/downloader/user_agents.py +1 -1
  221. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/exceptions.py +1 -1
  222. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/facility.py +1 -1
  223. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/factory.py +1 -1
  224. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/__init__.py +1 -1
  225. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/command.py +1 -1
  226. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/dict.py +1 -1
  227. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/directory.py +1 -1
  228. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/download.py +1 -1
  229. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/environment_variable.py +1 -1
  230. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/exceptions.py +1 -1
  231. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/file.py +1 -1
  232. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/hash.py +1 -1
  233. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/list.py +1 -1
  234. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/merge.py +1 -1
  235. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/helpers/regex.py +1 -1
  236. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/logger.py +1 -1
  237. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/__init__.py +1 -1
  238. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/collection.py +222 -43
  239. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/dns/__init__.py +1 -1
  240. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/dns/nameserver.py +1 -1
  241. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/dns/query_tool.py +1 -1
  242. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/dns/resolver.py +1 -1
  243. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/http_status_code.py +1 -1
  244. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/netinfo/__init__.py +1 -1
  245. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/netinfo/address.py +1 -1
  246. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/netinfo/base.py +1 -1
  247. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/netinfo/hostbyaddr.py +1 -1
  248. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/record/__init__.py +1 -1
  249. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/record/base.py +1 -1
  250. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/record/dns.py +1 -1
  251. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/record/whois.py +1 -1
  252. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/__init__.py +1 -1
  253. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/adapter/__init__.py +1 -1
  254. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/adapter/base.py +1 -1
  255. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/adapter/http.py +1 -1
  256. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/adapter/https.py +7 -7
  257. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/requests/requester.py +1 -1
  258. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/__init__.py +1 -1
  259. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/__init__.py +1 -1
  260. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/base.py +1 -1
  261. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/digit2digits.py +2 -1
  262. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/expiration_date.py +1 -1
  263. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/month2unified.py +1 -1
  264. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/converter/registrar.py +1 -1
  265. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/query/whois/query_tool.py +1 -1
  266. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/sessions.py +1 -1
  267. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/storage.py +5 -3
  268. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/storage_facility.py +1 -1
  269. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/utils/__init__.py +1 -1
  270. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/utils/platform.py +1 -1
  271. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/utils/profile.py +1 -1
  272. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/utils/version.py +1 -1
  273. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/PKG-INFO +2 -2
  274. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/requires.txt +44 -44
  275. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/README.rst +1 -1
  276. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/requirements.txt +2 -2
  277. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/requirements.win.txt +3 -3
  278. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/setup.py +1 -1
  279. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/version.yaml +1 -1
  280. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/CODE_OF_CONDUCT.rst +0 -0
  281. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/CONTRIBUTING.rst +0 -0
  282. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/MANIFEST.in +0 -0
  283. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/__init__.py +0 -0
  284. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/mysql/script.py.mako +0 -0
  285. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/alembic/postgresql/script.py.mako +0 -0
  286. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/infrastructure/.PyFunceble_production.yaml +0 -0
  287. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/infrastructure/__init__.py +0 -0
  288. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble/data/infrastructure/dir_structure_production.json +0 -0
  289. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/SOURCES.txt +0 -0
  290. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/dependency_links.txt +0 -0
  291. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/entry_points.txt +0 -0
  292. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/PyFunceble_dev.egg-info/top_level.txt +0 -0
  293. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/requirements.dev.txt +0 -0
  294. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/requirements.docs.txt +0 -0
  295. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/requirements.test.txt +0 -0
  296. {PyFunceble-dev-4.2.6 → PyFunceble-dev-4.2.9}/setup.cfg +0 -0
@@ -175,7 +175,7 @@
175
175
 
176
176
  END OF TERMS AND CONDITIONS
177
177
 
178
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
178
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
179
179
 
180
180
  Licensed under the Apache License, Version 2.0 (the "License");
181
181
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyFunceble-dev
3
- Version: 4.2.6
3
+ Version: 4.2.9
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
@@ -265,7 +265,7 @@ License
265
265
  -------
266
266
  ::
267
267
 
268
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
268
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
269
269
 
270
270
  Licensed under the Apache License, Version 2.0 (the "License");
271
271
  you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@ License:
34
34
  ::
35
35
 
36
36
 
37
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
37
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
38
38
 
39
39
  Licensed under the Apache License, Version 2.0 (the "License");
40
40
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -76,7 +76,6 @@ from PyFunceble.checker.syntax.domain import DomainSyntaxChecker
76
76
  from PyFunceble.checker.syntax.ip import IPSyntaxChecker
77
77
  from PyFunceble.checker.syntax.url import URLSyntaxChecker
78
78
  from PyFunceble.converter.url2netloc import Url2Netloc
79
- from PyFunceble.helpers.regex import RegexHelper
80
79
  from PyFunceble.query.dns.query_tool import DNSQueryTool
81
80
  from PyFunceble.query.http_status_code import HTTPStatusCode
82
81
  from PyFunceble.query.netinfo.address import AddressInfo
@@ -793,8 +792,21 @@ class AvailabilityCheckerBase(CheckerBase):
793
792
  }
794
793
  )
795
794
  else:
796
- self.status.expiration_date = known_record["expiration_date"]
797
- self.status.registrar = known_record["registrar"]
795
+ # We pass the known record to the lookup record - so that other
796
+ # methods can use it.
797
+ self.whois_query_tool.lookup_record.record = known_record.get(
798
+ "record", None
799
+ )
800
+ self.whois_query_tool.lookup_record.expiration_date = known_record.get(
801
+ "expiration_date", None
802
+ )
803
+ self.whois_query_tool.lookup_record.registrar = known_record.get(
804
+ "registrar", None
805
+ )
806
+ self.status.whois_lookup_record = self.whois_query_tool.lookup_record
807
+
808
+ self.status.expiration_date = known_record.get("expiration_date", None)
809
+ self.status.registrar = known_record.get("registrar", None)
798
810
  self.status.whois_record = None
799
811
  else:
800
812
  self.status.expiration_date = self.whois_query_tool.expiration_date
@@ -906,12 +918,7 @@ class AvailabilityCheckerBase(CheckerBase):
906
918
  if from_domain_test and self.status.url_syntax:
907
919
  return self
908
920
 
909
- if not self.status.url_syntax and not RegexHelper("[^a-z0-9._]").match(
910
- self.idna_subject, return_match=False
911
- ):
912
- # The regex is there because while testing for domain, sometime we
913
- # may see something like mailto:xxx@yyy.de
914
-
921
+ if not self.status.url_syntax and not self.idna_subject.startswith("http"):
915
922
  self.http_status_code_query_tool.set_subject(
916
923
  f"http://{self.idna_subject}:80"
917
924
  )
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  import PyFunceble.facility
55
54
  import PyFunceble.factory
56
55
  import PyFunceble.storage
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  import functools
55
54
  import socket
56
55
  from typing import Callable, Dict, List, Optional, Union
@@ -423,7 +422,7 @@ class ExtraRuleHandlerBase:
423
422
  of the given one.
424
423
  """
425
424
 
426
- if not isinstance(status_code, (list, tuple)):
425
+ if not isinstance(status_code, (list, tuple, set)):
427
426
  status_code = [status_code]
428
427
 
429
428
  if any(self.status.http_status_code == x for x in status_code):
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -78,7 +78,7 @@ class ExtraRulesHandler(ExtraRuleHandlerBase):
78
78
  def __init__(self, status: Optional[AvailabilityCheckerStatus] = None) -> None:
79
79
  self.regex_active2inactive = {
80
80
  r"\.000webhostapp\.com": [
81
- (self.switch_to_down_if_status_code, 410),
81
+ (self.switch_to_down_if_status_code, {410, 424}),
82
82
  ],
83
83
  r"\.24\.eu$": [(self.switch_to_down_if_status_code, 503)],
84
84
  r"\.altervista\.org$": [(self.switch_to_down_if_status_code, 403)],
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  import PyFunceble.facility
55
54
  import PyFunceble.factory
56
55
  import PyFunceble.storage
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  import PyFunceble.facility
55
54
  import PyFunceble.factory
56
55
  import PyFunceble.storage
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@ License:
37
37
  ::
38
38
 
39
39
 
40
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
40
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
41
41
 
42
42
  Licensed under the Apache License, Version 2.0 (the "License");
43
43
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  from typing import List, Optional
55
54
 
56
55
  from sqlalchemy.orm import Session
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  from typing import List, Optional
55
54
 
56
55
  from PyFunceble.checker.reputation.base import ReputationCheckerBase
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  from typing import List, Optional
55
54
 
56
55
  from PyFunceble.checker.reputation.base import ReputationCheckerBase
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  from typing import List, Optional
55
54
 
56
55
  from PyFunceble.checker.reputation.base import ReputationCheckerBase
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -65,8 +65,12 @@ class SecondLvlDomainSyntaxChecker(DomainSyntaxCheckerBase):
65
65
  """
66
66
 
67
67
  # pylint: disable=line-too-long
68
- REGEX_VALID_DOMAIN: str = r"^(?=.{0,253}$)(([a-z0-9][a-z0-9-]{0,61}[a-z0-9]|[a-z0-9])\.)+((?=.*[^0-9])([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
69
- REGEX_VALID_RELAXED_DOMAIN: str = r"^(?=.{0,253}$)(([a-z0-9][a-z0-9_-]{0,61}[a-z0-9_-]|[a-z0-9])\.)+((?=.*[^0-9])([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
68
+ REGEX_VALID_DOMAIN: str = (
69
+ r"^(?=.{0,253}$)(([a-z0-9][a-z0-9-]{0,61}[a-z0-9]|[a-z0-9])\.)+((?=.*[^0-9])([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
70
+ )
71
+ REGEX_VALID_RELAXED_DOMAIN: str = (
72
+ r"^(?=.{0,253}$)(([a-z0-9][a-z0-9_-]{0,61}[a-z0-9_-]|[a-z0-9])\.)+((?=.*[^0-9])([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
73
+ )
70
74
 
71
75
  last_point_index: Optional[int] = None
72
76
  """
@@ -36,7 +36,7 @@ License:
36
36
  ::
37
37
 
38
38
 
39
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
39
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
40
40
 
41
41
  Licensed under the Apache License, Version 2.0 (the "License");
42
42
  you may not use this file except in compliance with the License.
@@ -50,6 +50,7 @@ License:
50
50
  See the License for the specific language governing permissions and
51
51
  limitations under the License.
52
52
  """
53
+
53
54
  import dataclasses
54
55
  from typing import Optional
55
56
 
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -63,7 +63,9 @@ class SubDomainSyntaxChecker(DomainSyntaxCheckerBase):
63
63
  """
64
64
 
65
65
  # pylint: disable=line-too-long
66
- REGEX_VALID_SUBDOMAIN: str = r"^(?=.{0,253}$)(([a-z0-9_][a-z0-9-_]{0,61}[a-z0-9_-]|[a-z0-9])\.)+((?=.*)([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
66
+ REGEX_VALID_SUBDOMAIN: str = (
67
+ r"^(?=.{0,253}$)(([a-z0-9_][a-z0-9-_]{0,61}[a-z0-9_-]|[a-z0-9])\.)+((?=.*)([a-z0-9][a-z0-9-]{0,61}[a-z0-9](?:\.)?|[a-z0-9](?:\.)?))$"
68
+ )
67
69
 
68
70
  @DomainSyntaxCheckerBase.ensure_subject_is_given
69
71
  def is_valid(self) -> bool:
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -50,7 +50,6 @@ License:
50
50
  limitations under the License.
51
51
  """
52
52
 
53
-
54
53
  import urllib.parse
55
54
  from typing import Optional
56
55
 
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ License:
35
35
  ::
36
36
 
37
37
 
38
- Copyright 2017, 2018, 2019, 2020, 2022, 2023 Nissar Chababy
38
+ Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy
39
39
 
40
40
  Licensed under the Apache License, Version 2.0 (the "License");
41
41
  you may not use this file except in compliance with the License.