PyFunceble-dev 4.2.26__tar.gz → 4.2.27__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 (306) hide show
  1. pyfunceble_dev-4.2.27/CODE_OF_CONDUCT.md +116 -0
  2. pyfunceble_dev-4.2.27/CONTRIBUTING.md +278 -0
  3. pyfunceble_dev-4.2.27/CONTRIBUTORS.md +63 -0
  4. pyfunceble_dev-4.2.27/MANIFEST.in +9 -0
  5. pyfunceble_dev-4.2.27/PKG-INFO +630 -0
  6. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/__init__.py +1 -1
  7. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/__init__.py +1 -1
  8. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/__init__.py +1 -1
  9. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/base.py +1 -1
  10. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/domain.py +1 -1
  11. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/domain_and_ip.py +1 -1
  12. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/__init__.py +1 -1
  13. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/base.py +1 -1
  14. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/dns.py +1 -1
  15. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/etoxic.py +1 -1
  16. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/parked.py +1 -1
  17. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/rules.py +1 -1
  18. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/extras/subject_switch.py +1 -1
  19. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/ip.py +1 -1
  20. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/params.py +1 -1
  21. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/status.py +1 -1
  22. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/availability/url.py +1 -1
  23. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/base.py +1 -1
  24. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/complex_json_encoder.py +1 -1
  25. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/params_base.py +1 -1
  26. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/__init__.py +1 -1
  27. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/base.py +1 -1
  28. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/domain.py +1 -1
  29. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/domain_and_ip.py +1 -1
  30. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/ip.py +1 -1
  31. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/params.py +1 -1
  32. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/status.py +1 -1
  33. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/reputation/url.py +1 -1
  34. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/status_base.py +1 -1
  35. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/__init__.py +1 -1
  36. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/base.py +1 -1
  37. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/domain.py +1 -1
  38. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/domain_and_ip.py +1 -1
  39. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/domain_base.py +1 -1
  40. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/ip.py +1 -1
  41. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/ipv4.py +1 -1
  42. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/ipv6.py +1 -1
  43. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/params.py +1 -1
  44. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/second_lvl_domain.py +1 -1
  45. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/status.py +1 -1
  46. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/subdomain.py +1 -1
  47. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/syntax/url.py +1 -1
  48. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/utils/__init__.py +1 -1
  49. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/checker/utils/whois.py +1 -1
  50. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/__init__.py +1 -1
  51. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/__init__.py +1 -1
  52. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/base.py +1 -1
  53. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/exceptions.py +1 -1
  54. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/github_actions.py +1 -1
  55. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/gitlab_ci.py +1 -1
  56. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/jenkins.py +1 -1
  57. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/standalone.py +1 -1
  58. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/travis_ci.py +1 -1
  59. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/continuous_integration/utils.py +1 -1
  60. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/credential_loader.py +1 -1
  61. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/__init__.py +1 -1
  62. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/clean.py +1 -1
  63. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/iana.py +1 -1
  64. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/production.py +1 -10
  65. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/public_suffix.py +1 -1
  66. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/pyfunceble/__init__.py +1 -1
  67. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/pyfunceble/argsparser.py +1 -1
  68. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/entry_points/pyfunceble/cli.py +2 -2
  69. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/execution_time.py +1 -1
  70. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/facility.py +1 -1
  71. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/factory.py +1 -1
  72. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/file_preloader.py +1 -1
  73. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/__init__.py +1 -1
  74. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/cleanup.py +1 -1
  75. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/counter.py +1 -1
  76. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/dir_base.py +1 -1
  77. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/dir_structure/__init__.py +1 -1
  78. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/dir_structure/backup.py +1 -1
  79. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/dir_structure/base.py +1 -1
  80. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/dir_structure/restore.py +1 -1
  81. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/json_base.py +1 -1
  82. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/printer/__init__.py +1 -1
  83. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/printer/base.py +1 -1
  84. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/printer/file.py +1 -1
  85. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/printer/stdout.py +1 -1
  86. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/registrar_counter.py +1 -1
  87. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/filesystem/status_file.py +1 -1
  88. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/__init__.py +1 -1
  89. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/alembic.py +1 -1
  90. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/base.py +1 -1
  91. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/csv_file/__init__.py +1 -1
  92. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/csv_file/base.py +1 -1
  93. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/csv_file/inactive_source_delete.py +1 -1
  94. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/csv_file/whois_registrar_add.py +1 -1
  95. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/db_base.py +1 -1
  96. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/file_cleanup/__init__.py +1 -1
  97. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/file_cleanup/base.py +1 -1
  98. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/file_cleanup/hashes_file.py +1 -1
  99. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/file_cleanup/mining_file.py +1 -1
  100. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/file_cleanup/production_config_file.py +1 -1
  101. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/json2csv/__init__.py +1 -1
  102. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/json2csv/base.py +1 -1
  103. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/json2csv/inactive.py +1 -1
  104. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/json2csv/whois.py +1 -1
  105. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/mariadb/__init__.py +1 -1
  106. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/mariadb/base.py +1 -1
  107. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/mariadb/file_and_status.py +1 -1
  108. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/migrators/mariadb/whois_record_idna_subject.py +1 -1
  109. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/__init__.py +1 -1
  110. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/base.py +1 -1
  111. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/chancy_producer.py +1 -1
  112. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/chancy_tester.py +1 -1
  113. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/dir_files_sorter.py +1 -1
  114. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/file_sorter.py +1 -1
  115. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/migrator.py +1 -1
  116. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/miner.py +1 -1
  117. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/producer.py +1 -1
  118. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/tester.py +1 -1
  119. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/__init__.py +1 -1
  120. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/base.py +1 -1
  121. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/chancy_producer.py +1 -1
  122. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/chancy_tester.py +1 -1
  123. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/dir_files_sorter.py +1 -1
  124. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/file_sorter.py +1 -1
  125. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/file_sorter_base.py +1 -1
  126. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/migrator.py +1 -1
  127. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/miner.py +1 -1
  128. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/producer.py +1 -1
  129. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/processes/workers/tester.py +1 -1
  130. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/scripts/__init__.py +1 -1
  131. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/scripts/iana.py +1 -1
  132. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/scripts/production.py +1 -26
  133. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/scripts/public_suffix.py +1 -1
  134. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/storage.py +1 -1
  135. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/storage_facility.py +1 -1
  136. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/system/__init__.py +1 -1
  137. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/system/base.py +1 -1
  138. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/system/integrator.py +1 -1
  139. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/system/launcher.py +1 -1
  140. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/__init__.py +1 -1
  141. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/ascii_logo.py +1 -1
  142. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/sort.py +1 -1
  143. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/stdout.py +1 -1
  144. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/testing.py +1 -1
  145. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/cli/utils/version.py +1 -1
  146. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/config/__init__.py +1 -1
  147. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/config/compare.py +1 -1
  148. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/config/loader.py +1 -1
  149. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/__init__.py +1 -1
  150. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/adblock_input_line2subject.py +1 -1
  151. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/base.py +1 -1
  152. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/cidr2subject.py +1 -1
  153. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/input_line2subject.py +1 -1
  154. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/internal_url.py +1 -1
  155. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/rpz_input_line2subject.py +1 -1
  156. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/rpz_policy2subject.py +1 -1
  157. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/subject2complements.py +1 -1
  158. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/url2netloc.py +1 -1
  159. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/converter/wildcard2subject.py +1 -1
  160. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic/mysql → pyfunceble_dev-4.2.27/PyFunceble/data/alembic}/__init__.py +1 -1
  161. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic → pyfunceble_dev-4.2.27/PyFunceble/data/alembic/mysql}/__init__.py +1 -1
  162. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic/postgresql → pyfunceble_dev-4.2.27/PyFunceble/data/alembic/mysql}/env.py +1 -1
  163. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic/postgresql → pyfunceble_dev-4.2.27/PyFunceble/data/alembic/mysql}/versions/__init__.py +1 -1
  164. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/postgresql/__init__.py +1 -1
  165. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic/mysql → pyfunceble_dev-4.2.27/PyFunceble/data/alembic/postgresql}/env.py +1 -1
  166. {pyfunceble_dev-4.2.26/PyFunceble/data/alembic/mysql → pyfunceble_dev-4.2.27/PyFunceble/data/alembic/postgresql}/versions/__init__.py +1 -1
  167. pyfunceble_dev-4.2.27/PyFunceble/data/infrastructure/.PyFunceble_production.yaml +835 -0
  168. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/__init__.py +1 -1
  169. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/credential/__init__.py +1 -1
  170. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/credential/base.py +1 -1
  171. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/credential/mariadb.py +1 -1
  172. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/credential/mysql.py +1 -1
  173. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/credential/postgresql.py +1 -1
  174. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/schemas/__init__.py +1 -1
  175. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/schemas/autocontinue.py +1 -1
  176. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/schemas/inactive.py +1 -1
  177. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/schemas/status.py +1 -1
  178. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/schemas/whois_record.py +1 -1
  179. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/session.py +1 -1
  180. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/sqlalchemy/__init__.py +1 -1
  181. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/sqlalchemy/all_schemas.py +1 -1
  182. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/database/sqlalchemy/base_schema.py +1 -1
  183. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/__init__.py +1 -1
  184. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/autocontinue/__init__.py +1 -1
  185. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/autocontinue/base.py +1 -1
  186. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/autocontinue/csv.py +1 -1
  187. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/autocontinue/sql.py +1 -1
  188. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/base.py +1 -1
  189. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/csv_base.py +1 -1
  190. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/db_base.py +1 -1
  191. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/iana.py +1 -1
  192. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/inactive/__init__.py +1 -1
  193. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/inactive/base.py +1 -1
  194. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/inactive/csv.py +1 -1
  195. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/inactive/sql.py +1 -1
  196. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/ipv4_reputation.py +1 -1
  197. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/public_suffix.py +1 -1
  198. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/sql_base.py +1 -1
  199. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/user_agent.py +1 -1
  200. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/whois/__init__.py +1 -1
  201. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/whois/base.py +1 -1
  202. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/whois/csv.py +1 -1
  203. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/dataset/whois/sql.py +1 -1
  204. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/__init__.py +1 -1
  205. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/base.py +1 -1
  206. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/exceptions.py +1 -1
  207. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/iana.py +1 -1
  208. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/ipv4_reputation.py +1 -1
  209. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/public_suffix.py +1 -1
  210. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/downloader/user_agents.py +1 -1
  211. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/exceptions.py +1 -1
  212. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/facility.py +1 -1
  213. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/factory.py +1 -1
  214. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/__init__.py +1 -1
  215. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/command.py +1 -1
  216. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/dict.py +1 -1
  217. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/directory.py +1 -1
  218. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/download.py +1 -1
  219. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/environment_variable.py +1 -1
  220. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/exceptions.py +1 -1
  221. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/file.py +1 -1
  222. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/hash.py +1 -1
  223. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/list.py +1 -1
  224. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/merge.py +1 -1
  225. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/helpers/regex.py +1 -1
  226. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/logger.py +1 -1
  227. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/__init__.py +1 -1
  228. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/dns/__init__.py +1 -1
  229. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/dns/nameserver.py +1 -1
  230. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/dns/query_tool.py +1 -1
  231. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/dns/resolver.py +1 -1
  232. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/http_status_code.py +1 -1
  233. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/netinfo/__init__.py +1 -1
  234. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/netinfo/address.py +1 -1
  235. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/netinfo/base.py +1 -1
  236. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/netinfo/hostbyaddr.py +1 -1
  237. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/platform.py +1 -1
  238. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/record/__init__.py +1 -1
  239. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/record/base.py +1 -1
  240. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/record/dns.py +1 -1
  241. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/record/whois.py +1 -1
  242. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/__init__.py +1 -1
  243. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/adapter/__init__.py +1 -1
  244. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/adapter/base.py +1 -1
  245. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/adapter/http.py +1 -1
  246. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/adapter/https.py +1 -1
  247. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/requests/requester.py +1 -1
  248. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/__init__.py +1 -1
  249. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/__init__.py +1 -1
  250. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/base.py +1 -1
  251. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/digit2digits.py +1 -1
  252. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/expiration_date.py +1 -1
  253. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/month2unified.py +1 -1
  254. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/converter/registrar.py +1 -1
  255. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/query/whois/query_tool.py +1 -1
  256. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/sessions.py +1 -1
  257. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/storage.py +2 -2
  258. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/storage_facility.py +1 -1
  259. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/utils/__init__.py +1 -1
  260. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/utils/platform.py +1 -1
  261. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/utils/profile.py +1 -1
  262. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/utils/version.py +6 -4
  263. pyfunceble_dev-4.2.27/PyFunceble_dev.egg-info/PKG-INFO +630 -0
  264. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble_dev.egg-info/SOURCES.txt +4 -3
  265. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble_dev.egg-info/requires.txt +54 -44
  266. pyfunceble_dev-4.2.27/README.md +520 -0
  267. pyfunceble_dev-4.2.27/requirements.docs.txt +12 -0
  268. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/setup.cfg +2 -1
  269. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/setup.py +4 -3
  270. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/version.yaml +1 -1
  271. pyfunceble_dev-4.2.26/CODE_OF_CONDUCT.rst +0 -53
  272. pyfunceble_dev-4.2.26/CONTRIBUTING.rst +0 -115
  273. pyfunceble_dev-4.2.26/MANIFEST.in +0 -10
  274. pyfunceble_dev-4.2.26/PKG-INFO +0 -416
  275. pyfunceble_dev-4.2.26/PyFunceble/data/infrastructure/.PyFunceble_production.yaml +0 -489
  276. pyfunceble_dev-4.2.26/PyFunceble_dev.egg-info/PKG-INFO +0 -416
  277. pyfunceble_dev-4.2.26/README.rst +0 -317
  278. pyfunceble_dev-4.2.26/requirements.docs.txt +0 -6
  279. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/LICENSE +0 -0
  280. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/__init__.py +0 -0
  281. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/script.py.mako +0 -0
  282. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/35c79626ecb9_fix_some_columns.py +0 -0
  283. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/3a4c55a9320d_add_continue_table.py +0 -0
  284. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/3d6f4a33cdb2_add_inactive_table.py +0 -0
  285. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/45713fea8097_deletion_uneeded_columns_from_whois_.py +0 -0
  286. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/459a0d7b8f09_add_idna_subject_column_into_whois.py +0 -0
  287. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/6f4729deaf03_delete_inactive_source_column.py +0 -0
  288. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/7bcf7fa64ba1_rename_created_to_created_at_and.py +0 -0
  289. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/83ada95132bf_delete_the_file_table.py +0 -0
  290. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/912bbcb77a6c_add_registrar_column.py +0 -0
  291. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/95dc17ddd729_introduction_of_the_session_id_column.py +0 -0
  292. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/ade87195b0a0_base.py +0 -0
  293. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/bef7bcaac3f2_make_id_a_bigint.py +0 -0
  294. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/d8893cd406db_allow_whois_record_to_be_empty_null.py +0 -0
  295. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/mysql/versions/e04e8301d1a2_deletion_of_the_mined_table.py +0 -0
  296. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/postgresql/script.py.mako +0 -0
  297. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/alembic/postgresql/versions/a32ac5d66eee_initial_version.py +0 -0
  298. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/infrastructure/__init__.py +0 -0
  299. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble/data/infrastructure/dir_structure_production.json +0 -0
  300. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble_dev.egg-info/dependency_links.txt +0 -0
  301. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble_dev.egg-info/entry_points.txt +0 -0
  302. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/PyFunceble_dev.egg-info/top_level.txt +0 -0
  303. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/requirements.dev.txt +0 -0
  304. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/requirements.test.txt +0 -0
  305. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/requirements.txt +0 -0
  306. {pyfunceble_dev-4.2.26 → pyfunceble_dev-4.2.27}/requirements.win.txt +0 -0
@@ -0,0 +1,116 @@
1
+ # Code of Conduct - PyFunceble
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to make participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to a positive environment for our
15
+ community include:
16
+
17
+ * Demonstrating empathy and kindness toward other people
18
+ * Being respectful of differing opinions, viewpoints, and experiences
19
+ * Giving and gracefully accepting constructive feedback
20
+ * Accepting responsibility and apologizing to those affected by our mistakes,
21
+ and learning from the experience
22
+ * Focusing on what is best not just for us as individuals, but for the
23
+ overall community
24
+
25
+ Examples of unacceptable behavior include:
26
+
27
+ * The use of sexualized language or imagery, and sexual attention or
28
+ advances
29
+ * Trolling, insulting or derogatory comments, and personal or political attacks
30
+ * Public or private harassment
31
+ * Publishing others' private information, such as a physical or email
32
+ address, without their explicit permission
33
+ * Other conduct which could reasonably be considered inappropriate in a
34
+ professional setting
35
+
36
+ ## Our Responsibilities
37
+
38
+ Project maintainers are responsible for clarifying and enforcing our standards of
39
+ acceptable behavior and will take appropriate and fair corrective action in
40
+ response to any behavior that they deem inappropriate,
41
+ threatening, offensive, or harmful.
42
+
43
+ Project maintainers have the right and responsibility to remove, edit, or reject
44
+ comments, commits, code, wiki edits, issues, and other contributions that are
45
+ not aligned to this Code of Conduct, and will
46
+ communicate reasons for moderation decisions when appropriate.
47
+
48
+ ## Scope
49
+
50
+ This Code of Conduct applies within all community spaces, and also applies when
51
+ an individual is officially representing the community in public spaces.
52
+ Examples of representing our community include using an official e-mail address,
53
+ posting via an official social media account, or acting as an appointed
54
+ representative at an online or offline event.
55
+
56
+ ## Enforcement
57
+
58
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
59
+ reported to the community leaders responsible for enforcement at <>.
60
+ All complaints will be reviewed and investigated promptly and fairly.
61
+
62
+ All community leaders are obligated to respect the privacy and security of the
63
+ reporter of any incident.
64
+
65
+ ## Enforcement Guidelines
66
+
67
+ Community leaders will follow these Community Impact Guidelines in determining
68
+ the consequences for any action they deem in violation of this Code of Conduct:
69
+
70
+ ### 1. Correction
71
+
72
+ **Community Impact**: Use of inappropriate language or other behavior deemed
73
+ unprofessional or unwelcome in the community.
74
+
75
+ **Consequence**: A private, written warning from community leaders, providing
76
+ clarity around the nature of the violation and an explanation of why the
77
+ behavior was inappropriate. A public apology may be requested.
78
+
79
+ ### 2. Warning
80
+
81
+ **Community Impact**: A violation through a single incident or series
82
+ of actions.
83
+
84
+ **Consequence**: A warning with consequences for continued behavior. No
85
+ interaction with the people involved, including unsolicited interaction with
86
+ those enforcing the Code of Conduct, for a specified period of time. This
87
+ includes avoiding interactions in community spaces as well as external channels
88
+ like social media. Violating these terms may lead to a temporary or
89
+ permanent ban.
90
+
91
+ ### 3. Temporary Ban
92
+
93
+ **Community Impact**: A serious violation of community standards, including
94
+ sustained inappropriate behavior.
95
+
96
+ **Consequence**: A temporary ban from any sort of interaction or public
97
+ communication with the community for a specified period of time. No public or
98
+ private interaction with the people involved, including unsolicited interaction
99
+ with those enforcing the Code of Conduct, is allowed during this period.
100
+ Violating these terms may lead to a permanent ban.
101
+
102
+ ### 4. Permanent Ban
103
+
104
+ **Community Impact**: Demonstrating a pattern of violation of community
105
+ standards, including sustained inappropriate behavior, harassment of an
106
+ individual, or aggression toward or disparagement of classes of individuals.
107
+
108
+ **Consequence**: A permanent ban from any sort of public interaction within
109
+ the community.
110
+
111
+ ## Attribution
112
+
113
+ This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org/), version
114
+ [1.4](https://www.contributor-covenant.org/version/1/4/code-of-conduct/code_of_conduct.md) and
115
+ [2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md),
116
+ and was generated by [contributing-gen](https://github.com/bttger/contributing-gen).
@@ -0,0 +1,278 @@
1
+ <!-- omit in toc -->
2
+
3
+ # Contributing to PyFunceble
4
+
5
+ First off, thanks for taking the time to contribute! ❤️
6
+
7
+ All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
8
+
9
+ > And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
10
+ >
11
+ > - Star the project
12
+ > - Tweet about it
13
+ > - Refer this project in your project's readme
14
+ > - Mention the project at local meetups and tell your friends/colleagues
15
+
16
+ <!-- omit in toc -->
17
+
18
+ ## Table of Contents
19
+
20
+ - [Contributing to PyFunceble](#contributing-to-pyfunceble)
21
+ - [Table of Contents](#table-of-contents)
22
+ - [Code of Conduct](#code-of-conduct)
23
+ - [I Have a Question](#i-have-a-question)
24
+ - [I Want To Contribute](#i-want-to-contribute)
25
+ - [Reporting Bugs](#reporting-bugs)
26
+ - [Before Submitting a Bug Report](#before-submitting-a-bug-report)
27
+ - [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
28
+ - [Suggesting Enhancements](#suggesting-enhancements)
29
+ - [Before Submitting an Enhancement](#before-submitting-an-enhancement)
30
+ - [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
31
+ - [Your First Code Contribution](#your-first-code-contribution)
32
+ - [Notes for Code Contributions](#notes-for-code-contributions)
33
+ - [Improving The Documentation](#improving-the-documentation)
34
+ - [Styleguides](#styleguides)
35
+ - [Code Format](#code-format)
36
+ - [Code Linting](#code-linting)
37
+ - [Tests Coverage](#tests-coverage)
38
+ - [Commit Messages](#commit-messages)
39
+ - [Attribution](#attribution)
40
+
41
+ ## Code of Conduct
42
+
43
+ This project and everyone participating in it is governed by the
44
+ [PyFunceble Code of Conduct](https://github.com/funilrys/PyFuncebleblob/dev/CODE_OF_CONDUCT.md).
45
+ By participating, you are expected to uphold this code. Please report unacceptable behavior
46
+ to <contact@funilrys.com>.
47
+
48
+ ## I Have a Question
49
+
50
+ > If you want to ask a question, we assume that you have read the available [Documentation](https://docs.pyfunceble.com).
51
+
52
+ Before you ask a question, it is best to search for existing [Issues](https://github.com/funilrys/PyFunceble/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
53
+
54
+ If you then still feel the need to ask a question and need clarification, we recommend the following:
55
+
56
+ - Open an [Issue](https://github.com/funilrys/PyFunceble/issues/new).
57
+ - Provide as much context as you can about what you're running into.
58
+ - Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant.
59
+
60
+ We will then take care of the issue as soon as possible.
61
+
62
+ <!--
63
+ You might want to create a separate issue tag for questions and include it in this description. People should then tag their issues accordingly.
64
+
65
+ Depending on how large the project is, you may want to outsource the questioning, e.g. to Stack Overflow or Gitter. You may add additional contact and information possibilities:
66
+ - IRC
67
+ - Slack
68
+ - Gitter
69
+ - Stack Overflow tag
70
+ - Blog
71
+ - FAQ
72
+ - Roadmap
73
+ - E-Mail List
74
+ - Forum
75
+ -->
76
+
77
+ ## I Want To Contribute
78
+
79
+ > ### Legal Notice <!-- omit in toc -->
80
+ >
81
+ > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license.
82
+
83
+ ### Reporting Bugs
84
+
85
+ <!-- omit in toc -->
86
+
87
+ #### Before Submitting a Bug Report
88
+
89
+ A good bug report shouldn't leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible.
90
+
91
+ - Make sure that you are using the latest version.
92
+ - Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://docs.pyfunceble.com). If you are looking for support, you might want to check [this section](#i-have-a-question)).
93
+ - To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/funilrys/PyFunceble/issues?q=label%3Abug).
94
+ - Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue.
95
+ - Collect information about the bug:
96
+ - Stack trace (Traceback)
97
+ - OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
98
+ - Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
99
+ - Possibly your input and the output
100
+ - Can you reliably reproduce the issue? And can you also reproduce it with older versions?
101
+
102
+ <!-- omit in toc -->
103
+
104
+ #### How Do I Submit a Good Bug Report?
105
+
106
+ > You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to .
107
+
108
+ <!-- You may add a PGP key to allow the messages to be sent encrypted as well. -->
109
+
110
+ We use GitHub issues to track bugs and errors. If you run into an issue with the project:
111
+
112
+ - Open an [Issue](https://github.com/funilrys/PyFunceble/issues/new). (Since we can't be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.)
113
+ - Explain the behavior you would expect and the actual behavior.
114
+ - Please provide as much context as possible and describe the _reproduction steps_ that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case.
115
+ - Provide the information you collected in the previous section.
116
+
117
+ Once it's filed:
118
+
119
+ - The project team will label the issue accordingly.
120
+ - A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps and mark the issue as `needs-repro`. Bugs with the `needs-repro` tag will not be addressed until they are reproduced.
121
+ - If the team is able to reproduce the issue, it will be marked `needs-fix`, as well as possibly other tags (such as `critical`), and the issue will be left to be [implemented by someone](#your-first-code-contribution).
122
+
123
+ <!-- You might want to create an issue template for bugs and errors that can be used as a guide and that defines the structure of the information to be included. If you do so, reference it here in the description. -->
124
+
125
+ ### Suggesting Enhancements
126
+
127
+ This section guides you through submitting an enhancement suggestion for PyFunceble, **including completely new features and minor improvements to existing functionality**. Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions.
128
+
129
+ <!-- omit in toc -->
130
+
131
+ #### Before Submitting an Enhancement
132
+
133
+ - Make sure that you are using the latest version.
134
+ - Read the [documentation](https://docs.pyfunceble.com) carefully and find out if the functionality is already covered, maybe by an individual configuration.
135
+ - Perform a [search](https://github.com/funilrys/PyFunceble/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
136
+ - Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
137
+
138
+ <!-- omit in toc -->
139
+
140
+ #### How Do I Submit a Good Enhancement Suggestion?
141
+
142
+ Enhancement suggestions are tracked as [GitHub issues](https://github.com/funilrys/PyFunceble/issues).
143
+
144
+ - Use a **clear and descriptive title** for the issue to identify the suggestion.
145
+ - Provide a **step-by-step description of the suggested enhancement** in as many details as possible.
146
+ - **Describe the current behavior** and **explain which behavior you expected to see instead** and why. At this point you can also tell which alternatives do not work for you.
147
+ - You may want to **include screenshots and animated GIFs** which help you demonstrate the steps or point out the part which the suggestion is related to. You can use [this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux. <!-- this should only be included if the project has a GUI -->
148
+ - **Explain why this enhancement would be useful** to most PyFunceble users. You may also want to point out the other projects that solved it better and which could serve as inspiration.
149
+
150
+ <!-- You might want to create an issue template for enhancement suggestions that can be used as a guide and that defines the structure of the information to be included. If you do so, reference it here in the description. -->
151
+
152
+ ### Your First Code Contribution
153
+
154
+ <!-- TODO
155
+ include Setup of env, IDE and typical getting started instructions?
156
+
157
+ -->
158
+
159
+ We do not any constraint regarding the way to use or configure your IDE.
160
+ But, we compiled some of the necessary steps that you may need before starting to
161
+ hack PyFunceble.
162
+
163
+ 1. If you haven't already: Clone or Fork the repository.
164
+ 2. Create a new branch for your change.
165
+ 3. Create a virtual environment (recommended)
166
+
167
+ ```shell
168
+ virtualenv -p python3 venv
169
+ . venv/bin/activate
170
+ ```
171
+
172
+ 4. Install the development related dependencies.
173
+
174
+ ```shell
175
+ # Assuming you activated the environment.
176
+ pip3 install -e .[dev,test]
177
+
178
+ ```
179
+
180
+ 5. Test if pyfunceble is running.
181
+
182
+ ```shell
183
+ pyfunceble --version
184
+ ```
185
+
186
+ 6. Test if tests are running.
187
+
188
+ ```shell
189
+ tox
190
+ ```
191
+
192
+ Once you went through all of those steps, you are ready and can start to code.
193
+
194
+ #### Notes for Code Contributions
195
+
196
+ 1. When you are working on a new feature or a bug, make sure to create a new branch.
197
+ 2. When developing, please keep in mind that your configuration files located in the `~/.config/pyfunceble/` directory will be ignored.
198
+
199
+ Therefore, you may want to create a new configuration file in the root of the repository. You can overwrite it by using the `PYFUNCEBLE_CONFIG_DIR` environment variable.
200
+
201
+ ### Improving The Documentation
202
+
203
+ Maintaining a documentation is rarely a one man action. If you think a paragraph,
204
+ a section should be improved or a totally new section added, feel free to write
205
+ a draft and submit your change through a Pull Request.
206
+
207
+ If you want to test your changes locally, some steps are necessary:
208
+
209
+ 1. If you haven't already: Clone or Fork the repository.
210
+ 2. Create a new branch for your change.
211
+ 3. Create a virtual environment (recommended)
212
+
213
+ ```shell
214
+ virtualenv -p python3 venv
215
+ . venv/bin/activate
216
+ ```
217
+
218
+ 4. Install the docs related dependencies.
219
+
220
+ ```shell
221
+ # Assuming you activated the environment.
222
+ pip3 install -e .[docs]
223
+ ```
224
+
225
+ 5. Serve the documentation for live testing:
226
+
227
+ ```shell
228
+ mkdocs serve
229
+ ```
230
+
231
+ Once you went through all of those steps, you are ready and can start editing the
232
+ documentation.
233
+
234
+ ## Styleguides
235
+
236
+ ### Code Format
237
+
238
+ We love unique contributions, but we hate to deal with serveral code formats.
239
+ Therefore, we adopted [Black](https://github.com/ambv/black),
240
+ _The uncompromising Python code formatter_, to format our code.
241
+
242
+ No more headache or thinking, just apply the `black` command against your change
243
+ and you are good to go!
244
+
245
+ ### Code Linting
246
+
247
+ We are human and we sometime make mistakes. One way to reduce issues before a
248
+ change hits a global deployment is through linting.
249
+
250
+ To reduce headeche, the repository is already configured!
251
+
252
+ You can lint your code before commiting them by running `pylint` against your
253
+ modified files.
254
+
255
+ ### Tests Coverage
256
+
257
+ We want to have a code test coverage of at lease 60%.
258
+ Therefore, be sure to run `tox` before commiting your changes!
259
+
260
+ ### Commit Messages
261
+
262
+ Your git message should be consice but informative.
263
+ Therefore, we ask you the follow the following convention:
264
+
265
+ ```
266
+ [Verb] [Description]
267
+
268
+ Paragraphs with some details/context (if needed).
269
+ ```
270
+
271
+ <!-- ## Join The Project Team -->
272
+ <!-- TODO -->
273
+
274
+ <!-- omit in toc -->
275
+
276
+ ## Attribution
277
+
278
+ This guide is based on the **contributing-gen**. [Make your own](https://github.com/bttger/contributing-gen)!
@@ -0,0 +1,63 @@
1
+ # Contributors
2
+
3
+ Thanks to those awesome peoples for their awesome and crazy idea(s),
4
+ contribution(s) and or issue report which made or make PyFunceble a better tool.
5
+
6
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
7
+ <!-- prettier-ignore-start -->
8
+ <!-- markdownlint-disable -->
9
+ <table>
10
+ <tbody>
11
+ <tr>
12
+ <td align="center" valign="top" width="20%"><a href="https://github.com/AvinashReddy3108"><img src="https://avatars.githubusercontent.com/u/27774996?v=4?s=100" width="100px;" alt="Avinash Reddy"/><br /><sub><b>Avinash Reddy</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AAvinashReddy3108" title="Bug reports">🐛</a></td>
13
+ <td align="center" valign="top" width="20%"><a href="https://github.com/bigdargon"><img src="https://avatars.githubusercontent.com/u/10969626?v=4?s=100" width="100px;" alt="BigDargon"/><br /><sub><b>BigDargon</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Abigdargon" title="Bug reports">🐛</a> <a href="#ideas-bigdargon" title="Ideas, Planning, & Feedback">🤔</a> <a href="#question-bigdargon" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/pulls?q=is%3Apr+reviewed-by%3Abigdargon" title="Reviewed Pull Requests">👀</a> <a href="#data-bigdargon" title="Data">🔣</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=bigdargon" title="Tests">⚠️</a></td>
14
+ <td align="center" valign="top" width="20%"><a href="http://www.fanboy.co.nz/"><img src="https://avatars.githubusercontent.com/u/1659004?v=4?s=100" width="100px;" alt="Fanboynz"/><br /><sub><b>Fanboynz</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Aryanbr" title="Bug reports">🐛</a> <a href="#ideas-ryanbr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#financial-ryanbr" title="Financial">💵</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=ryanbr" title="Tests">⚠️</a> <a href="#userTesting-ryanbr" title="User Testing">📓</a></td>
15
+ <td align="center" valign="top" width="20%"><a href="https://github.com/veracioux"><img src="https://avatars.githubusercontent.com/u/29044423?v=4?s=100" width="100px;" alt="Haris Gušić"/><br /><sub><b>Haris Gušić</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/commits?author=veracioux" title="Documentation">📖</a> <a href="#a11y-veracioux" title="Accessibility">️️️️♿️</a> <a href="#tool-veracioux" title="Tools">🔧</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=veracioux" title="Tests">⚠️</a> <a href="#video-veracioux" title="Videos">📹</a> <a href="#tutorial-veracioux" title="Tutorials">✅</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=veracioux" title="Code">💻</a></td>
16
+ <td align="center" valign="top" width="20%"><a href="https://github.com/DandelionSprout"><img src="https://avatars.githubusercontent.com/u/22780683?v=4?s=100" width="100px;" alt="Imre Eilertsen"/><br /><sub><b>Imre Eilertsen</b></sub></a><br /><a href="#a11y-DandelionSprout" title="Accessibility">️️️️♿️</a> <a href="https://github.com/funilrys/PyFunceble/issues?q=author%3ADandelionSprout" title="Bug reports">🐛</a> <a href="#data-DandelionSprout" title="Data">🔣</a> <a href="#example-DandelionSprout" title="Examples">💡</a> <a href="#financial-DandelionSprout" title="Financial">💵</a> <a href="#ideas-DandelionSprout" title="Ideas, Planning, & Feedback">🤔</a> <a href="#promotion-DandelionSprout" title="Promotion">📣</a> <a href="#question-DandelionSprout" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/pulls?q=is%3Apr+reviewed-by%3ADandelionSprout" title="Reviewed Pull Requests">👀</a> <a href="#tool-DandelionSprout" title="Tools">🔧</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=DandelionSprout" title="Tests">⚠️</a> <a href="#userTesting-DandelionSprout" title="User Testing">📓</a></td>
17
+ </tr>
18
+ <tr>
19
+ <td align="center" valign="top" width="20%"><a href="https://github.com/kowith337"><img src="https://avatars.githubusercontent.com/u/16535467?v=4?s=100" width="100px;" alt="Kowith Singkornkeeree"/><br /><sub><b>Kowith Singkornkeeree</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Akowith337" title="Bug reports">🐛</a></td>
20
+ <td align="center" valign="top" width="20%"><a href="https://ubuntu101.co.za/"><img src="https://avatars.githubusercontent.com/u/9961541?v=4?s=100" width="100px;" alt="Mitchell Krog"/><br /><sub><b>Mitchell Krog</b></sub></a><br /><a href="#a11y-mitchellkrogza" title="Accessibility">️️️️♿️</a> <a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Amitchellkrogza" title="Bug reports">🐛</a> <a href="#blog-mitchellkrogza" title="Blogposts">📝</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=mitchellkrogza" title="Code">💻</a> <a href="#content-mitchellkrogza" title="Content">🖋</a> <a href="#data-mitchellkrogza" title="Data">🔣</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=mitchellkrogza" title="Documentation">📖</a> <a href="#design-mitchellkrogza" title="Design">🎨</a> <a href="#example-mitchellkrogza" title="Examples">💡</a> <a href="#fundingFinding-mitchellkrogza" title="Funding Finding">🔍</a> <a href="#ideas-mitchellkrogza" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-mitchellkrogza" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#mentoring-mitchellkrogza" title="Mentoring">🧑‍🏫</a> <a href="#platform-mitchellkrogza" title="Packaging/porting to new platform">📦</a> <a href="#plugin-mitchellkrogza" title="Plugin/utility libraries">🔌</a> <a href="#promotion-mitchellkrogza" title="Promotion">📣</a> <a href="#question-mitchellkrogza" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/pulls?q=is%3Apr+reviewed-by%3Amitchellkrogza" title="Reviewed Pull Requests">👀</a> <a href="#tool-mitchellkrogza" title="Tools">🔧</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=mitchellkrogza" title="Tests">⚠️</a> <a href="#tutorial-mitchellkrogza" title="Tutorials">✅</a> <a href="#talk-mitchellkrogza" title="Talks">📢</a> <a href="#userTesting-mitchellkrogza" title="User Testing">📓</a></td>
21
+ <td align="center" valign="top" width="20%"><a href="https://github.com/Nilsonfsilva"><img src="https://avatars.githubusercontent.com/u/91392383?v=4?s=100" width="100px;" alt="Nilsonfsilva"/><br /><sub><b>Nilsonfsilva</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3ANilsonfsilva" title="Bug reports">🐛</a> <a href="#infra-Nilsonfsilva" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#platform-Nilsonfsilva" title="Packaging/porting to new platform">📦</a> <a href="#tool-Nilsonfsilva" title="Tools">🔧</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=Nilsonfsilva" title="Tests">⚠️</a></td>
22
+ <td align="center" valign="top" width="20%"><a href="https://github.com/Odyseus"><img src="https://avatars.githubusercontent.com/u/3822556?v=4?s=100" width="100px;" alt="Odyseus"/><br /><sub><b>Odyseus</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AOdyseus" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=Odyseus" title="Tests">⚠️</a></td>
23
+ <td align="center" valign="top" width="20%"><a href="https://github.com/ybreza"><img src="https://avatars.githubusercontent.com/u/35470865?v=4?s=100" width="100px;" alt="Reza Rizqullah"/><br /><sub><b>Reza Rizqullah</b></sub></a><br /><a href="#design-ybreza" title="Design">🎨</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=ybreza" title="Code">💻</a></td>
24
+ </tr>
25
+ <tr>
26
+ <td align="center" valign="top" width="20%"><a href="https://scripttiger.github.io/"><img src="https://avatars.githubusercontent.com/u/29940916?v=4?s=100" width="100px;" alt="ScriptTiger"/><br /><sub><b>ScriptTiger</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AScriptTiger" title="Bug reports">🐛</a> <a href="#ideas-ScriptTiger" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=ScriptTiger" title="Tests">⚠️</a></td>
27
+ <td align="center" valign="top" width="20%"><a href="https://github.com/sjhgvr"><img src="https://avatars.githubusercontent.com/u/51121527?v=4?s=100" width="100px;" alt="Stephan van Ruth"/><br /><sub><b>Stephan van Ruth</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Asjhgvr" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=sjhgvr" title="Tests">⚠️</a></td>
28
+ <td align="center" valign="top" width="20%"><a href="http://stevenblack.com/"><img src="https://avatars.githubusercontent.com/u/80144?v=4?s=100" width="100px;" alt="Steven Black"/><br /><sub><b>Steven Black</b></sub></a><br /><a href="#ideas-StevenBlack" title="Ideas, Planning, & Feedback">🤔</a> <a href="#financial-StevenBlack" title="Financial">💵</a></td>
29
+ <td align="center" valign="top" width="20%"><a href="https://github.com/T145"><img src="https://avatars.githubusercontent.com/u/1214129?v=4?s=100" width="100px;" alt="T145"/><br /><sub><b>T145</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AT145" title="Bug reports">🐛</a> <a href="#ideas-T145" title="Ideas, Planning, & Feedback">🤔</a></td>
30
+ <td align="center" valign="top" width="20%"><a href="https://infosec.exchange/@wally3k"><img src="https://avatars.githubusercontent.com/u/3049142?v=4?s=100" width="100px;" alt="WaLLy3K"/><br /><sub><b>WaLLy3K</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AWaLLy3K" title="Bug reports">🐛</a> <a href="#ideas-WaLLy3K" title="Ideas, Planning, & Feedback">🤔</a></td>
31
+ </tr>
32
+ <tr>
33
+ <td align="center" valign="top" width="20%"><a href="https://github.com/Yuki2718"><img src="https://avatars.githubusercontent.com/u/58900598?v=4?s=100" width="100px;" alt="Yuki2718"/><br /><sub><b>Yuki2718</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AYuki2718" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=Yuki2718" title="Tests">⚠️</a></td>
34
+ <td align="center" valign="top" width="20%"><a href="https://github.com/Zachinquarantine"><img src="https://avatars.githubusercontent.com/u/69423184?v=4?s=100" width="100px;" alt="Zachinquarantine"/><br /><sub><b>Zachinquarantine</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/commits?author=Zachinquarantine" title="Code">💻</a></td>
35
+ <td align="center" valign="top" width="20%"><a href="http://bit.ly/cBWeb"><img src="https://avatars.githubusercontent.com/u/28985171?v=4?s=100" width="100px;" alt="ZeroDot1"/><br /><sub><b>ZeroDot1</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AZeroDot1" title="Bug reports">🐛</a> <a href="#ideas-ZeroDot1" title="Ideas, Planning, & Feedback">🤔</a> <a href="#question-ZeroDot1" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=ZeroDot1" title="Tests">⚠️</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=ZeroDot1" title="Code">💻</a></td>
36
+ <td align="center" valign="top" width="20%"><a href="https://github.com/avatartw"><img src="https://avatars.githubusercontent.com/u/69660730?v=4?s=100" width="100px;" alt="avatartw"/><br /><sub><b>avatartw</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Aavatartw" title="Bug reports">🐛</a></td>
37
+ <td align="center" valign="top" width="20%"><a href="https://github.com/dnmTX"><img src="https://avatars.githubusercontent.com/u/34774426?v=4?s=100" width="100px;" alt="dnmTX"/><br /><sub><b>dnmTX</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3AdnmTX" title="Bug reports">🐛</a> <a href="#ideas-dnmTX" title="Ideas, Planning, & Feedback">🤔</a> <a href="#question-dnmTX" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/pulls?q=is%3Apr+reviewed-by%3AdnmTX" title="Reviewed Pull Requests">👀</a> <a href="#data-dnmTX" title="Data">🔣</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=dnmTX" title="Tests">⚠️</a></td>
38
+ </tr>
39
+ <tr>
40
+ <td align="center" valign="top" width="20%"><a href="https://github.com/gwarser"><img src="https://avatars.githubusercontent.com/u/886325?v=4?s=100" width="100px;" alt="gwarser"/><br /><sub><b>gwarser</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Agwarser" title="Bug reports">🐛</a> <a href="#data-gwarser" title="Data">🔣</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=gwarser" title="Tests">⚠️</a></td>
41
+ <td align="center" valign="top" width="20%"><a href="https://github.com/hawkeye116477"><img src="https://avatars.githubusercontent.com/u/19818572?v=4?s=100" width="100px;" alt="hawkeye116477"/><br /><sub><b>hawkeye116477</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Ahawkeye116477" title="Bug reports">🐛</a></td>
42
+ <td align="center" valign="top" width="20%"><a href="https://github.com/jawz101"><img src="https://avatars.githubusercontent.com/u/14151703?v=4?s=100" width="100px;" alt="jawz101"/><br /><sub><b>jawz101</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Ajawz101" title="Bug reports">🐛</a> <a href="#ideas-jawz101" title="Ideas, Planning, & Feedback">🤔</a> <a href="#question-jawz101" title="Answering Questions">💬</a> <a href="#data-jawz101" title="Data">🔣</a></td>
43
+ <td align="center" valign="top" width="20%"><a href="https://github.com/keczuppp"><img src="https://avatars.githubusercontent.com/u/74409207?v=4?s=100" width="100px;" alt="keczuppp"/><br /><sub><b>keczuppp</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Akeczuppp" title="Bug reports">🐛</a> <a href="#ideas-keczuppp" title="Ideas, Planning, & Feedback">🤔</a> <a href="#question-keczuppp" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=keczuppp" title="Tests">⚠️</a> <a href="#data-keczuppp" title="Data">🔣</a></td>
44
+ <td align="center" valign="top" width="20%"><a href="https://github.com/opav"><img src="https://avatars.githubusercontent.com/u/6770347?v=4?s=100" width="100px;" alt="opav"/><br /><sub><b>opav</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Aopav" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=opav" title="Tests">⚠️</a></td>
45
+ </tr>
46
+ <tr>
47
+ <td align="center" valign="top" width="20%"><a href="https://github.com/rusty-snake"><img src="https://avatars.githubusercontent.com/u/41237666?v=4?s=100" width="100px;" alt="rusty-snake"/><br /><sub><b>rusty-snake</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Arusty-snake" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=rusty-snake" title="Documentation">📖</a></td>
48
+ <td align="center" valign="top" width="20%"><a href="https://github.com/smed79"><img src="https://avatars.githubusercontent.com/u/1873139?v=4?s=100" width="100px;" alt="smed79"/><br /><sub><b>smed79</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Asmed79" title="Bug reports">🐛</a> <a href="#ideas-smed79" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=smed79" title="Code">💻</a> <a href="#question-smed79" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=smed79" title="Tests">⚠️</a></td>
49
+ <td align="center" valign="top" width="20%"><a href="https://speedmann.de/"><img src="https://avatars.githubusercontent.com/u/424659?v=4?s=100" width="100px;" alt="speedmann"/><br /><sub><b>speedmann</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Aspeedmann" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=speedmann" title="Tests">⚠️</a></td>
50
+ <td align="center" valign="top" width="20%"><a href="https://www.mypdns.org/"><img src="https://avatars.githubusercontent.com/u/44526987?v=4?s=100" width="100px;" alt="spirillen"/><br /><sub><b>spirillen</b></sub></a><br /><a href="#a11y-spirillen" title="Accessibility">️️️️♿️</a> <a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Aspirillen" title="Bug reports">🐛</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=spirillen" title="Code">💻</a> <a href="#content-spirillen" title="Content">🖋</a> <a href="#data-spirillen" title="Data">🔣</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=spirillen" title="Documentation">📖</a> <a href="#example-spirillen" title="Examples">💡</a> <a href="#ideas-spirillen" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-spirillen" title="Maintenance">🚧</a> <a href="#mentoring-spirillen" title="Mentoring">🧑‍🏫</a> <a href="#promotion-spirillen" title="Promotion">📣</a> <a href="#question-spirillen" title="Answering Questions">💬</a> <a href="https://github.com/funilrys/PyFunceble/pulls?q=is%3Apr+reviewed-by%3Aspirillen" title="Reviewed Pull Requests">👀</a> <a href="#tool-spirillen" title="Tools">🔧</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=spirillen" title="Tests">⚠️</a> <a href="#tutorial-spirillen" title="Tutorials">✅</a> <a href="#talk-spirillen" title="Talks">📢</a> <a href="#userTesting-spirillen" title="User Testing">📓</a></td>
51
+ <td align="center" valign="top" width="20%"><a href="https://github.com/NeolithEra"><img src="https://avatars.githubusercontent.com/u/52778917?v=4?s=100" width="100px;" alt="watchman-pypi"/><br /><sub><b>watchman-pypi</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3ANeolithEra" title="Bug reports">🐛</a></td>
52
+ </tr>
53
+ <tr>
54
+ <td align="center" valign="top" width="20%"><a href="https://github.com/xxcriticxx"><img src="https://avatars.githubusercontent.com/u/15007183?v=4?s=100" width="100px;" alt="xxcriticxx"/><br /><sub><b>xxcriticxx</b></sub></a><br /><a href="https://github.com/funilrys/PyFunceble/issues?q=author%3Axxcriticxx" title="Bug reports">🐛</a> <a href="#ideas-xxcriticxx" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/funilrys/PyFunceble/commits?author=xxcriticxx" title="Tests">⚠️</a></td>
55
+ </tr>
56
+ </tbody>
57
+ </table>
58
+
59
+ <!-- markdownlint-restore -->
60
+ <!-- prettier-ignore-end -->
61
+
62
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
63
+
@@ -0,0 +1,9 @@
1
+ graft PyFunceble
2
+ global-exclude __pycache__
3
+ global-exclude *.py[co]
4
+ include LICENSE
5
+ include CODE_OF_CONDUCT.md
6
+ include CONTRIBUTING.md
7
+ include CONTRIBUTORS.md
8
+ include requirements*.txt
9
+ include version.yaml