airflow-migration-helper 1.0.2__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 (203) hide show
  1. airflow_migration_helper-1.0.2/.gitignore +716 -0
  2. airflow_migration_helper-1.0.2/LICENSE +202 -0
  3. airflow_migration_helper-1.0.2/PKG-INFO +438 -0
  4. airflow_migration_helper-1.0.2/README.md +417 -0
  5. airflow_migration_helper-1.0.2/migration_helper/__init__.py +3 -0
  6. airflow_migration_helper-1.0.2/migration_helper/checkers/__init__.py +13 -0
  7. airflow_migration_helper-1.0.2/migration_helper/checkers/config_checker.py +423 -0
  8. airflow_migration_helper-1.0.2/migration_helper/checkers/consts/__init__.py +0 -0
  9. airflow_migration_helper-1.0.2/migration_helper/checkers/consts/config_checker.py +389 -0
  10. airflow_migration_helper-1.0.2/migration_helper/checkers/dag_checker.py +176 -0
  11. airflow_migration_helper-1.0.2/migration_helper/checkers/db_migrate.py +121 -0
  12. airflow_migration_helper-1.0.2/migration_helper/checkers/dep_checker.py +506 -0
  13. airflow_migration_helper-1.0.2/migration_helper/checkers/ruff_checker.py +216 -0
  14. airflow_migration_helper-1.0.2/migration_helper/cli.py +440 -0
  15. airflow_migration_helper-1.0.2/migration_helper/constraints/airflow-3.2.1-python3.10.txt +711 -0
  16. airflow_migration_helper-1.0.2/migration_helper/constraints/airflow-3.2.1-python3.11.txt +708 -0
  17. airflow_migration_helper-1.0.2/migration_helper/constraints/airflow-3.2.1-python3.12.txt +710 -0
  18. airflow_migration_helper-1.0.2/migration_helper/constraints/airflow-3.2.1-python3.13.txt +705 -0
  19. airflow_migration_helper-1.0.2/migration_helper/constraints/airflow-3.2.1-python3.14.txt +689 -0
  20. airflow_migration_helper-1.0.2/migration_helper/fixers/__init__.py +3 -0
  21. airflow_migration_helper-1.0.2/migration_helper/fixers/dag_fixer.py +26 -0
  22. airflow_migration_helper-1.0.2/migration_helper/models.py +69 -0
  23. airflow_migration_helper-1.0.2/migration_helper/pipeline.py +183 -0
  24. airflow_migration_helper-1.0.2/migration_helper/reporters/__init__.py +4 -0
  25. airflow_migration_helper-1.0.2/migration_helper/reporters/html_reporter.py +125 -0
  26. airflow_migration_helper-1.0.2/migration_helper/reporters/json_reporter.py +24 -0
  27. airflow_migration_helper-1.0.2/migration_helper/reporters/utils.py +16 -0
  28. airflow_migration_helper-1.0.2/migration_helper/utils/__init__.py +0 -0
  29. airflow_migration_helper-1.0.2/migration_helper/utils/cli_runner.py +161 -0
  30. airflow_migration_helper-1.0.2/migration_helper/utils/file_selector.py +93 -0
  31. airflow_migration_helper-1.0.2/migration_helper/utils/get_constraints.py +173 -0
  32. airflow_migration_helper-1.0.2/pyproject.toml +92 -0
  33. airflow_migration_helper-1.0.2/tests/__init__.py +1 -0
  34. airflow_migration_helper-1.0.2/tests/conftest.py +1 -0
  35. airflow_migration_helper-1.0.2/tests/e2e/Dockerfile.airflow2 +18 -0
  36. airflow_migration_helper-1.0.2/tests/e2e/README.md +233 -0
  37. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/README.md +30 -0
  38. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/airflow.cfg +11 -0
  39. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/.airflowignore +6 -0
  40. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase.py +124 -0
  41. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_backup_consumer.py +162 -0
  42. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_backup_producer.py +101 -0
  43. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_batch.py +98 -0
  44. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_batch_optimized.py +148 -0
  45. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_cli_commands.py +151 -0
  46. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_kerberos.py +96 -0
  47. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_pool.py +223 -0
  48. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_restore.py +173 -0
  49. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/hbase/example_hbase_sensors.py +178 -0
  50. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/README.md +5 -0
  51. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/clean_airflow2_taskflow_should_pass.py +23 -0
  52. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/datasets_to_assets_candidate.py +17 -0
  53. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_context_execution_date.py +20 -0
  54. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_days_ago.py +11 -0
  55. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_dummy_operator_import.py +12 -0
  56. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_schedule_interval.py +12 -0
  57. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_subdag_operator.py +28 -0
  58. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/deprecated_template_execution_date.py +15 -0
  59. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/legacy_trigger_rule_strings.py +14 -0
  60. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/migration_zoo/provide_context_python_operator.py +21 -0
  61. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/ozone/example_ozone_copy_from_hdfs.py +134 -0
  62. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/ozone/example_ozone_data_lifecycle.py +192 -0
  63. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/ozone/example_ozone_multi_tenant_management.py +139 -0
  64. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/ozone/example_ozone_usage.py +162 -0
  65. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/.gitkeep +0 -0
  66. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/branching/example_branch_operator.py +170 -0
  67. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/branching/example_branch_operator_decorator.py +145 -0
  68. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/datasets/example_dataset_alias.py +100 -0
  69. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/datasets/example_dataset_alias_with_no_taskflow.py +107 -0
  70. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/datasets/example_datasets.py +191 -0
  71. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/deprecated/example_subdag_operator.py +70 -0
  72. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/inter_dag/example_external_task_marker_dag.py +97 -0
  73. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/inter_dag/example_trigger_controller_dag.py +41 -0
  74. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/inter_dag/example_trigger_target_dag.py +55 -0
  75. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/operators/example_bash_operator.py +76 -0
  76. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/operators/example_python_decorator.py +133 -0
  77. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/operators/example_python_operator.py +150 -0
  78. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/taskflow/example_dynamic_task_mapping.py +39 -0
  79. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/taskflow/example_dynamic_task_mapping_with_no_taskflow_operators.py +64 -0
  80. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/taskflow/example_task_group.py +65 -0
  81. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/taskflow/example_task_group_decorator.py +80 -0
  82. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/tutorial/tutorial.py +127 -0
  83. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/tutorial/tutorial_dag.py +136 -0
  84. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/selected_core/tutorial/tutorial_taskflow_api.py +105 -0
  85. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/create_table.sql +24 -0
  86. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_gcs_to_presto.py +56 -0
  87. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_jdbc_queries.py +71 -0
  88. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_mssql.py +156 -0
  89. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_mysql.py +65 -0
  90. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_postgres.py +92 -0
  91. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_db/example_trino.py +97 -0
  92. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/http/example_http.py +157 -0
  93. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/papermill/example_papermill.py +58 -0
  94. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/papermill/example_papermill_remote_verify.py +80 -0
  95. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/papermill/example_papermill_verify.py +78 -0
  96. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/papermill/input_notebook.ipynb +120 -0
  97. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/sftp/example_sftp_sensor.py +98 -0
  98. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/singularity/example_singularity.py +56 -0
  99. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/sqlite/create_table.sql +24 -0
  100. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_local/sqlite/example_sqlite.py +98 -0
  101. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_dag_pinecone.py +52 -0
  102. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_dag_qdrant.py +49 -0
  103. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_openai.py +109 -0
  104. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_pgvector.py +80 -0
  105. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_weaviate_operator.py +302 -0
  106. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/dags/system_modern_taskflow/example_weaviate_using_hook.py +145 -0
  107. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/metadata/corpus-manifest.yml +54 -0
  108. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/metadata/curated-source-files.txt +41 -0
  109. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/metadata/provider-files.txt +60 -0
  110. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/metadata/selected-files.txt +62 -0
  111. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/metadata/source.txt +15 -0
  112. airflow_migration_helper-1.0.2/tests/e2e/airflow2-dag-corpus/requirements.txt +8 -0
  113. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/.gitkeep +0 -0
  114. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/__init__.py +16 -0
  115. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/CHANGELOG.rst +31 -0
  116. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/VERSIONING.md +81 -0
  117. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/__init__.py +35 -0
  118. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/client/__init__.py +22 -0
  119. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/client/thrift2_client.py +715 -0
  120. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/connection_config.py +93 -0
  121. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/datasets/__init__.py +24 -0
  122. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/datasets/hbase.py +53 -0
  123. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/__init__.py +18 -0
  124. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase.py +124 -0
  125. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_backup_consumer.py +162 -0
  126. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_backup_producer.py +101 -0
  127. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_batch.py +98 -0
  128. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_batch_optimized.py +148 -0
  129. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_cli_commands.py +151 -0
  130. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_kerberos.py +96 -0
  131. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_pool.py +223 -0
  132. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_restore.py +173 -0
  133. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/example_dags/example_hbase_sensors.py +178 -0
  134. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hbase_thrift2_generated/THBaseService.py +13423 -0
  135. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hbase_thrift2_generated/__init__.py +1 -0
  136. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hbase_thrift2_generated/constants.py +0 -0
  137. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hbase_thrift2_generated/ttypes.py +5246 -0
  138. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hooks/__init__.py +23 -0
  139. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hooks/hbase.py +284 -0
  140. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hooks/hbase_cli.py +388 -0
  141. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/hooks/hbase_strategy.py +541 -0
  142. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/operators/__init__.py +52 -0
  143. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/operators/hbase.py +516 -0
  144. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/provider.yaml +72 -0
  145. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/sensors/__init__.py +18 -0
  146. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/sensors/hbase.py +89 -0
  147. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/thrift2_pool.py +283 -0
  148. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/thrift2_ssl.py +104 -0
  149. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/ui_field_behaviour.json +19 -0
  150. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/utils/__init__.py +19 -0
  151. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/hbase/utils/data_conversion.py +97 -0
  152. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/CHANGELOG.rst +50 -0
  153. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/__init__.py +34 -0
  154. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/example_dags/__init__.py +17 -0
  155. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/example_dags/example_ozone_copy_from_hdfs.py +134 -0
  156. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/example_dags/example_ozone_data_lifecycle.py +192 -0
  157. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/example_dags/example_ozone_multi_tenant_management.py +139 -0
  158. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/example_dags/example_ozone_usage.py +162 -0
  159. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/hooks/__init__.py +37 -0
  160. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/hooks/ozone.py +1672 -0
  161. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/operators/__init__.py +57 -0
  162. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/operators/ozone.py +613 -0
  163. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/provider.yaml +73 -0
  164. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/sensors/__init__.py +25 -0
  165. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/sensors/ozone.py +72 -0
  166. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/transfers/__init__.py +29 -0
  167. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/transfers/hdfs_to_ozone.py +222 -0
  168. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/transfers/ozone_backup.py +79 -0
  169. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/__init__.py +17 -0
  170. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/cli_runner.py +558 -0
  171. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/connection_schema.py +247 -0
  172. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/errors.py +123 -0
  173. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/helpers.py +277 -0
  174. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/airflow/providers/arenadata/ozone/utils/security.py +545 -0
  175. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/tests/__init__.py +22 -0
  176. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/tests/system/__init__.py +17 -0
  177. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/tests/system/utils/__init__.py +72 -0
  178. airflow_migration_helper-1.0.2/tests/e2e/airflow2-provider-fixtures/tests/system/utils/watcher.py +28 -0
  179. airflow_migration_helper-1.0.2/tests/e2e/conftest.py +27 -0
  180. airflow_migration_helper-1.0.2/tests/e2e/docker-compose.airflow2.yml +22 -0
  181. airflow_migration_helper-1.0.2/tests/e2e/test_airflow2_corpus_smoke.py +63 -0
  182. airflow_migration_helper-1.0.2/tests/e2e/test_e2e_migration_helper.py +309 -0
  183. airflow_migration_helper-1.0.2/tests/integration/__init__.py +1 -0
  184. airflow_migration_helper-1.0.2/tests/integration/conftest.py +48 -0
  185. airflow_migration_helper-1.0.2/tests/integration/test_config_checker.py +306 -0
  186. airflow_migration_helper-1.0.2/tests/integration/test_dag_checker.py +215 -0
  187. airflow_migration_helper-1.0.2/tests/integration/test_file_selector_integration.py +24 -0
  188. airflow_migration_helper-1.0.2/tests/integration/test_get_constraints.py +28 -0
  189. airflow_migration_helper-1.0.2/tests/integration/test_reporters_integration.py +211 -0
  190. airflow_migration_helper-1.0.2/tests/integration/test_ruff_fix.py +116 -0
  191. airflow_migration_helper-1.0.2/tests/unit/__init__.py +1 -0
  192. airflow_migration_helper-1.0.2/tests/unit/conftest.py +1 -0
  193. airflow_migration_helper-1.0.2/tests/unit/test_cli.py +94 -0
  194. airflow_migration_helper-1.0.2/tests/unit/test_cli_runner.py +116 -0
  195. airflow_migration_helper-1.0.2/tests/unit/test_config_checker.py +468 -0
  196. airflow_migration_helper-1.0.2/tests/unit/test_dag_checker.py +320 -0
  197. airflow_migration_helper-1.0.2/tests/unit/test_db_migrate.py +203 -0
  198. airflow_migration_helper-1.0.2/tests/unit/test_dep_checker.py +276 -0
  199. airflow_migration_helper-1.0.2/tests/unit/test_file_selector.py +91 -0
  200. airflow_migration_helper-1.0.2/tests/unit/test_get_constraints.py +83 -0
  201. airflow_migration_helper-1.0.2/tests/unit/test_pipeline.py +729 -0
  202. airflow_migration_helper-1.0.2/tests/unit/test_reporters.py +375 -0
  203. airflow_migration_helper-1.0.2/tests/unit/test_ruff_checker.py +128 -0
@@ -0,0 +1,716 @@
1
+ ### VisualStudioCode template
2
+ .vscode/*
3
+ !.vscode/settings.json
4
+ !.vscode/tasks.json
5
+ !.vscode/launch.json
6
+ !.vscode/extensions.json
7
+ !.vscode/*.code-snippets
8
+
9
+ # Local History for Visual Studio Code
10
+ .history/
11
+
12
+ # Built Visual Studio Code Extensions
13
+ *.vsix
14
+
15
+ ### JetBrains template
16
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
17
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
18
+
19
+ # User-specific stuff
20
+ .idea
21
+ .idea/**/workspace.xml
22
+ .idea/**/tasks.xml
23
+ .idea/**/usage.statistics.xml
24
+ .idea/**/dictionaries
25
+ .idea/**/shelf
26
+ test_dags
27
+
28
+ config.json
29
+
30
+ # E2E run artifacts and temporary corpus copies
31
+ tests/e2e/runs/
32
+
33
+ # AWS User-specific
34
+ .idea/**/aws.xml
35
+
36
+ # Generated files
37
+ .idea/**/contentModel.xml
38
+
39
+ # Sensitive or high-churn files
40
+ .idea/**/dataSources/
41
+ .idea/**/dataSources.ids
42
+ .idea/**/dataSources.local.xml
43
+ .idea/**/sqlDataSources.xml
44
+ .idea/**/dynamic.xml
45
+ .idea/**/uiDesigner.xml
46
+ .idea/**/dbnavigator.xml
47
+
48
+ # Gradle
49
+ .idea/**/gradle.xml
50
+ .idea/**/libraries
51
+
52
+ # Gradle and Maven with auto-import
53
+ # When using Gradle or Maven with auto-import, you should exclude module files,
54
+ # since they will be recreated, and may cause churn. Uncomment if using
55
+ # auto-import.
56
+ # .idea/artifacts
57
+ # .idea/compiler.xml
58
+ # .idea/jarRepositories.xml
59
+ # .idea/modules.xml
60
+ # .idea/*.iml
61
+ # .idea/modules
62
+ # *.iml
63
+ # *.ipr
64
+
65
+ # CMake
66
+ cmake-build-*/
67
+
68
+ # Mongo Explorer plugin
69
+ .idea/**/mongoSettings.xml
70
+
71
+ # File-based project format
72
+ *.iws
73
+
74
+ # IntelliJ
75
+ out/
76
+
77
+ # mpeltonen/sbt-idea plugin
78
+ .idea_modules/
79
+
80
+ # JIRA plugin
81
+ atlassian-ide-plugin.xml
82
+
83
+ # Cursive Clojure plugin
84
+ .idea/replstate.xml
85
+
86
+ # SonarLint plugin
87
+ .idea/sonarlint/
88
+
89
+ # Crashlytics plugin (for Android Studio and IntelliJ)
90
+ com_crashlytics_export_strings.xml
91
+ crashlytics.properties
92
+ crashlytics-build.properties
93
+ fabric.properties
94
+
95
+ # Editor-based Rest Client
96
+ .idea/httpRequests
97
+
98
+ # Android studio 3.1+ serialized cache file
99
+ .idea/caches/build_file_checksums.ser
100
+
101
+ ### Linux template
102
+ *~
103
+
104
+ # temporary files which can be created if a process still has a handle open of a deleted file
105
+ .fuse_hidden*
106
+
107
+ # KDE directory preferences
108
+ .directory
109
+
110
+ # Linux trash folder which might appear on any partition or disk
111
+ .Trash-*
112
+
113
+ # .nfs files are created when an open file is removed but is still being accessed
114
+ .nfs*
115
+
116
+ ### VisualStudio template
117
+ ## Ignore Visual Studio temporary files, build results, and
118
+ ## files generated by popular Visual Studio add-ons.
119
+ ##
120
+ ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
121
+
122
+ # User-specific files
123
+ *.rsuser
124
+ *.suo
125
+ *.user
126
+ *.userosscache
127
+ *.sln.docstates
128
+
129
+ # User-specific files (MonoDevelop/Xamarin Studio)
130
+ *.userprefs
131
+
132
+ # Mono auto generated files
133
+ mono_crash.*
134
+
135
+ # Build results
136
+ [Dd]ebug/
137
+ [Dd]ebugPublic/
138
+ [Rr]elease/
139
+ [Rr]eleases/
140
+ x64/
141
+ x86/
142
+ [Ww][Ii][Nn]32/
143
+ [Aa][Rr][Mm]/
144
+ [Aa][Rr][Mm]64/
145
+ bld/
146
+ [Bb]in/
147
+ [Oo]bj/
148
+ [Ll]og/
149
+ [Ll]ogs/
150
+
151
+ # Visual Studio 2015/2017 cache/options directory
152
+ .vs/
153
+ # Uncomment if you have tasks that create the project's static files in wwwroot
154
+ #wwwroot/
155
+
156
+ # Visual Studio 2017 auto generated files
157
+ Generated\ Files/
158
+
159
+ # MSTest test Results
160
+ [Tt]est[Rr]esult*/
161
+ [Bb]uild[Ll]og.*
162
+
163
+ # NUnit
164
+ *.VisualState.xml
165
+ TestResult.xml
166
+ nunit-*.xml
167
+
168
+ # Build Results of an ATL Project
169
+ [Dd]ebugPS/
170
+ [Rr]eleasePS/
171
+ dlldata.c
172
+
173
+ # Benchmark Results
174
+ BenchmarkDotNet.Artifacts/
175
+
176
+ # .NET Core
177
+ project.lock.json
178
+ project.fragment.lock.json
179
+ artifacts/
180
+
181
+ # ASP.NET Scaffolding
182
+ ScaffoldingReadMe.txt
183
+
184
+ # StyleCop
185
+ StyleCopReport.xml
186
+
187
+ # Files built by Visual Studio
188
+ *_i.c
189
+ *_p.c
190
+ *_h.h
191
+ *.ilk
192
+ *.meta
193
+ *.obj
194
+ *.iobj
195
+ *.pch
196
+ *.pdb
197
+ *.ipdb
198
+ *.pgc
199
+ *.pgd
200
+ *.rsp
201
+ *.sbr
202
+ *.tlb
203
+ *.tli
204
+ *.tlh
205
+ *.tmp
206
+ *.tmp_proj
207
+ *_wpftmp.csproj
208
+ *.log
209
+ *.tlog
210
+ *.vspscc
211
+ *.vssscc
212
+ .builds
213
+ *.pidb
214
+ *.svclog
215
+ *.scc
216
+
217
+ # Chutzpah Test files
218
+ _Chutzpah*
219
+
220
+ # Visual C++ cache files
221
+ ipch/
222
+ *.aps
223
+ *.ncb
224
+ *.opendb
225
+ *.opensdf
226
+ *.sdf
227
+ *.cachefile
228
+ *.VC.db
229
+ *.VC.VC.opendb
230
+
231
+ # Visual Studio profiler
232
+ *.psess
233
+ *.vsp
234
+ *.vspx
235
+ *.sap
236
+
237
+ # Visual Studio Trace Files
238
+ *.e2e
239
+
240
+ # TFS 2012 Local Workspace
241
+ $tf/
242
+
243
+ # Guidance Automation Toolkit
244
+ *.gpState
245
+
246
+ # ReSharper is a .NET coding add-in
247
+ _ReSharper*/
248
+ *.[Rr]e[Ss]harper
249
+ *.DotSettings.user
250
+
251
+ # TeamCity is a build add-in
252
+ _TeamCity*
253
+
254
+ # DotCover is a Code Coverage Tool
255
+ *.dotCover
256
+
257
+ # AxoCover is a Code Coverage Tool
258
+ .axoCover/*
259
+ !.axoCover/settings.json
260
+
261
+ # Coverlet is a free, cross platform Code Coverage Tool
262
+ coverage*.json
263
+ coverage*.xml
264
+ coverage*.info
265
+
266
+ # Visual Studio code coverage results
267
+ *.coverage
268
+ *.coveragexml
269
+
270
+ # NCrunch
271
+ _NCrunch_*
272
+ .*crunch*.local.xml
273
+ nCrunchTemp_*
274
+
275
+ # MightyMoose
276
+ *.mm.*
277
+ AutoTest.Net/
278
+
279
+ # Web workbench (sass)
280
+ .sass-cache/
281
+
282
+ # Installshield output folder
283
+ [Ee]xpress/
284
+
285
+ # DocProject is a documentation generator add-in
286
+ DocProject/buildhelp/
287
+ DocProject/Help/*.HxT
288
+ DocProject/Help/*.HxC
289
+ DocProject/Help/*.hhc
290
+ DocProject/Help/*.hhk
291
+ DocProject/Help/*.hhp
292
+ DocProject/Help/Html2
293
+ DocProject/Help/html
294
+
295
+ # Click-Once directory
296
+ publish/
297
+
298
+ # Publish Web Output
299
+ *.[Pp]ublish.xml
300
+ *.azurePubxml
301
+ # Note: Comment the next line if you want to checkin your web deploy settings,
302
+ # but database connection strings (with potential passwords) will be unencrypted
303
+ *.pubxml
304
+ *.publishproj
305
+
306
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
307
+ # checkin your Azure Web App publish settings, but sensitive information contained
308
+ # in these scripts will be unencrypted
309
+ PublishScripts/
310
+
311
+ # NuGet Packages
312
+ *.nupkg
313
+ # NuGet Symbol Packages
314
+ *.snupkg
315
+ # The packages folder can be ignored because of Package Restore
316
+ **/[Pp]ackages/*
317
+ # except build/, which is used as an MSBuild target.
318
+ !**/[Pp]ackages/build/
319
+ # Uncomment if necessary however generally it will be regenerated when needed
320
+ #!**/[Pp]ackages/repositories.config
321
+ # NuGet v3's project.json files produces more ignorable files
322
+ *.nuget.props
323
+ *.nuget.targets
324
+
325
+ # Microsoft Azure Build Output
326
+ csx/
327
+ *.build.csdef
328
+
329
+ # Microsoft Azure Emulator
330
+ ecf/
331
+ rcf/
332
+
333
+ # Windows Store app package directories and files
334
+ AppPackages/
335
+ BundleArtifacts/
336
+ Package.StoreAssociation.xml
337
+ _pkginfo.txt
338
+ *.appx
339
+ *.appxbundle
340
+ *.appxupload
341
+
342
+ # Visual Studio cache files
343
+ # files ending in .cache can be ignored
344
+ *.[Cc]ache
345
+ # but keep track of directories ending in .cache
346
+ !?*.[Cc]ache/
347
+
348
+ # Others
349
+ ClientBin/
350
+ ~$*
351
+ *.dbmdl
352
+ *.dbproj.schemaview
353
+ *.jfm
354
+ *.pfx
355
+ *.publishsettings
356
+ orleans.codegen.cs
357
+
358
+ # Including strong name files can present a security risk
359
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
360
+ #*.snk
361
+
362
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
363
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
364
+ #bower_components/
365
+
366
+ # RIA/Silverlight projects
367
+ Generated_Code/
368
+
369
+ # Backup & report files from converting an old project file
370
+ # to a newer Visual Studio version. Backup files are not needed,
371
+ # because we have git ;-)
372
+ _UpgradeReport_Files/
373
+ Backup*/
374
+ UpgradeLog*.XML
375
+ UpgradeLog*.htm
376
+ ServiceFabricBackup/
377
+ *.rptproj.bak
378
+
379
+ # SQL Server files
380
+ *.mdf
381
+ *.ldf
382
+ *.ndf
383
+
384
+ # Business Intelligence projects
385
+ *.rdl.data
386
+ *.bim.layout
387
+ *.bim_*.settings
388
+ *.rptproj.rsuser
389
+ *- [Bb]ackup.rdl
390
+ *- [Bb]ackup ([0-9]).rdl
391
+ *- [Bb]ackup ([0-9][0-9]).rdl
392
+
393
+ # Microsoft Fakes
394
+ FakesAssemblies/
395
+
396
+ # GhostDoc plugin setting file
397
+ *.GhostDoc.xml
398
+
399
+ # Node.js Tools for Visual Studio
400
+ .ntvs_analysis.dat
401
+ node_modules/
402
+
403
+ # Visual Studio 6 build log
404
+ *.plg
405
+
406
+ # Visual Studio 6 workspace options file
407
+ *.opt
408
+
409
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
410
+ *.vbw
411
+
412
+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
413
+ *.vbp
414
+
415
+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
416
+ *.dsw
417
+ *.dsp
418
+
419
+ # Visual Studio 6 technical files
420
+
421
+ # Visual Studio LightSwitch build output
422
+ **/*.HTMLClient/GeneratedArtifacts
423
+ **/*.DesktopClient/GeneratedArtifacts
424
+ **/*.DesktopClient/ModelManifest.xml
425
+ **/*.Server/GeneratedArtifacts
426
+ **/*.Server/ModelManifest.xml
427
+ _Pvt_Extensions
428
+
429
+ # Paket dependency manager
430
+ .paket/paket.exe
431
+ paket-files/
432
+
433
+ # FAKE - F# Make
434
+ .fake/
435
+
436
+ # CodeRush personal settings
437
+ .cr/personal
438
+
439
+ # Python Tools for Visual Studio (PTVS)
440
+ __pycache__/
441
+ *.pyc
442
+
443
+ # Cake - Uncomment if you are using it
444
+ # tools/**
445
+ # !tools/packages.config
446
+
447
+ # Tabs Studio
448
+ *.tss
449
+
450
+ # Telerik's JustMock configuration file
451
+ *.jmconfig
452
+
453
+ # BizTalk build output
454
+ *.btp.cs
455
+ *.btm.cs
456
+ *.odx.cs
457
+ *.xsd.cs
458
+
459
+ # OpenCover UI analysis results
460
+ OpenCover/
461
+
462
+ # Azure Stream Analytics local run output
463
+ ASALocalRun/
464
+
465
+ # MSBuild Binary and Structured Log
466
+ *.binlog
467
+
468
+ # NVidia Nsight GPU debugger configuration file
469
+ *.nvuser
470
+
471
+ # MFractors (Xamarin productivity tool) working folder
472
+ .mfractor/
473
+
474
+ # Local History for Visual Studio
475
+ .localhistory/
476
+
477
+ # Visual Studio History (VSHistory) files
478
+ .vshistory/
479
+
480
+ # BeatPulse healthcheck temp database
481
+ healthchecksdb
482
+
483
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
484
+ MigrationBackup/
485
+
486
+ # Ionide (cross platform F# VS Code tools) working folder
487
+ .ionide/
488
+
489
+ # Fody - auto-generated XML schema
490
+ FodyWeavers.xsd
491
+
492
+ # VS Code files for those working on multiple tools
493
+ *.code-workspace
494
+
495
+ # Local History for Visual Studio Code
496
+
497
+ # Windows Installer files from build outputs
498
+ *.cab
499
+ *.msi
500
+ *.msix
501
+ *.msm
502
+ *.msp
503
+
504
+ # JetBrains Rider
505
+ *.sln.iml
506
+
507
+ ### Windows template
508
+ # Windows thumbnail cache files
509
+ Thumbs.db
510
+ Thumbs.db:encryptable
511
+ ehthumbs.db
512
+ ehthumbs_vista.db
513
+
514
+ # Dump file
515
+ *.stackdump
516
+
517
+ # Folder config file
518
+ [Dd]esktop.ini
519
+
520
+ # Recycle Bin used on file shares
521
+ $RECYCLE.BIN/
522
+
523
+ # Windows Installer files
524
+
525
+ # Windows shortcuts
526
+ *.lnk
527
+
528
+ ### macOS template
529
+ # General
530
+ .DS_Store
531
+ .AppleDouble
532
+ .LSOverride
533
+
534
+ # Icon must end with two \r
535
+ Icon
536
+
537
+ # Thumbnails
538
+ ._*
539
+
540
+ # Files that might appear in the root of a volume
541
+ .DocumentRevisions-V100
542
+ .fseventsd
543
+ .Spotlight-V100
544
+ .TemporaryItems
545
+ .Trashes
546
+ .VolumeIcon.icns
547
+ .com.apple.timemachine.donotpresent
548
+
549
+ # Directories potentially created on remote AFP share
550
+ .AppleDB
551
+ .AppleDesktop
552
+ Network Trash Folder
553
+ Temporary Items
554
+ .apdisk
555
+
556
+ ### Python template
557
+ # Byte-compiled / optimized / DLL files
558
+ *.py[cod]
559
+ *$py.class
560
+
561
+ # C extensions
562
+ *.so
563
+
564
+ # Distribution / packaging
565
+ .Python
566
+ build/
567
+ develop-eggs/
568
+ dist/
569
+ downloads/
570
+ eggs/
571
+ .eggs/
572
+ lib/
573
+ lib64/
574
+ parts/
575
+ sdist/
576
+ var/
577
+ wheels/
578
+ share/python-wheels/
579
+ *.egg-info/
580
+ .installed.cfg
581
+ *.egg
582
+ MANIFEST
583
+
584
+ # PyInstaller
585
+ # Usually these files are written by a python script from a template
586
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
587
+ *.manifest
588
+ *.spec
589
+
590
+ # Installer logs
591
+ pip-log.txt
592
+ pip-delete-this-directory.txt
593
+
594
+ # Unit test / coverage reports
595
+ htmlcov/
596
+ .tox/
597
+ .nox/
598
+ .coverage
599
+ .coverage.*
600
+ .cache
601
+ nosetests.xml
602
+ coverage.xml
603
+ *.cover
604
+ *.py,cover
605
+ .hypothesis/
606
+ .pytest_cache/
607
+ cover/
608
+
609
+ # Translations
610
+ *.mo
611
+ *.pot
612
+
613
+ # Django stuff:
614
+ local_settings.py
615
+ db.sqlite3
616
+ db.sqlite3-journal
617
+
618
+ # Flask stuff:
619
+ instance/
620
+ .webassets-cache
621
+
622
+ # Scrapy stuff:
623
+ .scrapy
624
+
625
+ # Sphinx documentation
626
+ docs/_build/
627
+
628
+ # PyBuilder
629
+ .pybuilder/
630
+ target/
631
+
632
+ # Jupyter Notebook
633
+ .ipynb_checkpoints
634
+
635
+ # IPython
636
+ profile_default/
637
+ ipython_config.py
638
+
639
+ # pyenv
640
+ # For a library or package, you might want to ignore these files since the code is
641
+ # intended to run in multiple environments; otherwise, check them in:
642
+ # .python-version
643
+
644
+ # pipenv
645
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
646
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
647
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
648
+ # install all needed dependencies.
649
+ #Pipfile.lock
650
+
651
+ # poetry
652
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
653
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
654
+ # commonly ignored for libraries.
655
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
656
+ #poetry.lock
657
+
658
+ # pdm
659
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
660
+ #pdm.lock
661
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
662
+ # in version control.
663
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
664
+ .pdm.toml
665
+ .pdm-python
666
+ .pdm-build/
667
+
668
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
669
+ __pypackages__/
670
+
671
+ # Celery stuff
672
+ celerybeat-schedule
673
+ celerybeat.pid
674
+
675
+ # SageMath parsed files
676
+ *.sage.py
677
+
678
+ # Environments
679
+ .env
680
+ .venv
681
+ env/
682
+ venv/
683
+ ENV/
684
+ env.bak/
685
+ venv.bak/
686
+
687
+ # Spyder project settings
688
+ .spyderproject
689
+ .spyproject
690
+
691
+ # Rope project settings
692
+ .ropeproject
693
+
694
+ # mkdocs documentation
695
+ /site
696
+
697
+ # mypy
698
+ .mypy_cache/
699
+ .dmypy.json
700
+ dmypy.json
701
+
702
+ # Pyre type checker
703
+ .pyre/
704
+
705
+ # pytype static type analyzer
706
+ .pytype/
707
+
708
+ # Cython debug symbols
709
+ cython_debug/
710
+
711
+ # PyCharm
712
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
713
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
714
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
715
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
716
+ #.idea/