taher-ghaleb commited on
Commit
031cf82
·
0 Parent(s):

DEPosit Dataset

Browse files
Files changed (47) hide show
  1. .gitattributes +67 -0
  2. Data/DE_all_commits_details.csv +3 -0
  3. Data/DE_all_issue_closers.csv +3 -0
  4. Data/DE_all_issue_details.csv +3 -0
  5. Data/DE_all_pr_details.csv +3 -0
  6. Data/DE_all_pr_reviews_graphql.csv +3 -0
  7. Data/DE_ci_services.csv +1275 -0
  8. Data/DE_commits_per_ci_files.csv +3 -0
  9. Data/DE_pipeline_artifacts.db +3 -0
  10. Data/DE_repo_gha_runs_counts.csv +1953 -0
  11. Data/DE_repo_interactions.csv +1852 -0
  12. Data/DE_repo_metrics.csv +0 -0
  13. Data/DE_user_autonomy.csv +0 -0
  14. Data/filtered_DE_repositories.csv +0 -0
  15. Data/pipeline_artifacts/DE_pipeline_airflow_dag_features.csv +0 -0
  16. Data/pipeline_artifacts/DE_pipeline_beam_pipeline_features.csv +5 -0
  17. Data/pipeline_artifacts/DE_pipeline_dagster_features.csv +0 -0
  18. Data/pipeline_artifacts/DE_pipeline_dbt_model_features.csv +0 -0
  19. Data/pipeline_artifacts/DE_pipeline_dbt_project_summary.csv +172 -0
  20. Data/pipeline_artifacts/DE_pipeline_dlt_features.csv +45 -0
  21. Data/pipeline_artifacts/DE_pipeline_files.csv +0 -0
  22. Data/pipeline_artifacts/DE_pipeline_kedro_pipeline_features.csv +19 -0
  23. Data/pipeline_artifacts/DE_pipeline_luigi_task_features.csv +27 -0
  24. Data/pipeline_artifacts/DE_pipeline_prefect_flow_features.csv +715 -0
  25. README.md +282 -0
  26. Scripts/backfill_ci_gha_from_runs.py +119 -0
  27. Scripts/collect_github_repos_commits_per_ci_files.py +200 -0
  28. Scripts/collect_github_repos_for_SE4DE_topics.py +301 -0
  29. Scripts/collect_pipeline_artifacts.py +667 -0
  30. Scripts/compute_interactions_for_SE4DE_repos.py +236 -0
  31. Scripts/compute_user_autonomy_for_SE4DE_repos.py +244 -0
  32. Scripts/get_gha_workflow_runs_for_SE4DE_repos.py +66 -0
  33. Scripts/get_issue_closers_for_SE4DE_repos.py +229 -0
  34. Scripts/get_pr_reviews_graphql_for_SE4DE_repos.py +271 -0
  35. Scripts/get_pr_reviews_rest_for_SE4DE_repos.py +236 -0
  36. Scripts/get_repo_commits_pr_issues_contributors_for_SE4DE_repos.py +421 -0
  37. Scripts/github_api.py +78 -0
  38. Scripts/github_tokens.py +126 -0
  39. Scripts/pipeline_parsers/__init__.py +138 -0
  40. Scripts/pipeline_parsers/airflow_parser.py +338 -0
  41. Scripts/pipeline_parsers/dagster_parser.py +178 -0
  42. Scripts/pipeline_parsers/dbt_parser.py +187 -0
  43. Scripts/pipeline_parsers/other_parsers.py +441 -0
  44. Scripts/pipeline_parsers/prefect_parser.py +197 -0
  45. Scripts/pipeline_schema.sql +231 -0
  46. Scripts/redact_leaked_tokens_in_data.py +61 -0
  47. requirements.txt +2 -0
.gitattributes ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.avro filter=lfs diff=lfs merge=lfs -text
4
+ *.bin filter=lfs diff=lfs merge=lfs -text
5
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
6
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
7
+ *.ftz filter=lfs diff=lfs merge=lfs -text
8
+ *.gz filter=lfs diff=lfs merge=lfs -text
9
+ *.h5 filter=lfs diff=lfs merge=lfs -text
10
+ *.joblib filter=lfs diff=lfs merge=lfs -text
11
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
12
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
13
+ *.mds filter=lfs diff=lfs merge=lfs -text
14
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
15
+ *.model filter=lfs diff=lfs merge=lfs -text
16
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
17
+ *.npy filter=lfs diff=lfs merge=lfs -text
18
+ *.npz filter=lfs diff=lfs merge=lfs -text
19
+ *.onnx filter=lfs diff=lfs merge=lfs -text
20
+ *.ot filter=lfs diff=lfs merge=lfs -text
21
+ *.parquet filter=lfs diff=lfs merge=lfs -text
22
+ *.pb filter=lfs diff=lfs merge=lfs -text
23
+ *.pickle filter=lfs diff=lfs merge=lfs -text
24
+ *.pkl filter=lfs diff=lfs merge=lfs -text
25
+ *.pt filter=lfs diff=lfs merge=lfs -text
26
+ *.pth filter=lfs diff=lfs merge=lfs -text
27
+ *.rar filter=lfs diff=lfs merge=lfs -text
28
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
29
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
30
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
31
+ *.tar filter=lfs diff=lfs merge=lfs -text
32
+ *.tflite filter=lfs diff=lfs merge=lfs -text
33
+ *.tgz filter=lfs diff=lfs merge=lfs -text
34
+ *.wasm filter=lfs diff=lfs merge=lfs -text
35
+ *.xz filter=lfs diff=lfs merge=lfs -text
36
+ *.zip filter=lfs diff=lfs merge=lfs -text
37
+ *.zst filter=lfs diff=lfs merge=lfs -text
38
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
39
+ # Audio files - uncompressed
40
+ *.pcm filter=lfs diff=lfs merge=lfs -text
41
+ *.sam filter=lfs diff=lfs merge=lfs -text
42
+ *.raw filter=lfs diff=lfs merge=lfs -text
43
+ # Audio files - compressed
44
+ *.aac filter=lfs diff=lfs merge=lfs -text
45
+ *.flac filter=lfs diff=lfs merge=lfs -text
46
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
47
+ *.ogg filter=lfs diff=lfs merge=lfs -text
48
+ *.wav filter=lfs diff=lfs merge=lfs -text
49
+ # Image files - uncompressed
50
+ *.bmp filter=lfs diff=lfs merge=lfs -text
51
+ *.gif filter=lfs diff=lfs merge=lfs -text
52
+ *.png filter=lfs diff=lfs merge=lfs -text
53
+ *.tiff filter=lfs diff=lfs merge=lfs -text
54
+ # Image files - compressed
55
+ *.jpg filter=lfs diff=lfs merge=lfs -text
56
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
57
+ *.webp filter=lfs diff=lfs merge=lfs -text
58
+ # Video files - compressed
59
+ *.mp4 filter=lfs diff=lfs merge=lfs -text
60
+ *.webm filter=lfs diff=lfs merge=lfs -text
61
+ Data/DE_all_commits_details.csv filter=lfs diff=lfs merge=lfs -text
62
+ Data/DE_all_issue_closers.csv filter=lfs diff=lfs merge=lfs -text
63
+ Data/DE_all_issue_details.csv filter=lfs diff=lfs merge=lfs -text
64
+ Data/DE_all_pr_details.csv filter=lfs diff=lfs merge=lfs -text
65
+ Data/DE_all_pr_reviews_graphql.csv filter=lfs diff=lfs merge=lfs -text
66
+ Data/DE_commits_per_ci_files.csv filter=lfs diff=lfs merge=lfs -text
67
+ Data/DE_pipeline_artifacts.db filter=lfs diff=lfs merge=lfs -text
Data/DE_all_commits_details.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37fa8446e335ad45b7a212562679970c1528f6fc94b34a37fa52a60fd911c4ef
3
+ size 599544900
Data/DE_all_issue_closers.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b842ac22b229c1c511a533a78a8c0b8f1184b0d2b70de759c934842bff42a200
3
+ size 12969453
Data/DE_all_issue_details.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caabafef121937aef29b307738afefd8c108318644b25d7db7a4885a61df9309
3
+ size 485181367
Data/DE_all_pr_details.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7264e1c48539c05e272bfe13528aa0854e21c4cfc6ea60ba06e8b481ebc35d2
3
+ size 1261680860
Data/DE_all_pr_reviews_graphql.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56a68bcf95545b574c836a3caeac03357d4e128b99adb28fcd84bee9ec041993
3
+ size 40785540
Data/DE_ci_services.csv ADDED
@@ -0,0 +1,1275 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_name,language,ci_services_count,ci_services_list,.github/workflows,.travis.yml,circle.yml,.circleci/config.yml,.gitlab-ci.yml,.appveyor.yml,appveyor.yml,azure-pipelines.yml,bitbucket-pipelines.yml,.cirrus.yml,.scrutinizer.yml,codeship-services.yml,.semaphore/semaphore.yml,wercker.yml,Jenkinsfile,bitrise.yml,bamboo.yml,.gocd.yaml,codemagic.yaml
2
+ anki-code/xontrib-pipeliner,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
3
+ ketgo/marshmallow-pyspark,Python,2,"['GitHub Actions', 'Travis CI']",2,8,,,,,,,,,,,,,,,,,
4
+ vmware/versatile-data-kit,Python,2,"['GitHub Actions', 'GitLab']",16,,,,22,,,,,,,,,,,,,,
5
+ datarootsio/notion-dbs-data-quality,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
6
+ anna-geller/dataflow-ops,Python,1,['GitHub Actions'],118,,,,,,,,,,,,,,,,,,
7
+ anna-geller/prefect-aws-lambda,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
8
+ anna-geller/dataflow-ops-aws-eks,Python,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
9
+ anna-geller/prefect-getting-started,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
10
+ VeraZab/nyc-stats,Python,1,['GitHub Actions'],46,,,,,,,,,,,,,,,,,,
11
+ CharlieSergeant/airflow-minio-postgres-fastapi,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
12
+ BayoAdejare/lightning-containers,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
13
+ TJhon/PyPeruStats,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
14
+ opensanctions/nomenklatura,Python,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
15
+ unioslo/cerebrum,Python,1,['Jenkins'],,,,,,,,,,,,,,,8,,,,
16
+ jumpmindinc/metl,Java,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
17
+ apache/airflow,Python,2,"['GitHub Actions', 'Travis CI']",1000,150,,,,,,,,,,,,,,,,,
18
+ DSuveges/GenomePlotter,Python,3,"['GitHub Actions', 'Travis CI', 'CircleCI']",3,3,,7,,,,,,,,,,,,,,,
19
+ seandavi/awesome-single-cell,nan,2,"['GitHub Actions', 'Travis CI']",10,6,,,,,,,,,,,,,,,,,
20
+ SysBioChalmers/GECKO,MATLAB,2,"['GitHub Actions', 'Travis CI']",13,17,,,,,,,,,,,,,,,,,
21
+ raamana/pyradigm,Python,1,['Travis CI'],,6,,,,,,,,,,,,,,,,,
22
+ apache/hudi,Java,3,"['GitHub Actions', 'Travis CI', 'Azure Pipelines']",131,17,,,,,,41,,,,,,,,,,,
23
+ selbouhaddani/OmicsPLS,HTML,2,"['GitHub Actions', 'Travis CI']",8,4,,,,,,,,,,,,,,,,,
24
+ wenjie2wang/intsurv,C++,4,"['GitHub Actions', 'Travis CI', 'GitLab', 'AppVeyor']",3,3,,,2,,2,,,,,,,,,,,,
25
+ thymeflow/thymeflow-back,Scala,1,['Travis CI'],,4,,,,,,,,,,,,,,,,,
26
+ apache/seatunnel,Java,2,"['GitHub Actions', 'Travis CI']",227,5,,,,,,,,,,,,,,,,,
27
+ bio2bel/bio2bel,Python,2,"['GitHub Actions', 'Travis CI']",1,23,,,,,,,,,,,,,,,,,
28
+ CommonCoreOntology/CommonCoreOntologies,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
29
+ dagster-io/dagster,Python,3,"['GitHub Actions', 'CircleCI', 'Azure Pipelines']",96,,,88,,,,33,,,,,,,,,,,
30
+ DTStack/chunjun,Java,2,"['GitHub Actions', 'GitLab']",12,,,,3,,,,,,,,,,,,,,
31
+ mara/mara-pipelines,Python,2,"['GitHub Actions', 'Travis CI']",5,6,,,,,,,,,,,,,,,,,
32
+ saeyslab/nichenetr,R,2,"['GitHub Actions', 'Travis CI']",42,20,,,,,,,,,,,,,,,,,
33
+ SDM-TIB/SDM-RDFizer,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
34
+ JonnyTran/OpenOmics,Python,2,"['GitHub Actions', 'Travis CI']",42,50,,,,,,,,,,,,,,,,,
35
+ mara/mara-etl-tools,PLpgSQL,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
36
+ DTUComputeStatisticsAndDataAnalysis/MBPLS,Python,1,['Travis CI'],,21,,,,,,,,,,,,,,,,,
37
+ oeg-upm/gtfs-bench,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
38
+ dieterich-lab/Baltica,R,2,"['GitHub Actions', 'Jenkins']",18,,,,,,,,,,,,,,5,,,,
39
+ zazuko/barnard59,JavaScript,1,['GitHub Actions'],58,,,,,,,,,,,,,,,,,,
40
+ NPLinker/nplinker,Python,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
41
+ CategoricalData/CQL,Java,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
42
+ fluvio-community/fluvio,Rust,1,['GitHub Actions'],539,,,,,,,,,,,,,,,,,,
43
+ rudderlabs/rudder-server,Go,1,['GitHub Actions'],236,,,,,,,,,,,,,,,,,,
44
+ theislab/scarches,Jupyter Notebook,1,['Travis CI'],,5,,,,,,,,,,,,,,,,,
45
+ delftdata/valentine,Python,1,['GitHub Actions'],35,,,,,,,,,,,,,,,,,,
46
+ CogStack/CogStack-NiFi,Python,1,['GitHub Actions'],105,,,,,,,,,,,,,,,,,,
47
+ oeg-upm/mapeathor,Python,2,"['GitHub Actions', 'Travis CI']",10,11,,,,,,,,,,,,,,,,,
48
+ BioDWH2/BioDWH2,Java,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
49
+ apache/hop,Java,2,"['GitHub Actions', 'Jenkins']",22,,,,,,,,,,,,,,68,,,,
50
+ slowkow/harmonypy,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
51
+ saezlab/cosmosR,R,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
52
+ marklogic-community/pipes,JavaScript,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
53
+ airbytehq/airbyte,Python,1,['GitHub Actions'],1000,,,,,,,,,,,,,,,,,,
54
+ apache/flink-cdc,Java,2,"['GitHub Actions', 'Azure Pipelines']",71,,,,,,,11,,,,,,,,,,,
55
+ jitsucom/jitsu,TypeScript,1,['GitHub Actions'],171,,,,,,,,,,,,,,,,,,
56
+ Azure/data-product-batch,Bicep,1,['GitHub Actions'],72,,,,,,,,,,,,,,,,,,
57
+ Azure/data-product-streaming,Bicep,1,['GitHub Actions'],34,,,,,,,,,,,,,,,,,,
58
+ cloudquery/cloudquery,Go,1,['GitHub Actions'],1000,,,,,,,,,,,,,,,,,,
59
+ morph-kgc/morph-kgc,Python,2,"['GitHub Actions', 'Travis CI']",54,7,,,,,,,,,,,,,,,,,
60
+ kuwala-io/kuwala,JavaScript,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
61
+ cuebook/cuelake,JavaScript,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
62
+ thedataengineeringbook/thedataengineeringbook,JavaScript,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
63
+ linkml/linkml-model,Python,1,['GitHub Actions'],33,,,,,,,,,,,,,,,,,,
64
+ ginkgobioworks/geckopy,Python,2,"['GitHub Actions', 'GitLab']",9,,,,10,,,,,,,,,,,,,,
65
+ linkedin/data-integration-library,Java,2,"['GitHub Actions', 'Travis CI']",2,2,,,,,,,,,,,,,,,,,
66
+ apache/incubator-devlake,Go,1,['GitHub Actions'],122,,,,,,,,,,,,,,,,,,
67
+ MeltanoLabs/Singer-Working-Group,nan,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
68
+ dobraczka/forayer,Jupyter Notebook,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
69
+ dataplane-app/dataplane,JavaScript,1,['GitHub Actions'],87,,,,,,,,,,,,,,,,,,
70
+ starlake-ai/starlake,Scala,2,"['GitHub Actions', 'Travis CI']",256,22,,,,,,,,,,,,,,,,,
71
+ Avaiga/taipy,Python,1,['GitHub Actions'],265,,,,,,,,,,,,,,,,,,
72
+ ConduitIO/conduit,Go,1,['GitHub Actions'],196,,,,,,,,,,,,,,,,,,
73
+ oeg-upm/github-action-morph-kgc,JavaScript,1,['GitHub Actions'],78,,,,,,,,,,,,,,,,,,
74
+ mage-ai/mage-ai,Python,2,"['GitHub Actions', 'CircleCI']",56,,,12,,,,,,,,,,,,,,,
75
+ runprism/prism,Python,1,['GitHub Actions'],40,,,,,,,,,,,,,,,,,,
76
+ yezhengSTAT/ADTnorm,R,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
77
+ cloudquery/plugin-sdk,Go,1,['GitHub Actions'],167,,,,,,,,,,,,,,,,,,
78
+ apache/seatunnel-web,Java,2,"['GitHub Actions', 'Travis CI']",59,5,,,,,,,,,,,,,,,,,
79
+ gabledata/recap,Python,1,['GitHub Actions'],37,,,,,,,,,,,,,,,,,,
80
+ ORNL/flowcept,Python,1,['GitHub Actions'],396,,,,,,,,,,,,,,,,,,
81
+ apache/seatunnel-datasource-sdk,Java,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
82
+ neuroforgede/nfcompose,Python,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
83
+ dobraczka/klinker,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
84
+ GuinsooLab/luden,TypeScript,2,"['GitHub Actions', 'CircleCI']",1,,,2,,,,,,,,,,,,,,,
85
+ scaleway/cq-source-scaleway,Go,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
86
+ AnthonyByansi/MicrosoftFabric-Exploratorium,Shell,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
87
+ siyul-park/uniflow,Go,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
88
+ CloudFormations/CF.Cumulus,TSQL,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
89
+ BioDataFuse/pyBiodatafuse,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
90
+ breimanntools/xomics,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
91
+ bruin-data/ingestr,Go,1,['GitHub Actions'],91,,,,,,,,,,,,,,,,,,
92
+ buildersoftio/cortex,C#,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
93
+ cbib/Seurat-Integrate,R,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
94
+ VIDA-NYU/bdi-kit,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
95
+ kinto-technologies/SpringBoot3BatchStarter,Java,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
96
+ apache/incubator-devlake-playground,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
97
+ lightfeed/sdk,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
98
+ jonathanbhaskar/dagster-odp,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
99
+ Seddryck/Streamistry,C#,2,"['GitHub Actions', 'AppVeyor']",1,,,,,,6,,,,,,,,,,,,
100
+ armbian/armbian.github.io,Python,1,['GitHub Actions'],330,,,,,,,,,,,,,,,,,,
101
+ tabsdata/tabsdata,Python,1,['GitHub Actions'],49,,,,,,,,,,,,,,,,,,
102
+ quadbio/cellmapper,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
103
+ apache/seatunnel-tools,Java,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
104
+ wbsg-uni-mannheim/PyDI,HTML,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
105
+ firelink-sh/evolve-py,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
106
+ quadbio/scembed,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
107
+ bladepipe/bladepipe-official-site-and-docs,TypeScript,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
108
+ YotpoLtd/metorikku,Scala,1,['Travis CI'],,49,,,,,,,,,,,,,,,,,
109
+ data-solution-automation-engine/DIRECT,TSQL,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
110
+ BBVA/data-refinery,Python,2,"['Travis CI', 'GitHub Actions']",,13,,,,,,,,,,,,,,,,,
111
+ sparsecode/DaFlow,Scala,1,['Travis CI'],,14,,,,,,,,,,,,,,,,,
112
+ yennanliu/AirflowJob,Python,1,['Travis CI'],,21,,,,,,,,,,,,,,,,,
113
+ techascent/tech.ml.dataset,Clojure,2,"['GitHub Actions', 'Travis CI']",10,15,,,,,,,,,,,,,,,,,
114
+ FizzCodeSoftware/EtLast,C#,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
115
+ apache/streampark,Java,1,['GitHub Actions'],107,,,,,,,,,,,,,,,,,,
116
+ TriplyDB/Documentation,HTML,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
117
+ yennanliu/airflow-ubuntu-dev,Python,1,['Travis CI'],,8,,,,,,,,,,,,,,,,,
118
+ SETL-Framework/setl,Scala,3,"['GitHub Actions', 'Travis CI', 'GitLab']",16,11,,,25,,,,,,,,,,,,,,
119
+ tharwaninitin/etlflow,Scala,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
120
+ damklis/etljob,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
121
+ wri/gfw-data-api,Python,1,['GitHub Actions'],42,,,,,,,,,,,,,,,,,,
122
+ Breaka84/Spooq,Python,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
123
+ SourceWatcher/source-watcher-core,PHP,4,"['Travis CI', 'CircleCI', 'Scrutinizer CI', 'GitHub Actions']",,12,,4,,,,,,,3,,,,,,,,
124
+ gonwi/celo-etl,Python,2,"['GitHub Actions', 'Travis CI']",1,1,,,,,,,,,,,,,,,,,
125
+ patterns-app/patterns-devkit,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
126
+ Indexical-Metrics-Measure-Advisory/watchmen-matryoshka-doll,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
127
+ stellar/stellar-etl,Go,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
128
+ amanjpro/greenish,Scala,1,['Travis CI'],,10,,,,,,,,,,,,,,,,,
129
+ zazuko/xrm-csvw-workflow,JavaScript,2,"['GitHub Actions', 'GitLab']",3,,,,2,,,,,,,,,,,,,,
130
+ restarone/violet_rails,Ruby,1,['GitHub Actions'],37,,,,,,,,,,,,,,,,,,
131
+ noleme/noleme-flow,Java,2,"['GitHub Actions', 'GitLab']",10,,,,2,,,,,,,,,,,,,,
132
+ josephmachado/bitcoinMonitor,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
133
+ KayvanShah1/thomasnet-scraper,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
134
+ giucris/yasp,Scala,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
135
+ Genvekt/coincap_monitor,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
136
+ OP-TED/ted-rdf-conversion-pipeline,HTML,1,['GitHub Actions'],63,,,,,,,,,,,,,,,,,,
137
+ risingwavelabs/risingwave,Rust,1,['GitHub Actions'],420,,,,,,,,,,,,,,,,,,
138
+ conductor-oss/python-sdk,Python,1,['GitHub Actions'],65,,,,,,,,,,,,,,,,,,
139
+ biglocalnews/prefect-flow-template,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
140
+ RADar-AZDelta/Rabbit-in-a-Blender,Python,1,['GitHub Actions'],62,,,,,,,,,,,,,,,,,,
141
+ IcarusDB/metal,Java,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
142
+ Open-Source-Legal/OpenContracts,Python,1,['GitHub Actions'],174,,,,,,,,,,,,,,,,,,
143
+ jvalue/jayvee,TypeScript,1,['GitHub Actions'],58,,,,,,,,,,,,,,,,,,
144
+ ahnazary/Finance,Python,1,['GitHub Actions'],130,,,,,,,,,,,,,,,,,,
145
+ SoleyIo/dtflw,Python,2,"['GitHub Actions', 'Azure Pipelines']",7,,,,,,,5,,,,,,,,,,,
146
+ jolares/example-gcp-dataform,JavaScript,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
147
+ apache/hamilton,Jupyter Notebook,2,"['GitHub Actions', 'CircleCI']",37,,,28,,,,,,,,,,,,,,,
148
+ MTSWebServices/onetl,Python,2,"['GitHub Actions', 'GitLab']",255,,,,56,,,,,,,,,,,,,,
149
+ wiredhut/wiredflow,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
150
+ SorellaLabs/brontes,Rust,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
151
+ ebonnal/streamable,Python,1,['GitHub Actions'],52,,,,,,,,,,,,,,,,,,
152
+ mycelial/mycelial,Rust,1,['GitHub Actions'],42,,,,,,,,,,,,,,,,,,
153
+ koralium/flowtide,C#,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
154
+ nogibjj/BallersDash,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
155
+ prantoamt/etl-pipeline-runner,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
156
+ netwerk-digitaal-erfgoed/ld-workbench,TypeScript,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
157
+ mrpbennett/etl-pipeline,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
158
+ Zipstack/unstract-sdk,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
159
+ fmelihh/recommendation-engine,Python,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
160
+ walleXD/ts-dag,TypeScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
161
+ Wilmar3752/ETL_scraper,Jupyter Notebook,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
162
+ ContextData/VectorETL,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
163
+ ylem-co/ylem,JavaScript,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
164
+ jchunk-io/jchunk,Java,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
165
+ aim-rsf/cprd-data-wrangle,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
166
+ Edwardvaneechoud/Flowfile,Python,1,['GitHub Actions'],76,,,,,,,,,,,,,,,,,,
167
+ realdatadriven/etlx,Go,1,['GitHub Actions'],95,,,,,,,,,,,,,,,,,,
168
+ dotflow-io/dotflow,Python,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
169
+ abrahamkoloboe27/Airflow-Pipeline-Dashboard-Compagnie-Aerienne,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
170
+ keboola/mcp-server,Python,1,['GitHub Actions'],124,,,,,,,,,,,,,,,,,,
171
+ datazip-inc/olake-ui,TypeScript,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
172
+ datacompose/datacompose,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
173
+ realdatadriven/central-set-go,Go,1,['GitHub Actions'],41,,,,,,,,,,,,,,,,,,
174
+ castengine/insert-tools,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
175
+ LAMP-LUCAS/AutoSINAPI,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
176
+ marciok/gust,Elixir,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
177
+ wp-labs/warp-parse,Rust,1,['GitHub Actions'],51,,,,,,,,,,,,,,,,,,
178
+ hantablack9/BoardGameGeek-Data-Extractor,Jupyter Notebook,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
179
+ enesgulerdev/hm-fashion-recommender,Python,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
180
+ carlosacchi/databricks-dab-lab,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
181
+ puckel/docker-airflow,Shell,2,"['GitHub Actions', 'CircleCI']",1,,16,10,,,,,,,,,,,,,,,
182
+ LREN-CHUV/ansible-airflow,Python,2,"['CircleCI', 'Wercker']",,,9,12,,,,,,,,,,24,,,,,
183
+ mozilla/telemetry-airflow,Python,2,"['CircleCI', 'GitHub Actions']",,,3,38,,,,,,,,,,,,,,,
184
+ infOpen/ansible-role-airflow,Python,2,"['Travis CI', 'GitHub Actions']",,14,,,,,,,,,,,,,,,,,
185
+ dsaidgovsg/airflow-pipeline,Python,2,"['GitHub Actions', 'Travis CI']",5,17,,,,,,,,,,,,,,,,,
186
+ rssanders3/airflow-spark-operator-plugin,Python,1,['Jenkins'],,,,,,,,,,,,,,,1,,,,
187
+ LREN-CHUV/airflow-imaging-plugins,Python,1,['CircleCI'],,,4,7,,,,,,,,,,,,,,,
188
+ argoproj/argo-workflows,Go,2,"['GitHub Actions', 'CircleCI']",393,,,38,,,,,,,,,,,,,,,
189
+ idealista/airflow-role,YAML,1,['Travis CI'],,25,,,,,,,,,,,,,,,,,
190
+ epoch8/airflow-exporter,Python,2,"['GitHub Actions', 'Travis CI']",64,20,,,,,,,,,,,,,,,,,
191
+ chandulal/airflow-testing,Python,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
192
+ ananthdurai/airflow-training,Python,1,['CircleCI'],,,,1,,,,,,,,,,,,,,,
193
+ dodoyuan/docker-airflow-datax,Python,1,['CircleCI'],,,1,,,,,,,,,,,,,,,,
194
+ astronomer/dag-factory,Python,2,"['GitHub Actions', 'Travis CI']",106,8,,,,,,,,,,,,,,,,,
195
+ tkp-archive/paperboy,Python,4,"['GitHub Actions', 'Travis CI', 'AppVeyor', 'Azure Pipelines']",1,21,,,,10,11,8,,,,,,,,,,,
196
+ Aiscalate/aiscalator,Python,2,"['Travis CI', 'AppVeyor']",,7,,,,,1,,,,,,,,,,,,
197
+ apache/dolphinscheduler,Java,1,['GitHub Actions'],282,,,,,,,,,,,,,,,,,,
198
+ godatadriven/whirl,Shell,1,['GitHub Actions'],52,,,,,,,,,,,,,,,,,,
199
+ apache/airflow-site,HTML,2,"['GitHub Actions', 'Travis CI']",82,6,,,,,,,,,,,,,,,,,
200
+ tulibraries/ansible-role-airflow,Python,3,"['GitHub Actions', 'Travis CI', 'CircleCI']",8,26,,12,,,,,,,,,,,,,,,
201
+ andreax79/airflow-code-editor,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
202
+ ericdaat/data-stack,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
203
+ ptariche/airflow-ts,TypeScript,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
204
+ WeBankFinTech/DataSphereStudio,Java,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
205
+ elyra-ai/elyra,Python,2,"['GitHub Actions', 'Travis CI']",62,16,,,,,,,,,,,,,,,,,
206
+ bryzgaloff/airflow-clickhouse-plugin,Python,1,['GitHub Actions'],99,,,,,,,,,,,,,,,,,,
207
+ fristonio/xene,Go,2,"['GitHub Actions', 'Travis CI']",2,6,,,,,,,,,,,,,,,,,
208
+ The-Academic-Observatory/observatory-platform,Python,1,['GitHub Actions'],39,,,,,,,,,,,,,,,,,,
209
+ gdoumenc/coworks,Python,2,"['GitHub Actions', 'Travis CI']",5,18,,,,,,,,,,,,,,,,,
210
+ mpolatcan/airflow-docker,Shell,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
211
+ odahu/odahu-airflow-plugin,Python,2,"['Travis CI', 'CircleCI']",,1,,1,,,,,,,,,,,,,,,
212
+ fieldryand/goflow,Go,2,"['GitHub Actions', 'Travis CI']",28,10,,,,,,,,,,,,,,,,,
213
+ astronomer/airflow-chart,Python,2,"['GitHub Actions', 'CircleCI']",3,,,97,,,,,,,,,,,,,,,
214
+ pipeline-tools/gusty,Python,2,"['GitHub Actions', 'Travis CI']",14,5,,,,,,,,,,,,,,,,,
215
+ scribd/objinsync,Go,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
216
+ domenp/aircal,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
217
+ LamaAni/KubernetesJobOperator,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
218
+ damavis/airflow-pentaho-plugin,Python,2,"['GitHub Actions', 'Travis CI']",8,21,,,,,,,,,,,,,,,,,
219
+ konosp/dbt-on-airflow,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
220
+ mrhallak/Coronalytics,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
221
+ damklis/DataEngineeringProject,Python,1,['Travis CI'],,14,,,,,,,,,,,,,,,,,
222
+ josephmachado/beginner_de_project,HTML,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
223
+ apache/airflow-client-python,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
224
+ feluelle/airflow-diagrams,Python,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
225
+ apache/airflow-client-go,Go,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
226
+ andresionek91/airflow-autoscaling-ecs,HTML,2,"['GitHub Actions', 'CircleCI']",1,,,2,,,,,,,,,,,,,,,
227
+ jmeisele/ml-ops,Python,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
228
+ sungchun12/airflow-toolkit,HCL,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
229
+ douban/helpdesk,Python,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
230
+ zbrookle/avionix_airflow,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
231
+ angadsingh/airflow-ditto,Python,2,"['Travis CI', 'GitHub Actions']",,5,,,,,,,,,,,,,,,,,
232
+ angadsingh/airflow-hdinsight,Python,2,"['Travis CI', 'GitLab']",,1,,,3,,,,,,,,,,,,,,
233
+ airflow-helm/charts,Shell,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
234
+ great-expectations/airflow-provider-great-expectations,Python,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
235
+ marcosmarxm/airflow-testing-ci-workflow,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
236
+ jayamanikharyono/airflow-dag-action,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
237
+ ThunderFly-aerospace/TFSLOT01,G-code,1,['GitHub Actions'],37,,,,,,,,,,,,,,,,,,
238
+ yu-iskw/dbt-airflow-macros,Shell,2,"['GitHub Actions', 'CircleCI']",3,,,7,,,,,,,,,,,,,,,
239
+ badubizzle/ex_dag,Elixir,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
240
+ raystack/optimus,Go,1,['GitHub Actions'],38,,,,,,,,,,,,,,,,,,
241
+ meta-pytorch/torchx,Python,1,['GitHub Actions'],106,,,,,,,,,,,,,,,,,,
242
+ GoogleCloudPlatform/public-datasets-pipelines,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
243
+ datacamp/viewflow,Python,1,['CircleCI'],,,,3,,,,,,,,,,,,,,,
244
+ blockchain-etl/polygon-etl,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
245
+ gestaogovbr/FastETL,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
246
+ elyra-ai/pipeline-editor,TypeScript,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
247
+ anilkulkarni87/airflow-docker,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
248
+ typhoon-data-org/typhoon-orchestrator,Python,2,"['GitHub Actions', 'Travis CI']",15,6,,,,,,,,,,,,,,,,,
249
+ getindata/kedro-airflow-k8s,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
250
+ anovv/svoe,Python,1,['GitLab'],,,,,8,,,,,,,,,,,,,,
251
+ hightouchio/airflow-provider-hightouch,Python,1,['CircleCI'],,,,18,,,,,,,,,,,,,,,
252
+ mxaviersmp/spotify-tracker,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
253
+ OBenner/data-engineering-interview-questions,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
254
+ tomasfarias/airflow-dbt-python,Python,1,['GitHub Actions'],74,,,,,,,,,,,,,,,,,,
255
+ astronomer/astronomer-providers,Python,2,"['GitHub Actions', 'CircleCI']",41,,,49,,,,,,,,,,,,,,,
256
+ heumsi/apache-airflow-tutorials-for-beginner,Mustache,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
257
+ gabapcia/aletheia,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
258
+ ryanchao2012/airfly,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
259
+ paulf-999/airflow_templates,Python,1,['GitLab'],,,,,4,,,,,,,,,,,,,,
260
+ MTES-MCT/sparte,Python,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
261
+ andreax79/airflow-provider-xlsx,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
262
+ garystafford/tickit-data-lake-demo,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
263
+ itinycheng/flink-platform-backend,Java,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
264
+ camposvinicius/aws-etl,Smarty,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
265
+ slve/dbt-github-workflow,Makefile,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
266
+ profcomff/dwh-pipelines,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
267
+ camposvinicius/gcp-etl,Smarty,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
268
+ WhaleOps/air2phin,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
269
+ theeye-io-team/theeye-supervisor,JavaScript,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
270
+ pjazdzyk/hvac-engine,Java,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
271
+ crate/cratedb-airflow-tutorial,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
272
+ feluelle/airflint,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
273
+ caoergou/airflow-extended-api-plugin,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
274
+ datarobot/airflow-provider-datarobot,Python,2,"['Jenkins', 'GitHub Actions']",,,,,,,,,,,,,,,2,,,,
275
+ devopscorner/terraform-infra,HCL,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
276
+ albincorreya/ml-training-airflow-mlflow-example,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
277
+ ec-jrc/SMDRM,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
278
+ devopscorner/iac-terraform-emr,HCL,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
279
+ gmyrianthous/dbt-airflow,Python,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
280
+ MagnivOrg/magniv-core,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
281
+ IBM/ada,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
282
+ apache/dolphinscheduler-operator,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
283
+ VicenteYago/steam-data-engineering,Python,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
284
+ seblum/mlops-engineering-book,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
285
+ GuinsooLab/sheenflow,Python,2,"['GitHub Actions', 'Azure Pipelines']",4,,,,,,,2,,,,,,,,,,,
286
+ anilans029/Forecasting-Backorders-In-Inventory,Jupyter Notebook,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
287
+ astronomer/astronomer-cosmos,Python,1,['GitHub Actions'],199,,,,,,,,,,,,,,,,,,
288
+ ris-tlp/audiophile-e2e-pipeline,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
289
+ calbergs/spotify-api,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
290
+ astronomer/airflow-provider-fivetran-async,Python,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
291
+ MattTriano/analytics_data_where_house,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
292
+ degagawolde/data-warehouse-dbt-airflow-postgress,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
293
+ iusztinpaul/energy-forecasting,Python,1,['GitHub Actions'],50,,,,,,,,,,,,,,,,,,
294
+ Tauffer-Consulting/domino,Python,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
295
+ iobruno/data-engineering-labs,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
296
+ andrewm4894/airflow-provider-anomaly-detection,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
297
+ Jithsaavvy/Sentiment-analysis-from-MLOps-paradigm,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
298
+ airflow-laminar/airflow-supervisor,Python,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
299
+ abeltavares/MarketPipe,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
300
+ piyush-an/NYC-Restaurant-Inspection,HTML,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
301
+ PJGaetan/airflow-cli,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
302
+ thcidale0808/canarypy,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
303
+ PierreC1024/airflow-provider-bigquery-reservation,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
304
+ astronomer/ask-astro,Python,2,"['CircleCI', 'GitHub Actions']",,,,6,,,,,,,,,,,,,,,
305
+ star3am/hashiqube,JavaScript,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
306
+ data-burst/airflow-git-sync,nan,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
307
+ 1ambda/lakehouse,Kotlin,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
308
+ boostcampaitech5/LawBot-Online-Legal-Advice-LLM-Service,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
309
+ fpgmaas/stream-iot,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
310
+ doublecloud/terraform-provider-doublecloud,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
311
+ vladyslavyaloveha/etl_platform,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
312
+ jl178/airlift,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
313
+ profcomff/dwh-definitions,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
314
+ profcomff/dwh-airflow,Shell,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
315
+ thepipelinetool/thepipelinetool,Rust,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
316
+ Thomas-George-T/Ecommerce-Data-MLOps,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
317
+ GK-Consulting/terraform-provider-astronomer,Go,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
318
+ mathewsrc/ETL-Chicago-Cafe-Permits,HTML,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
319
+ Toloka/dbt-af,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
320
+ jomariya23156/sales-forecast-mlops-at-scale,Jupyter Notebook,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
321
+ treebeardtech/kubeflow-bootstrap,Shell,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
322
+ Dorianteffo/modern-data-platform,Python,1,['GitHub Actions'],34,,,,,,,,,,,,,,,,,,
323
+ hussein-awala/spark-on-k8s,Python,1,['GitHub Actions'],38,,,,,,,,,,,,,,,,,,
324
+ JuliuszB12/LSTM_Attention_redeployment_for_yahoo_stock_data,Python,1,['Azure Pipelines'],,,,,,,,176,,,,,,,,,,,
325
+ lealre/etl-airflow,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
326
+ airflow-laminar/airflow-config,Python,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
327
+ aws-samples/mwaa-disaster-recovery,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
328
+ mykkelol/netsuite-data-pipeline,Python,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
329
+ afranzi/mini-data-platform,HCL,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
330
+ airflow-laminar/airflow-common,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
331
+ kadreio/relativistic,HCL,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
332
+ salimt/Transfermarkt-ETL-and-LIVE-Scores,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
333
+ stav121/apache-airflow-goodies,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
334
+ MTSWebServices/data-rentgen,Python,2,"['GitHub Actions', 'GitLab']",81,,,,7,,,,,,,,,,,,,,
335
+ astronomer/templates,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
336
+ sidhyaashu/MLOps-End-To-End-Project,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
337
+ airflow-laminar/airflow-ha,Python,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
338
+ m1racoli/airflow-memray,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
339
+ airflow-laminar/airflow-priority,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
340
+ astronomer/astro-provider-anyscale,Python,1,['GitHub Actions'],56,,,,,,,,,,,,,,,,,,
341
+ f-lab-edu/league-of-legends-data-solution,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
342
+ tsffarias/LiftOff_Data,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
343
+ sanchitvj/sports_betting_analytics_engine,Python,2,"['GitHub Actions', 'CircleCI']",6,,,4,,,,,,,,,,,,,,,
344
+ AlvaroCavalcante/airflow-parse-bench,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
345
+ BusySloths/mlox,Python,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
346
+ airflow-laminar/airflow-pydantic,Python,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
347
+ Mairondc21/dbt_az_usuarios,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
348
+ liuzheng/airflow-ansible-provider,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
349
+ airflow-laminar/airflow-balancer,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
350
+ hoangsonww/End-to-End-Data-Pipeline,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
351
+ abhishekbhakat/airflow-mcp-server,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
352
+ hoangsonww/Customizable-AI-Chatbot,TypeScript,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
353
+ fblettner/liberty,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
354
+ Data-Bishop/Team5-BuildItAll-Data-Platform,HCL,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
355
+ rajat116/github-anomaly-project,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
356
+ rodmena-limited/stabilize,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
357
+ T-Sunm/rag-ops,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
358
+ rexleimo/agno-Go,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
359
+ deaneeth/telco-churn-mlops-pipeline,Jupyter Notebook,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
360
+ Rayyan9477/MLOps-Pipeline-for-USD-Forecasting,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
361
+ codsalah/SeismoFlow-Lambda-Architecture-System,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
362
+ SINTEF/sensapp,Rust,2,"['GitHub Actions', 'Travis CI']",24,5,,,,,,,,,,,,,,,,,
363
+ datajoint/datajoint-python,Python,2,"['GitHub Actions', 'Travis CI']",163,76,,,,,,,,,,,,,,,,,
364
+ Flipkart/foxtrot,Java,2,"['GitHub Actions', 'Travis CI']",2,7,,,,,,,,,,,,,,,,,
365
+ xonsh/xonsh,Python,5,"['GitHub Actions', 'Travis CI', 'CircleCI', 'AppVeyor', 'Azure Pipelines']",145,99,2,25,,114,2,24,,,,,,,,,,,
366
+ apache/superset,TypeScript,2,"['GitHub Actions', 'Travis CI']",498,65,,,,,,,,,,,,,,,,,
367
+ redpanda-data/connect,Go,2,"['GitHub Actions', 'Travis CI']",273,9,,,,,,,,,,,,,,,,,
368
+ aiguofer/gspread-pandas,Python,2,"['GitHub Actions', 'Travis CI']",7,12,,,,,,,,,,,,,,,,,
369
+ quiltdata/quilt,TypeScript,4,"['GitHub Actions', 'Travis CI', 'CircleCI', 'AppVeyor']",75,36,6,60,,,9,,,,,,,,,,,,
370
+ great-expectations/great_expectations,Python,3,"['GitHub Actions', 'Travis CI', 'Azure Pipelines']",275,121,,,,,,165,,,,,,,,,,,
371
+ datagouv/csv-detective,Python,2,"['CircleCI', 'GitHub Actions']",,,2,29,,,,,,,,,,,,,,,
372
+ uptake/uptasticsearch,R,2,"['GitHub Actions', 'Travis CI']",16,48,,,,,,,,,,,,,,,,,
373
+ kantord/just-dashboard,TypeScript,3,"['GitHub Actions', 'Travis CI', 'GitLab']",2,12,,,6,,,,,,,,,,,,,,
374
+ pyjanitor-devs/pyjanitor,Python,2,"['GitHub Actions', 'Travis CI']",56,17,,,,,,,,,,,,,,,,,
375
+ dimajix/flowman,Scala,4,"['GitHub Actions', 'Travis CI', 'GitLab', 'Jenkins']",2,13,,,36,,,,,,,,,,2,,,,
376
+ noahgift/pai-aws,Python,2,"['GitHub Actions', 'CircleCI']",3,,1,,,,,,,,,,,,,,,,
377
+ PrefectHQ/prefect,Python,2,"['GitHub Actions', 'CircleCI']",835,,,2,,,,,,,,,,,,,,,
378
+ odpi/egeria,Java,1,['GitHub Actions'],259,,,,,,,,,,,,,,,,,,
379
+ blockchain-etl/bitcoin-etl,Python,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
380
+ blockchain-etl/ethereum-etl-airflow,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
381
+ swoop-inc/spark-alchemy,Scala,3,"['GitHub Actions', 'Travis CI', 'CircleCI']",5,3,,8,,,,,,,,,,,,,,,
382
+ CoxAutomotiveDataSolutions/waimak,Scala,3,"['GitHub Actions', 'Travis CI', 'Azure Pipelines']",3,25,,,,,,11,,,,,,,,,,,
383
+ arthurprevot/yaetos,Python,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
384
+ mycaule/reading-resources,nan,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
385
+ GokuMohandas/Made-With-ML,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
386
+ feast-dev/feast,Python,2,"['GitHub Actions', 'Travis CI']",452,3,,,,,,,,,,,,,,,,,
387
+ guidok91/spark-movies-etl,Python,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
388
+ nnthanh101/analytics,Jupyter Notebook,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
389
+ blockchain-etl/eos-etl,Python,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
390
+ davidolorundare/tempus_de_challenge,Python,1,['Travis CI'],,22,,,,,,,,,,,,,,,,,
391
+ andkret/Cookbook,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
392
+ aws/aws-sdk-pandas,Python,1,['GitHub Actions'],139,,,,,,,,,,,,,,,,,,
393
+ automaticmode/active_workflow,Ruby,2,"['GitHub Actions', 'CircleCI']",1,,,3,,,,,,,,,,,,,,,
394
+ mprove-io/mprove,TypeScript,1,['GitHub Actions'],94,,,,,,,,,,,,,,,,,,
395
+ moj-analytical-services/pydbtools,Python,1,['GitHub Actions'],34,,,,,,,,,,,,,,,,,,
396
+ yennanliu/data_infra_repo,Python,1,['Travis CI'],,26,,,,,,,,,,,,,,,,,
397
+ treeverse/lakeFS,Go,1,['GitHub Actions'],607,,,,,,,,,,,,,,,,,,
398
+ mlrun/mlrun,Python,3,"['GitHub Actions', 'CircleCI', 'Jenkins']",472,,,7,,,,,,,,,,,26,,,,
399
+ dbt-msft/dbt-sqlserver,Python,2,"['GitHub Actions', 'CircleCI']",113,,,154,,,,,,,,,,,,,,,
400
+ LGE-ARC-AdvancedAI/auptimizer,Python,1,['Travis CI'],,12,,,,,,,,,,,,,,,,,
401
+ CoxAutomotiveDataSolutions/spark-distcp,Scala,2,"['Travis CI', 'Azure Pipelines']",,3,,,,,,2,,,,,,,,,,,
402
+ carnival-data/carnival,Groovy,2,"['GitHub Actions', 'Travis CI']",28,12,,,,,,,,,,,,,,,,,
403
+ rdagumampan/yuniql,C#,3,"['GitHub Actions', 'AppVeyor', 'Azure Pipelines']",6,,,,,,2,13,,,,,,,,,,,
404
+ Minyus/pipelinex,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
405
+ backtick-se/cowait,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
406
+ bastienboutonnet/sheetwork,Python,1,['GitHub Actions'],51,,,,,,,,,,,,,,,,,,
407
+ irajhedayati/data-engineering,Vue,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
408
+ Desbordante/desbordante-core,C++,1,['GitHub Actions'],106,,,,,,,,,,,,,,,,,,
409
+ quintoandar/butterfree,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
410
+ zero-one-group/geni,Clojure,2,"['GitHub Actions', 'GitLab']",17,,,,2,,,,,,,,,,,,,,
411
+ kevin-hanselman/dud,Go,2,"['GitHub Actions', 'Travis CI']",30,3,,,,,,,,,,,,,,,,,
412
+ 173TECH/sayn,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
413
+ vietvudanh/vietlott-data,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
414
+ ab180/lrmr,Go,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
415
+ blockchain-etl/hedera-etl,Java,3,"['Travis CI', 'GitLab', 'GitHub Actions']",,1,,,1,,,,,,,,,,,,,,
416
+ saturncloud/dask-saturn,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
417
+ metarank/metarank,Scala,1,['GitHub Actions'],41,,,,,,,,,,,,,,,,,,
418
+ aws-solutions-library-samples/data-lakes-on-aws,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
419
+ bmeares/Meerschaum,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
420
+ pangeo-forge/pangeo-forge-recipes,Python,1,['GitHub Actions'],211,,,,,,,,,,,,,,,,,,
421
+ preprocessy/preprocessy,Jupyter Notebook,2,"['GitHub Actions', 'Travis CI']",6,3,,,,,,,,,,,,,,,,,
422
+ soyelherein/pyspark-cicd-template,Python,1,['Jenkins'],,,,,,,,,,,,,,,1,,,,
423
+ treeverse/charts,Go Template,1,['GitHub Actions'],40,,,,,,,,,,,,,,,,,,
424
+ saturncloud/prefect-saturn,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
425
+ dathere/qsv,Rust,3,"['GitHub Actions', 'Travis CI', 'AppVeyor']",1000,23,,,,,11,,,,,,,,,,,,
426
+ GokuMohandas/mlops-course,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
427
+ sodadata/soda-core,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
428
+ bitpicky/dbt-sugar,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
429
+ opendatadiscovery/opendatadiscovery-specification,nan,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
430
+ quintoandar/hive-metastore-client,Thrift,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
431
+ benthosdev/benthos-captain,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
432
+ aspuru-guzik-group/funsies,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
433
+ twosigma/uberjob,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
434
+ debugger24/pyspark-test,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
435
+ seungwubaek/seungwubaek.github.io,SCSS,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
436
+ andrjas/data_check,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
437
+ growthbook/growthbook,TypeScript,1,['GitHub Actions'],97,,,,,,,,,,,,,,,,,,
438
+ data-engineering-community/data-engineering-wiki,CSS,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
439
+ snowflakedb/snowpark-python,Python,1,['GitHub Actions'],168,,,,,,,,,,,,,,,,,,
440
+ galliaproject/gallia-core,Scala,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
441
+ bytehub-ai/bytehub,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
442
+ vitaliihonta/scala-ql,Scala,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
443
+ deordie/deordie-digest,SCSS,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
444
+ treeverse/airflow-provider-lakeFS,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
445
+ nnthanh101/Serverless-DataHub,CSS,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
446
+ larribas/dagger,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
447
+ dataplat/AzureDataPipelineTools,C#,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
448
+ ihnokim/codepack,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
449
+ evidence-dev/evidence,JavaScript,1,['GitHub Actions'],208,,,,,,,,,,,,,,,,,,
450
+ meltano/meltano,Python,2,"['GitHub Actions', 'GitLab']",489,,,,170,,,,,,,,,,,,,,
451
+ opendatadiscovery/odd-platform,Java,1,['GitHub Actions'],88,,,,,,,,,,,,,,,,,,
452
+ synmetrix/synmetrix,JavaScript,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
453
+ starburstdata/dbt-trino,Python,2,"['GitHub Actions', 'CircleCI']",39,,,4,,,,,,,,,,,,,,,
454
+ r05323028/eyes,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
455
+ sodadata/soda-spark,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
456
+ odpi/egeria-docs,HTML,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
457
+ nestauk/ojo_daps_mirror,Python,2,"['GitHub Actions', 'Travis CI']",5,4,,,,,,,,,,,,,,,,,
458
+ pipebase/pipebase,Rust,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
459
+ route1io/route1io-python-connectors,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
460
+ running-elephant/datart,TypeScript,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
461
+ Hiflylabs/awesome-dbt,nan,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
462
+ CloudWise-OpenSource/FlyFish,JavaScript,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
463
+ bacalhau-project/bacalhau,Go,2,"['GitHub Actions', 'CircleCI']",213,,,322,,,,,,,,,,,,,,,
464
+ insitro/redun,Python,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
465
+ duyet/grant-rs,Rust,1,['GitHub Actions'],39,,,,,,,,,,,,,,,,,,
466
+ jkminder/data2neo,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
467
+ bitroot/coflux,Elixir,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
468
+ pwenker/data-engineering,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
469
+ pavanbadempet/pavanbadempet.github.io,JavaScript,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
470
+ Eventual-Inc/Daft,Rust,1,['GitHub Actions'],424,,,,,,,,,,,,,,,,,,
471
+ dlt-hub/dlt,Python,1,['GitHub Actions'],306,,,,,,,,,,,,,,,,,,
472
+ superstreamlabs/memphis,Go,2,"['GitHub Actions', 'Jenkins']",21,,,,,,,,,,,,,,174,,,,
473
+ bytewax/bytewax,Python,1,['GitHub Actions'],191,,,,,,,,,,,,,,,,,,
474
+ feathr-ai/feathr,Scala,2,"['GitHub Actions', 'Azure Pipelines']",80,,,,,,,1,,,,,,,,,,,
475
+ nordquant/complete-dbt-bootcamp-zero-to-hero,Python,1,['GitHub Actions'],38,,,,,,,,,,,,,,,,,,
476
+ datavane/datavines,Java,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
477
+ kelvins/awesome-dataops,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
478
+ raptor-ml/raptor,Go,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
479
+ josephmachado/online_store,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
480
+ apicrafter/datacrafter,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
481
+ enspirit/monolens,Ruby,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
482
+ jofaval/tfm-iabd,Shell,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
483
+ unytics/bigfunctions,Python,1,['GitHub Actions'],34,,,,,,,,,,,,,,,,,,
484
+ ocademy-ai/machine-learning,Jupyter Notebook,1,['GitHub Actions'],57,,,,,,,,,,,,,,,,,,
485
+ anna-geller/prefect-streaming,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
486
+ MartyC-137/Data-Engineering,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
487
+ edanalytics/earthmover,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
488
+ ansilo-data/ansilo,Rust,1,['GitHub Actions'],136,,,,,,,,,,,,,,,,,,
489
+ bizzyvinci/cosmos-etl,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
490
+ caerbannogwhite/preludio,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
491
+ samjbobb/mammoth,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
492
+ Besi-Switzerland-AG/qdvc,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
493
+ quixio/quix-streams,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
494
+ orbitalapi/orbital,TypeScript,2,"['GitLab', 'GitHub Actions']",,,,,255,,,,,,,,,,,,,,
495
+ alibaba/feathub,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
496
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Associate-Questions,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
497
+ iesahin/xvc,Rust,1,['GitHub Actions'],55,,,,,,,,,,,,,,,,,,
498
+ Pseudo-Lab/data-engineering-for-everybody,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
499
+ SuperCowPowers/workbench,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
500
+ ai-forever/DataProcessingFramework,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
501
+ Amrit-Hub/How-to-become-Data-Engineering-Essentials,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
502
+ khuyentran1401/prefect-alert,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
503
+ datacareer-guide/datacareer-guide.github.io,JavaScript,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
504
+ mckraqs/dataride,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
505
+ benrutter/wimsey,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
506
+ dlt-hub/verified-sources,Python,1,['GitHub Actions'],35,,,,,,,,,,,,,,,,,,
507
+ delta-incubator/delta-sharing-rs,Rust,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
508
+ thongekchakrit/ChartAI,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
509
+ ddotta/cookbook-rpolars,CSS,1,['GitHub Actions'],43,,,,,,,,,,,,,,,,,,
510
+ nodestream-proj/nodestream,Python,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
511
+ rvanasa/pandas-gpt,Jupyter Notebook,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
512
+ kestra-io/examples,HCL,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
513
+ jordanvolz/lolpop,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
514
+ cottas-rdf/pycottas,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
515
+ Arturomtz8/de-zoomcamp-project,Python,1,['GitHub Actions'],37,,,,,,,,,,,,,,,,,,
516
+ comitivaesperanca/data,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
517
+ anna-geller/kestra-ci-cd,HCL,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
518
+ ClusterlessHQ/clusterless,Java,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
519
+ comitivaesperanca/backend,C#,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
520
+ prithvijitguha/flowrunner,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
521
+ kkuznets/crypto-sentiment-data-pipeline,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
522
+ Sabareh/stock-price-prediction-spark-cassandra,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
523
+ lisallreiber/biketheft_berlin,Jupyter Notebook,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
524
+ portovep/dbt-testing-examples,nan,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
525
+ sminerport/sminerport,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
526
+ bramvdklinkenberg/my_first_data_project,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
527
+ fmind/mlops-python-package,Jupyter Notebook,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
528
+ bitol-io/open-data-contract-standard,Shell,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
529
+ dgarnitz/vectorflow,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
530
+ Titan-Systems/titan,Python,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
531
+ dbt-labs/jaffle-shop,nan,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
532
+ unytics/airbyte_serverless,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
533
+ datachecks/dcs-core,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
534
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Professional-Questions,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
535
+ samber/awesome-olap,Astro,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
536
+ rupurt/odbc-scanner-duckdb-extension,C++,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
537
+ devsgnr/breadroll,TypeScript,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
538
+ marimo-team/examples,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
539
+ criccomini/proto-schema-parser,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
540
+ parmarsuraj99/signalslite,Jupyter Notebook,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
541
+ ovidiugiorgi/csv2opensearch,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
542
+ wednesday-solutions/Data-Engineering-Onboarding-Starter,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
543
+ davidvanegas2/iceberg-s3-terraform-glue,HCL,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
544
+ criccomini/pymetastore,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
545
+ ccao-data/data-architecture,R,2,"['GitHub Actions', 'GitLab']",87,,,,2,,,,,,,,,,,,,,
546
+ dominictarro/prefecto,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
547
+ ClusterlessHQ/tessellate,Java,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
548
+ wharfie/wharfie,JavaScript,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
549
+ opensnowcat/opensnowcat-rdb-loader,Scala,2,"['GitHub Actions', 'Travis CI']",33,10,,,,,,,,,,,,,,,,,
550
+ wednesday-solutions/aws-glue-jupyter-notebook-starter,Jupyter Notebook,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
551
+ ministryofjustice/data-and-analytics-engineering,JavaScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
552
+ lakehq/sail,Rust,1,['GitHub Actions'],115,,,,,,,,,,,,,,,,,,
553
+ Multiwoven/multiwoven,Ruby,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
554
+ DataRecce/recce,TypeScript,1,['GitHub Actions'],146,,,,,,,,,,,,,,,,,,
555
+ josephmachado/efficient_data_processing_spark,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
556
+ kanton-bern/hellodata-be,Java,1,['GitHub Actions'],86,,,,,,,,,,,,,,,,,,
557
+ andre-salvati/databricks-template,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
558
+ unit-mesh/unit-gen,Kotlin,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
559
+ thedataquarry/rustinpieces,Rust,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
560
+ ml6team/fondant-usecase-controlnet,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
561
+ ml6team/fondant-usecase-RAG,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
562
+ xuwenyihust/PawMark,JavaScript,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
563
+ iBridges-for-iRODS/iBridges,Python,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
564
+ n0rdy/pippin,Go,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
565
+ lexy-ai/lexy,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
566
+ MammothPHP/WoollyM,PHP,2,"['GitHub Actions', 'Travis CI']",6,16,,,,,,,,,,,,,,,,,
567
+ edgBR/delta-lake-polars,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
568
+ ahammadmejbah/Artificial-Intelligence-Research-and-Development-Projects,Jupyter Notebook,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
569
+ prefeitura-rio/pipelines_rj_smtr,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
570
+ Gowtham1729/folio-feed,JavaScript,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
571
+ wednesday-solutions/multi-cloud-etl-pipeline,Python,1,['GitHub Actions'],68,,,,,,,,,,,,,,,,,,
572
+ ml6team/fondant-usecase-filter-creative-commons,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
573
+ Netflix/maestro,Java,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
574
+ Nike-Inc/koheesio,Python,1,['GitHub Actions'],55,,,,,,,,,,,,,,,,,,
575
+ data-burst/data-engineering-roadmap,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
576
+ Snowflake-Labs/snowflake-demo-notebooks,Jupyter Notebook,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
577
+ airbytehq/PyAirbyte,Python,1,['GitHub Actions'],115,,,,,,,,,,,,,,,,,,
578
+ DataKitchen/data-observability-installer,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
579
+ DataKitchen/dataops-testgen,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
580
+ opensnowcat/opensnowcat-collector,Scala,2,"['GitHub Actions', 'Travis CI']",27,3,,,,,,,,,,,,,,,,,
581
+ DataKitchen/dataops-observability,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
582
+ demml/opsml,Rust,1,['GitHub Actions'],253,,,,,,,,,,,,,,,,,,
583
+ opensnowcat/opensnowcat-enrich,Scala,1,['GitHub Actions'],54,,,,,,,,,,,,,,,,,,
584
+ vojay-dev/gemini-movie-detectives-api,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
585
+ cre-dev/xml2db,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
586
+ jaanli/american-community-survey,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
587
+ ryanrozich/snowflake-dbml-generator,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
588
+ cnstlungu/postcard-company-datamart,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
589
+ mrpbennett/home-ops,Shell,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
590
+ dashmug/glue-utils,Python,1,['GitHub Actions'],88,,,,,,,,,,,,,,,,,,
591
+ firelink-data/drive,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
592
+ data-burst/data-engineering-wiki,Dockerfile,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
593
+ FearlessSolutions/engineering-practice-domains,Jupyter Notebook,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
594
+ Emilien-Foissotte/carburoam,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
595
+ MadeiraData/microsoft-data-engineers-club,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
596
+ sungchun12/sqlmesh-demos,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
597
+ ilichDataEngineer/DigitalMarketingAnalysis-DataEngineerIO-CapstoneProject-DE-BTC2024,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
598
+ omhq/llmt,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
599
+ pyper-dev/pyper,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
600
+ apecloud/myduckserver,Go,1,['GitHub Actions'],60,,,,,,,,,,,,,,,,,,
601
+ digitalghost-dev/poke-cli,Go,1,['GitHub Actions'],123,,,,,,,,,,,,,,,,,,
602
+ ashish10alex/vscode-dataform-tools,TypeScript,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
603
+ bitol-io/open-data-product-standard,Shell,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
604
+ Sonnet-Scripts/sonnet-scripts,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
605
+ montara-io/dbt-command-center,TypeScript,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
606
+ pmgraham/datagrunt,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
607
+ DataForgeOpenAIHub/Steam-Sales-Analysis,Python,1,['GitHub Actions'],26,,,,,,,,,,,,,,,,,,
608
+ internetofwater/scheduler,Python,1,['GitHub Actions'],65,,,,,,,,,,,,,,,,,,
609
+ Romboost-Repo/PipeLogger,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
610
+ chonalchendo/football-data-warehouse,Python,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
611
+ snowflakedb/snowpark-checkpoints,Python,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
612
+ amol-/datapyground,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
613
+ decodingai-magazine/second-brain-ai-assistant-course,Jupyter Notebook,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
614
+ DataBora/elusion,Rust,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
615
+ rush-db/rushdb,TypeScript,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
616
+ quantscious/finmlkit,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
617
+ vincentkoc/dexscraper,Python,1,['GitHub Actions'],33,,,,,,,,,,,,,,,,,,
618
+ akmalsoliev/Validoopsie,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
619
+ RamiKrispin/pydata-ny-ga-workshop,HTML,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
620
+ StabRise/spark-pdf,Scala,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
621
+ mattlianje/etl4s,Scala,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
622
+ dagster-io/community-integrations,Python,1,['GitHub Actions'],73,,,,,,,,,,,,,,,,,,
623
+ mrjsj/msfabricutils,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
624
+ Menziess/slipstream-async,Python,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
625
+ mattiasthalen/arcane-insight,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
626
+ tower/tower-cli,Python,1,['GitHub Actions'],83,,,,,,,,,,,,,,,,,,
627
+ Ganeshsivakumar/langchain-beam,Java,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
628
+ stateful-y/kedro-dagster,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
629
+ richban/opendata-stack-platform,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
630
+ peter115342/soccer-tracker-DE-project,Python,1,['GitHub Actions'],192,,,,,,,,,,,,,,,,,,
631
+ sakkiii/apache-nifi-helm,Smarty,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
632
+ NembotJules/Cameroon-Air-Quality-Prediction,Jupyter Notebook,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
633
+ kellyjadams/spotify-data-analyze,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
634
+ mta-tech/seeknal,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
635
+ Data-Research-Analysis/data-research-analysis-platform,TypeScript,2,"['Jenkins', 'GitHub Actions']",,,,,,,,,,,,,,,8,,,,
636
+ microsoft/azurekorea,JavaScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
637
+ bruin-data/setup-bruin,TypeScript,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
638
+ cocoindex-io/cocoindex,Python,1,['GitHub Actions'],120,,,,,,,,,,,,,,,,,,
639
+ dbt-labs/dbt-mcp,Python,1,['GitHub Actions'],43,,,,,,,,,,,,,,,,,,
640
+ lightfeed/extractor,TypeScript,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
641
+ hyparam/icebird,JavaScript,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
642
+ sparkdq-community/sparkdq,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
643
+ memiiso/pydbzengine,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
644
+ mloda-ai/mloda,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
645
+ gurmeetsaran/sqltesting,Python,1,['GitHub Actions'],55,,,,,,,,,,,,,,,,,,
646
+ Magnus167/rustframe,Rust,1,['GitHub Actions'],123,,,,,,,,,,,,,,,,,,
647
+ GovHub-br/gov-hub,HTML,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
648
+ GovHub-br/data-application-gov-hub,Python,2,"['GitHub Actions', 'GitLab']",7,,,,9,,,,,,,,,,,,,,
649
+ davideganna/DataMorphers,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
650
+ trustedshops-public/schema2pyarrow,Python,1,['CircleCI'],,,,12,,,,,,,,,,,,,,,
651
+ chonalchendo/footcrawl,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
652
+ RustedBytes/audios-to-dataset,Rust,1,['GitHub Actions'],51,,,,,,,,,,,,,,,,,,
653
+ projectcontinuum/continuum-platform-core,Kotlin,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
654
+ DataBridgeTech/dbqctl,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
655
+ alebgz-91/queens,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
656
+ salimt/football-datasets,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
657
+ GitBrincie212/ChronoGrapher,Rust,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
658
+ microsoft/unified-data-foundation-with-fabric-solution-accelerator,Jupyter Notebook,1,['GitHub Actions'],44,,,,,,,,,,,,,,,,,,
659
+ AndreaBozzo/dataprof,Rust,1,['GitHub Actions'],176,,,,,,,,,,,,,,,,,,
660
+ vtsaplin/datatalk-cli,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
661
+ worldbank/OvertureLink-Data-Pipeline,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
662
+ Geobatpo07/datahut-duckhouse,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
663
+ jorvik-io/jorvik,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
664
+ andrewruba/lilpipe,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
665
+ jeremylongshore/startaitools.com,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
666
+ dlt-hub/dlt-mcp,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
667
+ firelink-sh/padder,Rust,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
668
+ databricks-industry-solutions/python-data-sources,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
669
+ getnao/nao,TypeScript,1,['GitHub Actions'],63,,,,,,,,,,,,,,,,,,
670
+ Guepard-Corp/qwery-core,JavaScript,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
671
+ aleksandarskrbic/khaos,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
672
+ sidequery/sidemantic,Python,1,['GitHub Actions'],47,,,,,,,,,,,,,,,,,,
673
+ PStarH/VisiLens,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
674
+ rasinmuhammed/misata,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
675
+ nnnkkk7/snowflake-emulator,Go,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
676
+ taz4et/bitcoin-etl,Python,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
677
+ mikevan666/opendataworks,Java,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
678
+ ssp-data/cloud-cost-analyzer,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
679
+ PatrickWiloak/cloud-data-ai-security-zero-to-hero,nan,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
680
+ dannys-code-corner/incan,Rust,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
681
+ kodomonocch1/see_proto,Rust,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
682
+ vnvo/deltaforge,Rust,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
683
+ limhaneul12/kafka-gov,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
684
+ osodevops/k2i,Rust,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
685
+ Mohith-akash/Global-News-Intel-Platform,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
686
+ mag1cfrog/timeseries-table-format,Rust,1,['GitHub Actions'],70,,,,,,,,,,,,,,,,,,
687
+ hidagent/dataagent,Python,1,['GitLab'],,,,,1,,,,,,,,,,,,,,
688
+ eventvisor/eventvisor,TypeScript,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
689
+ sopho-tech/sopho,TypeScript,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
690
+ AndreaBozzo/Ceres,Rust,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
691
+ valeriouberti/rigatoni,Rust,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
692
+ ez-cdc/dbmazz,Rust,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
693
+ MallamTeja/f1_models,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
694
+ olaflaitinen/Promethium,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
695
+ sidequery/dlt-iceberg,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
696
+ JB-Analytica/model2data,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
697
+ brandonhimpfen/awesome-data-engineering,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
698
+ everycure-org/kedro-argo,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
699
+ sairam-s0/ActiveLabelingSystem,Python,2,"['GitHub Actions', 'Azure Pipelines']",3,,,,,,,1,,,,,,,,,,,
700
+ mrmcmullan/flycatcher,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
701
+ vmariiechko/databricks-bundle-template,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
702
+ Jasiri-App/datagpu,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
703
+ danieljhkim/local-data-platform,Go,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
704
+ flipkart-incubator/spark-transformers,Java,1,['Travis CI'],,6,,,,,,,,,,,,,,,,,
705
+ marcio-azevedo/fsharp-data-processing-pipeline,F#,2,"['Travis CI', 'AppVeyor']",,1,,,,,1,,,,,,,,,,,,
706
+ combust/mleap,Scala,2,"['GitHub Actions', 'Travis CI']",14,51,,,,,,,,,,,,,,,,,
707
+ giacbrd/SmartPipeline,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
708
+ aredier/chariots,Python,1,['Travis CI'],,8,,,,,,,,,,,,,,,,,
709
+ smart-data-lake/smart-data-lake,Scala,2,"['GitHub Actions', 'Travis CI']",87,1,,,,,,,,,,,,,,,,,
710
+ tsdat/tsdat,Python,1,['GitHub Actions'],35,,,,,,,,,,,,,,,,,,
711
+ bakdata/streams-explorer,Python,2,"['GitHub Actions', 'Azure Pipelines']",21,,,,,,,12,,,,,,,,,,,
712
+ RiveryIO/rivery_cli,Python,1,['GitHub Actions'],33,,,,,,,,,,,,,,,,,,
713
+ elementary-data/elementary,HTML,1,['GitHub Actions'],444,,,,,,,,,,,,,,,,,,
714
+ tuva-health/tuva,Python,1,['GitHub Actions'],97,,,,,,,,,,,,,,,,,,
715
+ elementary-data/dbt-data-reliability,Python,1,['GitHub Actions'],213,,,,,,,,,,,,,,,,,,
716
+ tuva-health/medicare_cclf_connector,nan,1,['GitHub Actions'],45,,,,,,,,,,,,,,,,,,
717
+ tuva-health/medicare_lds_connector,nan,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
718
+ pathwaycom/pathway,Python,1,['GitHub Actions'],59,,,,,,,,,,,,,,,,,,
719
+ Unstructured-IO/unstructured,HTML,1,['GitHub Actions'],204,,,,,,,,,,,,,,,,,,
720
+ tuva-health/demo,nan,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
721
+ linkedin/Hoptimator,Java,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
722
+ metaheed/kolle,Shell,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
723
+ AiDAPT-A/VisArchPy,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
724
+ feldera/feldera,Rust,1,['GitHub Actions'],375,,,,,,,,,,,,,,,,,,
725
+ bruin-data/bruin,Go,1,['GitHub Actions'],190,,,,,,,,,,,,,,,,,,
726
+ Galileo-Galilei/kedro-pandera,Python,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
727
+ dataflint/spark,TypeScript,1,['GitHub Actions'],51,,,,,,,,,,,,,,,,,,
728
+ kiwicom/terraform-provider-montecarlo,Go,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
729
+ unicef/magasin,Mustache,1,['GitHub Actions'],89,,,,,,,,,,,,,,,,,,
730
+ amphi-ai/amphi-etl,TypeScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
731
+ Burla-Cloud/burla,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
732
+ mitdbg/palimpzest,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
733
+ ProyectoRespira/data_retriever,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
734
+ glassflow/cli,Go,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
735
+ ucbepic/docetl,Python,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
736
+ yobix-ai/extractous,Rust,1,['GitHub Actions'],110,,,,,,,,,,,,,,,,,,
737
+ StructuredLabs/preswald,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
738
+ OpenDCAI/DataFlow,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
739
+ debezium/debezium-platform,TypeScript,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
740
+ eschizoid/kpipe,Java,1,['GitHub Actions'],42,,,,,,,,,,,,,,,,,,
741
+ pr1m8/haive-dataflow,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
742
+ exospherehost/runtime,Python,1,['GitHub Actions'],102,,,,,,,,,,,,,,,,,,
743
+ gorango/flowcraft,TypeScript,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
744
+ ImperialCollegeLondon/prefect-managedfiletransfer,Python,1,['GitHub Actions'],46,,,,,,,,,,,,,,,,,,
745
+ lynxkite/lynxkite-2000,Python,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
746
+ wingfoil-io/wingfoil,Rust,1,['GitHub Actions'],143,,,,,,,,,,,,,,,,,,
747
+ KafScale/platform,Go,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
748
+ krenalis/krenalis,Go,1,['GitHub Actions'],87,,,,,,,,,,,,,,,,,,
749
+ snowplow/snowplow,Scala,2,"['GitHub Actions', 'Travis CI']",5,63,,,,,,,,,,,,,,,,,
750
+ pydoit/doit,Python,3,"['GitHub Actions', 'Travis CI', 'AppVeyor']",21,35,,,,,11,,,,,,,,,,,,
751
+ ooni/pipeline,Python,3,"['GitHub Actions', 'Travis CI', 'CircleCI']",27,15,,16,,,,,,,,,,,,,,,
752
+ apache/shardingsphere,Java,2,"['GitHub Actions', 'Travis CI']",614,42,,,,,,,,,,,,,,,,,
753
+ debezium/debezium,Java,2,"['GitHub Actions', 'Travis CI']",398,54,,,,,,,,,,,,,,,,,
754
+ techmonad/spark-data-pipeline,Scala,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
755
+ ubisoft/mobydq,Vue,2,"['GitHub Actions', 'CircleCI']",22,,,205,,,,,,,,,,,,,,,
756
+ olirice/flupy,Python,5,"['GitHub Actions', 'Travis CI', 'CircleCI', 'AppVeyor', 'Scrutinizer CI']",26,2,2,4,,2,,,,,2,,,,,,,,
757
+ jay-johnson/network-pipeline,Python,1,['Travis CI'],,6,,,,,,,,,,,,,,,,,
758
+ 1kbgz/tributary,Python,4,"['GitHub Actions', 'Travis CI', 'AppVeyor', 'Azure Pipelines']",42,34,,,,2,,10,,,,,,,,,,,
759
+ cognitree/kronos,Java,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
760
+ reugn/go-streams,Go,2,"['GitHub Actions', 'Travis CI']",11,7,,,,,,,,,,,,,,,,,
761
+ tvdboom/ATOM,HTML,2,"['GitHub Actions', 'Travis CI']",148,26,,,,,,,,,,,,,,,,,
762
+ joonan-lab/cwas,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
763
+ whylabs/whylogs,Jupyter Notebook,1,['GitHub Actions'],68,,,,,,,,,,,,,,,,,,
764
+ spotify/klio,Python,1,['GitHub Actions'],56,,,,,,,,,,,,,,,,,,
765
+ snowplow/enrich,Scala,1,['GitHub Actions'],62,,,,,,,,,,,,,,,,,,
766
+ FAIRDataPipeline/rDataPipeline,R,1,['GitHub Actions'],248,,,,,,,,,,,,,,,,,,
767
+ vincentclaes/datajob,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
768
+ fremantle-industries/slurpee,Elixir,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
769
+ FAIRDataPipeline/DataPipeline.jl,Julia,1,['GitHub Actions'],130,,,,,,,,,,,,,,,,,,
770
+ tejzpr/ordered-concurrently,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
771
+ flavienbwk/Pandemic-Knowledge,Python,1,['Travis CI'],,4,,,,,,,,,,,,,,,,,
772
+ strmprivacy/cli,Go,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
773
+ topher-lo/simple-data-workflow,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
774
+ sparkfish/augraphy,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
775
+ DataSQRL/sqrl,Java,2,"['GitHub Actions', 'CircleCI']",116,,,38,,,,,,,,,,,,,,,
776
+ snowplow/dbt-snowplow-web,Shell,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
777
+ criblpacks/cribl-syslog-input,nan,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
778
+ criblpacks/cribl-knowledge-pack,nan,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
779
+ chnm/bom,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
780
+ AgnostiqHQ/covalent,Python,1,['GitHub Actions'],174,,,,,,,,,,,,,,,,,,
781
+ scribe-org/Scribe-Data,Python,1,['GitHub Actions'],110,,,,,,,,,,,,,,,,,,
782
+ vesoft-inc/nebula-exchange,Scala,2,"['GitHub Actions', 'Travis CI']",23,2,,,,,,,,,,,,,,,,,
783
+ instill-ai/cli,Go,1,['GitHub Actions'],30,,,,,,,,,,,,,,,,,,
784
+ dagucloud/dagu,Go,1,['GitHub Actions'],119,,,,,,,,,,,,,,,,,,
785
+ InfuseAI/piperider,Python,1,['GitHub Actions'],144,,,,,,,,,,,,,,,,,,
786
+ instill-ai/console,TypeScript,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
787
+ AgnostiqHQ/covalent-slurm-plugin,Python,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
788
+ GetFeedback/kahpp-oss,Java,2,"['GitHub Actions', 'GitLab']",24,,,,3,,,,,,,,,,,,,,
789
+ AgnostiqHQ/covalent-ssh-plugin,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
790
+ Indexical-Metrics-Measure-Advisory/watchmen,TypeScript,1,['GitHub Actions'],300,,,,,,,,,,,,,,,,,,
791
+ AbsaOSS/pramen,Scala,1,['GitHub Actions'],71,,,,,,,,,,,,,,,,,,
792
+ CaterinaBi/aicore-web-scraping-pipeline,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
793
+ cortega26/polla,Python,1,['GitHub Actions'],101,,,,,,,,,,,,,,,,,,
794
+ z3z1ma/alto,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
795
+ BattGenie/battetl,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
796
+ lfunderburk/fuel-electric-hybrid-vehicle-ml,Jupyter Notebook,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
797
+ chalk-ai/chalk-go,Go,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
798
+ hooopo/oh-my-github-pipeline,Ruby,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
799
+ hooopo/repo-track-pipeline,Ruby,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
800
+ gird-dev/gird,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
801
+ bookbot-kids/speechline,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
802
+ datajuicer/data-juicer,Python,1,['GitHub Actions'],52,,,,,,,,,,,,,,,,,,
803
+ scribe-org/Scribe-Server,Go,1,['GitHub Actions'],41,,,,,,,,,,,,,,,,,,
804
+ coinpaprika/cq-source-coinpaprika,Go,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
805
+ xorq-labs/xorq,Python,1,['GitHub Actions'],168,,,,,,,,,,,,,,,,,,
806
+ flowsynx/flowsynx,C#,1,['GitHub Actions'],54,,,,,,,,,,,,,,,,,,
807
+ PFund-Software-Ltd/pfeed,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
808
+ PkLavc/PkLavc.github.io,HTML,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
809
+ illuin-tech/data-pipeline,Java,2,"['GitHub Actions', 'GitLab']",8,,,,2,,,,,,,,,,,,,,
810
+ thadhutch/sports-quant,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
811
+ elastiflow/pipelines,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
812
+ datazip-inc/olake,Go,1,['GitHub Actions'],61,,,,,,,,,,,,,,,,,,
813
+ oldcorvus/dynapipeline,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
814
+ tracebloc/data-ingestors,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
815
+ GoPlasmatic/dataflow-rs,Rust,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
816
+ affaan-m/Sol-Onchain-Analyst,Rust,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
817
+ ModelEngine-Group/DataMate,TypeScript,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
818
+ Nonanti/PipeFlow,C#,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
819
+ withterm/term-guard,Rust,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
820
+ royjacobson/nf-python,Groovy,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
821
+ DevDizzle/gammarips-engine,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
822
+ lzjever/routilux,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
823
+ caiopizzol/fipe-data-pipeline,TypeScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
824
+ nshkrdotcom/flowstone,Elixir,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
825
+ maciejkepa/ai-ml-in-practice,Jupyter Notebook,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
826
+ MoonyFringers/ladon,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
827
+ davidjosipovic/news-trend-analysis,Python,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
828
+ dbt-labs/dbt-core,Python,4,"['GitHub Actions', 'CircleCI', 'AppVeyor', 'Azure Pipelines']",264,,13,35,,,5,17,,,,,,,,,,,
829
+ apache/doris,Java,2,"['GitHub Actions', 'Travis CI']",262,8,,,,,,,,,,,,,,,,,
830
+ osalvador/ReplicaDB,Java,2,"['GitHub Actions', 'Travis CI']",81,48,,,,,,,,,,,,,,,,,
831
+ gouline/dbt-metabase,Python,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
832
+ Datavault-UK/automate-dv,nan,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
833
+ Matts966/alphasql,C++,1,['GitHub Actions'],135,,,,,,,,,,,,,,,,,,
834
+ vishwapardeshi/NL_Parser_using_Spacy,Jupyter Notebook,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
835
+ slingdata-io/sling-cli,Go,1,['GitHub Actions'],281,,,,,,,,,,,,,,,,,,
836
+ codeforkjeff/dbt-sqlite,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
837
+ andrewtavis/wikirepo,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
838
+ datafuel/DataPlatform_docker,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
839
+ bennyaustin/elt-framework,TSQL,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
840
+ MeltanoLabs/tap-dbt,Python,1,['GitHub Actions'],112,,,,,,,,,,,,,,,,,,
841
+ datacoves/dbt-coves,Python,1,['GitHub Actions'],89,,,,,,,,,,,,,,,,,,
842
+ prratek/tap-dbt-artifacts,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
843
+ firebolt-db/dbt-firebolt,Python,1,['GitHub Actions'],44,,,,,,,,,,,,,,,,,,
844
+ MeltanoLabs/target-csv,Python,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
845
+ Teradata/dbt-teradata,Python,1,['GitHub Actions'],249,,,,,,,,,,,,,,,,,,
846
+ edgarrmondragon/meltano-dogfood,Pkl,1,['GitHub Actions'],220,,,,,,,,,,,,,,,,,,
847
+ voxmedia/tap-instagram,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
848
+ datayoga-io/datayoga,Python,1,['GitHub Actions'],125,,,,,,,,,,,,,,,,,,
849
+ MeltanoLabs/target-snowflake,Python,1,['GitHub Actions'],66,,,,,,,,,,,,,,,,,,
850
+ SQLMesh/sqlmesh,Python,2,"['GitHub Actions', 'CircleCI']",31,,,45,,,,,,,,,,,,,,,
851
+ dtmirizzi/target-elasticsearch,Python,1,['GitHub Actions'],52,,,,,,,,,,,,,,,,,,
852
+ koltyakov/cq-source-sharepoint,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
853
+ apache/doris-sdk,Thrift,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
854
+ lelouvincx/spotify-data-pipeline-ingestion,Jupyter Notebook,1,['GitLab'],,,,,12,,,,,,,,,,,,,,
855
+ oresttokovenko/RetailFlow,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
856
+ quarylabs/quary,Rust,1,['GitHub Actions'],69,,,,,,,,,,,,,,,,,,
857
+ airbytehq/abctl,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
858
+ dataforgelabs/dataforge-core,PLpgSQL,2,"['GitHub Actions', 'Bitbucket']",135,,,,,,,,2,,,,,,,,,,
859
+ apache/doris-streamloader,Go,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
860
+ transferia/transferia,Go,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
861
+ franloza/running-races-insights,Jupyter Notebook,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
862
+ mattiasthalen/obsidian-insights,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
863
+ kiwamizamurai/tsumugi,Rust,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
864
+ transferia/iceberg,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
865
+ elastic/logstash,Java,2,"['GitHub Actions', 'Travis CI']",124,26,,,,,,,,,,,,,,,,,
866
+ noflo/noflo,JavaScript,3,"['GitHub Actions', 'Travis CI', 'AppVeyor']",46,56,,,,,14,,,,,,,,,,,,
867
+ globalbioticinteractions/globalbioticinteractions,Java,2,"['GitHub Actions', 'Travis CI']",17,30,,,,,,,,,,,,,,,,,
868
+ geopython/stetl,Python,2,"['GitHub Actions', 'Travis CI']",12,36,,,,,,,,,,,,,,,,,
869
+ frankframework/frankframework,Java,2,"['GitHub Actions', 'Travis CI']",140,23,,,,,,,,,,,,,,,,,
870
+ dalenewman/Transformalize,C#,2,"['GitHub Actions', 'AppVeyor']",23,,,,,,5,,,,,,,,,,,,
871
+ halestudio/hale,Java,2,"['GitHub Actions', 'Travis CI']",308,10,,,,,,,,,,,,,,,,,
872
+ nhl/link-move,Java,2,"['GitHub Actions', 'Travis CI']",8,9,,,,,,,,,,,,,,,,,
873
+ Cinchoo/ChoETL,C#,2,"['AppVeyor', 'GitHub Actions']",,,,,,,3,,,,,,,,,,,,
874
+ BitwiseInc/Hydrograph,Java,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
875
+ Renien/ETL-Starter-Kit,Scala,1,['Travis CI'],,4,,,,,,,,,,,,,,,,,
876
+ sdcote/coyote,Java,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
877
+ nh43de/DataPowerTools,C#,2,"['GitHub Actions', 'AppVeyor']",9,,,,,,8,,,,,,,,,,,,
878
+ johnshiver/plankton,Go,1,['Travis CI'],,11,,,,,,,,,,,,,,,,,
879
+ ikama-innovation/Bauta,Java,1,['GitHub Actions'],48,,,,,,,,,,,,,,,,,,
880
+ cefriel/chimera,Java,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
881
+ usc-isi-i2/kgtk,Jupyter Notebook,2,"['GitHub Actions', 'Travis CI']",32,13,,,,,,,,,,,,,,,,,
882
+ chermenin/kio,Kotlin,2,"['GitHub Actions', 'Travis CI']",10,3,,,,,,,,,,,,,,,,,
883
+ kufu-ai/dvs-inbulk,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
884
+ data-dot-all/dataall,Python,1,['GitHub Actions'],39,,,,,,,,,,,,,,,,,,
885
+ SharpData/SharpETL,Scala,3,"['GitHub Actions', 'GitLab', 'Azure Pipelines']",18,,,,2,,,2,,,,,,,,,,,
886
+ aws-samples/amazon-redshift-serverless-rsql-etl-framework,TypeScript,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
887
+ konturio/geocint-runner,Shell,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
888
+ rpsft/etlbox,C#,3,"['GitHub Actions', 'GitLab', 'Azure Pipelines']",2,,,,106,,,7,,,,,,,,,,,
889
+ legout/flowerpower,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
890
+ fabricks-framework/fabricks,Python,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
891
+ Mmodarre/Lakehouse_Plumber,Python,1,['GitHub Actions'],39,,,,,,,,,,,,,,,,,,
892
+ pujansrt/data-genie,TypeScript,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
893
+ smooks/smooks,Java,2,"['GitHub Actions', 'Travis CI']",34,11,,,,,,,,,,,,,,,,,
894
+ metafacture/metafacture-core,Java,2,"['GitHub Actions', 'Travis CI']",26,29,,,,,,,,,,,,,,,,,
895
+ thbar/kiba,Ruby,3,"['GitHub Actions', 'Travis CI', 'AppVeyor']",7,25,,,,,12,,,,,,,,,,,,
896
+ koopjs/koop,JavaScript,2,"['GitHub Actions', 'Travis CI']",75,2,,,,,,,,,,,,,,,,,
897
+ palewire/django-calaccess-raw-data,Python,2,"['GitHub Actions', 'Travis CI']",44,63,,,,,,,,,,,,,,,,,
898
+ datacleaner/DataCleaner,Java,2,"['GitHub Actions', 'Travis CI']",5,9,,,,,,,,,,,,,,,,,
899
+ jbogard/bulk-writer,C#,3,"['GitHub Actions', 'AppVeyor', 'Azure Pipelines']",7,,,,,,6,17,,,,,,,,,,,
900
+ pboehm/django-data-migration,Python,1,['Travis CI'],,13,,,,,,,,,,,,,,,,,
901
+ ICIJ/extract,Java,1,['CircleCI'],,,,16,,,,,,,,,,,,,,,
902
+ tenzinkabsang/NBatch,C#,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
903
+ orientechnologies/teleporter,Java,2,"['GitHub Actions', 'Jenkins']",1,,,,,,,,,,,,,,11,,,,
904
+ Seddryck/NBi,C#,3,"['AppVeyor', 'Azure Pipelines', 'GitHub Actions']",,,,,,,38,3,,,,,,,,,,,
905
+ hbz/lobid-resources,Java,2,"['GitHub Actions', 'Travis CI']",37,12,,,,,,,,,,,,,,,,,
906
+ AMPATH/etl-rest-server,JavaScript,2,"['GitHub Actions', 'Travis CI']",5,17,,,,,,,,,,,,,,,,,
907
+ linkedpipes/etl,Java,2,"['GitHub Actions', 'Travis CI']",12,11,,,,,,,,,,,,,,,,,
908
+ 51zero/eel-sdk,Scala,1,['Travis CI'],,14,,,,,,,,,,,,,,,,,
909
+ Marklogic-retired/marklogic-data-hub,TypeScript,3,"['Travis CI', 'AppVeyor', 'Jenkins']",,27,,,,,3,,,,,,,,229,,,,
910
+ bpolaszek/bentools-etl,PHP,3,"['GitHub Actions', 'Travis CI', 'Scrutinizer CI']",6,6,,,,,,,,,4,,,,,,,,
911
+ OndraZizka/csv-cruncher,Kotlin,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
912
+ smartive/proc-that,TypeScript,3,"['GitHub Actions', 'Travis CI', 'AppVeyor']",2,8,,,,3,,,,,,,,,,,,,
913
+ agrc/forklift,Python,2,"['GitHub Actions', 'Travis CI']",15,2,,,,,,,,,,,,,,,,,
914
+ yennanliu/web_scraping,Jupyter Notebook,2,"['GitHub Actions', 'Travis CI']",9,41,,,,,,,,,,,,,,,,,
915
+ nerevu/riko,Python,2,"['Travis CI', 'GitHub Actions']",,20,,,,,,,,,,,,,,,,,
916
+ rwynn/monstache,Go,2,"['GitHub Actions', 'Travis CI']",7,1,,,,,,,,,,,,,,,,,
917
+ nightscape/spark-excel,Scala,2,"['GitHub Actions', 'Travis CI']",106,8,,,,,,,,,,,,,,,,,
918
+ fedspendingtransparency/usaspending-api,Python,2,"['GitHub Actions', 'Travis CI']",28,254,,,,,,,,,,,,,,,,,
919
+ vibhorkum/pg_background,PLpgSQL,1,['GitHub Actions'],33,,,,,,,,,,,,,,,,,,
920
+ neo4j/neo4j-jdbc,Java,1,['GitHub Actions'],31,,,,,,,,,,,,,,,,,,
921
+ planarnetwork/dtd2mysql,TypeScript,2,"['GitHub Actions', 'Travis CI']",5,6,,,,,,,,,,,,,,,,,
922
+ hooopo/kiba-plus,Ruby,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
923
+ react-csv/react-csv,JavaScript,2,"['GitHub Actions', 'Travis CI']",3,1,,,,,,,,,,,,,,,,,
924
+ fab2s/YaEtl,PHP,2,"['GitHub Actions', 'Travis CI']",6,12,,,,,,,,,,,,,,,,,
925
+ licaonfee/selina,Go,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
926
+ catalyst-cooperative/pudl,Python,2,"['GitHub Actions', 'Travis CI']",429,87,,,,,,,,,,,,,,,,,
927
+ uber/storagetapper,Go,2,"['GitHub Actions', 'Travis CI']",2,12,,,,,,,,,,,,,,,,,
928
+ lsc-project/lsc,Java,2,"['GitHub Actions', 'Travis CI']",5,8,,,,,,,,,,,,,,,,,
929
+ grofit/persistity,C#,1,['AppVeyor'],,,,,,,5,,,,,,,,,,,,
930
+ mozilla/python_mozetl,Python,3,"['Travis CI', 'CircleCI', 'GitHub Actions']",,8,,20,,,,,,,,,,,,,,,
931
+ m-lab/etl,Go,1,['Travis CI'],,194,,,,,,,,,,,,,,,,,
932
+ autonomio/wrangle,Python,2,"['GitHub Actions', 'Travis CI']",8,6,,,,,,,,,,,,,,,,,
933
+ Swirrl/table2qb,Clojure,2,"['Travis CI', 'CircleCI']",,13,,1,,,,,,,,,,,,,,,
934
+ Bus-Data-NYC/mta-bus-archive,Python,2,"['GitHub Actions', 'Travis CI']",2,10,,,,,,,,,,,,,,,,,
935
+ mediative/amadou,Scala,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
936
+ appbaseio/abc,Go,2,"['GitHub Actions', 'Travis CI']",4,44,,,,,,,,,,,,,,,,,
937
+ nodefluent/kafka-connect,JavaScript,1,['Travis CI'],,4,,,,,,,,,,,,,,,,,
938
+ toaco/carry,Python,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
939
+ cityofaustin/knackpy,Python,1,['GitHub Actions'],35,,,,,,,,,,,,,,,,,,
940
+ nodefluent/sequelize-kafka-connect,JavaScript,1,['Travis CI'],,8,,,,,,,,,,,,,,,,,
941
+ nodefluent/bigquery-kafka-connect,JavaScript,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
942
+ kalisio/krawler,JavaScript,2,"['GitHub Actions', 'Travis CI']",14,37,,,,,,,,,,,,,,,,,
943
+ sul-dlss/traject_plus,Ruby,2,"['GitHub Actions', 'Travis CI']",1,4,,,,,,,,,,,,,,,,,
944
+ blockchain-etl/ethereum-etl,Python,2,"['GitHub Actions', 'Travis CI']",8,17,,,,,,,,,,,,,,,,,
945
+ datamill-co/target-postgres,Python,2,"['CircleCI', 'GitHub Actions']",,,,34,,,,,,,,,,,,,,,
946
+ analyseether/ether_sql,Python,1,['Travis CI'],,10,,,,,,,,,,,,,,,,,
947
+ data-solution-automation-engine/data-solution-framework,nan,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
948
+ mayur2810/sope,Scala,2,"['GitHub Actions', 'Travis CI']",1,3,,,,,,,,,,,,,,,,,
949
+ gacarrillor/AppendFeaturesToLayer,Python,2,"['GitHub Actions', 'Travis CI']",6,4,,,,,,,,,,,,,,,,,
950
+ m-lab/etl-gardener,Go,1,['Travis CI'],,54,,,,,,,,,,,,,,,,,
951
+ ksbg/sparklanes,Python,1,['Travis CI'],,6,,,,,,,,,,,,,,,,,
952
+ m-lab/etl-schema,Shell,1,['Travis CI'],,26,,,,,,,,,,,,,,,,,
953
+ kimaina/openmrs-etl,TSQL,1,['Travis CI'],,2,,,,,,,,,,,,,,,,,
954
+ vectordotdev/vector,Rust,2,"['GitHub Actions', 'CircleCI']",1000,,,184,,,,,,,,,,,,,,,
955
+ paillave/Etl.Net,C#,3,"['GitHub Actions', 'AppVeyor', 'Azure Pipelines']",10,,,,,,28,4,,,,,,,,,,,
956
+ AbsaOSS/cobrix,Scala,2,"['GitHub Actions', 'Jenkins']",52,,,,,,,,,,,,,,4,,,,
957
+ kokes/od,Python,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
958
+ capitalone/locopy,Python,2,"['GitHub Actions', 'Travis CI']",20,5,,,,,,,,,,,,,,,,,
959
+ Sage-Bionetworks/Genie,Python,2,"['GitHub Actions', 'Travis CI']",46,11,,,,,,,,,,,,,,,,,
960
+ jean-pasqualini/import,PHP,2,"['Travis CI', 'Scrutinizer CI']",,6,,,,,,,,,1,,,,,,,,
961
+ kids-first/kf-lib-data-ingest,Python,3,"['GitHub Actions', 'CircleCI', 'Jenkins']",11,,,9,,,,,,,,,,,2,,,,
962
+ OHDSI/ETL-Synthea,R,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
963
+ go-pkgz/flow,Go,2,"['GitHub Actions', 'Travis CI']",8,6,,,,,,,,,,,,,,,,,
964
+ aphp/spark-etl,Scala,1,['GitLab'],,,,,85,,,,,,,,,,,,,,
965
+ glesica/pkgraph,Dart,1,['Travis CI'],,7,,,,,,,,,,,,,,,,,
966
+ datavane/tis,Java,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
967
+ ananas-analytics/ananas-desktop,Java,1,['Travis CI'],,10,,,,,,,,,,,,,,,,,
968
+ streamthoughts/kafka-connect-file-pulse,Java,2,"['GitHub Actions', 'CircleCI']",62,,,6,,,,,,,,,,,,,,,
969
+ dflib/dflib,Java,2,"['GitHub Actions', 'Travis CI']",43,9,,,,,,,,,,,,,,,,,
970
+ csv2db/csv2db,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
971
+ Claviz/bellboy,TypeScript,2,"['GitHub Actions', 'Travis CI']",3,19,,,,,,,,,,,,,,,,,
972
+ khezen/avro,Go,2,"['GitHub Actions', 'Travis CI']",2,2,,,,,,,,,,,,,,,,,
973
+ seattleflu/id3c,PLpgSQL,2,"['GitHub Actions', 'Travis CI']",5,4,,,,,,,,,,,,,,,,,
974
+ wgzhao/Addax,Java,2,"['GitHub Actions', 'GitLab']",105,,,,11,,,,,,,,,,,,,,
975
+ toluaina/pgsync,Python,1,['GitHub Actions'],39,,,,,,,,,,,,,,,,,,
976
+ elastic/eland,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
977
+ grailbio/bigslice,Go,2,"['GitHub Actions', 'Travis CI']",7,9,,,,,,,,,,,,,,,,,
978
+ itpp-labs/sync-addons,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
979
+ kmatarese/glide,Python,2,"['CircleCI', 'GitHub Actions']",,,,9,,,,,,,,,,,,,,,
980
+ monarch-initiative/monochrom,Python,2,"['GitHub Actions', 'Travis CI']",6,1,,,,,,,,,,,,,,,,,
981
+ onepanelio/onepanel,Go,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
982
+ microsoft/etl2pcapng,C,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
983
+ XiaoMi/thain,TypeScript,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
984
+ schic/DQCS,Java,2,"['GitHub Actions', 'Travis CI']",2,5,,,,,,,,,,,,,,,,,
985
+ jwhulette/pipes,PHP,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
986
+ fulldecent/google-sheets-etl,PHP,3,"['GitHub Actions', 'Travis CI', 'Scrutinizer CI']",3,6,,,,,,,,,1,,,,,,,,
987
+ nl2go/hetzner-invoice,Python,1,['Travis CI'],,3,,,,,,,,,,,,,,,,,
988
+ debrief/pepys-import,Python,2,"['GitHub Actions', 'Travis CI']",78,16,,,,,,,,,,,,,,,,,
989
+ SETL-Framework/setl-template,Scala,2,"['GitHub Actions', 'Travis CI']",1,3,,,,,,,,,,,,,,,,,
990
+ basin-etl/basin,TypeScript,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
991
+ whythawk/whyqd,Python,2,"['GitHub Actions', 'Travis CI']",1,8,,,,,,,,,,,,,,,,,
992
+ INFINITE-TECHNOLOGY/COBOL,COBOL,1,['Travis CI'],,1,,,,,,,,,,,,,,,,,
993
+ albertossilva/flowie,TypeScript,2,"['GitHub Actions', 'Travis CI']",1,3,,,,,,,,,,,,,,,,,
994
+ StoneMoe/AnyPush,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
995
+ matiuszka/smort-query,Python,2,"['GitHub Actions', 'Travis CI']",33,12,,,,,,,,,,,,,,,,,
996
+ insolar/block-explorer,Go,1,['GitHub Actions'],33,,,,,,,,,,,,,,,,,,
997
+ UKHSA-Internal/coronavirus-dashboard-pipeline-etl,Python,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
998
+ jellyfish-toolkit/pipe-framework,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
999
+ trocco-io/embulk-output-bigquery_java,Java,2,"['GitHub Actions', 'CircleCI']",12,,,3,,,,,,,,,,,,,,,
1000
+ jf-tech/omniparser,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1001
+ neuml/paperetl,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
1002
+ WeBankFinTech/Exchangis,Java,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1003
+ ohs-foundation/fhir-data-pipes,Jupyter Notebook,2,"['GitHub Actions', 'Travis CI']",2,7,,,,,,,,,,,,,,,,,
1004
+ chronicle-app/chronicle-etl,Ruby,2,"['GitHub Actions', 'Travis CI']",4,1,,,,,,,,,,,,,,,,,
1005
+ networktocode/diffsync,Python,2,"['GitHub Actions', 'Travis CI']",26,31,,,,,,,,,,,,,,,,,
1006
+ zbrookle/sql_to_ibis,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1007
+ biglocalnews/warn-scraper,Python,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
1008
+ tweag/lagoon,Haskell,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1009
+ php-etl/satellite,PHP,1,['GitHub Actions'],21,,,,,,,,,,,,,,,,,,
1010
+ anelendata/handoff,Python,1,['Travis CI'],,9,,,,,,,,,,,,,,,,,
1011
+ lyrasis/kiba-extend,Ruby,2,"['GitHub Actions', 'Travis CI']",26,2,,,,,,,,,,,,,,,,,
1012
+ flock-lab/flock,Rust,1,['GitHub Actions'],59,,,,,,,,,,,,,,,,,,
1013
+ ajthinking/data-story,TypeScript,1,['GitHub Actions'],102,,,,,,,,,,,,,,,,,,
1014
+ Breeze0806/go-etl,Go,2,"['GitHub Actions', 'Travis CI']",11,5,,,,,,,,,,,,,,,,,
1015
+ monarch-initiative/koza,Python,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
1016
+ andrewcstewart/ds4fnp,Shell,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1017
+ yahoo/cubed,Java,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1018
+ nownabe/go-bqloader,Go,1,['GitHub Actions'],23,,,,,,,,,,,,,,,,,,
1019
+ erkkah/sslr,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1020
+ bcgsc/pori_graphkb_loader,JavaScript,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1021
+ datakaveri/iudx-adaptor-framework,Java,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1022
+ turbot/steampipe,Go,1,['GitHub Actions'],276,,,,,,,,,,,,,,,,,,
1023
+ turbot/steampipe-plugin-aws,Go,1,['GitHub Actions'],41,,,,,,,,,,,,,,,,,,
1024
+ pbnjay/grate,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1025
+ turbot/steampipe-plugin-github,Go,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
1026
+ turbot/steampipe-plugin-kubernetes,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1027
+ turbot/steampipe-plugin-gcp,Go,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
1028
+ turbot/steampipe-plugin-sdk,Go,1,['GitHub Actions'],40,,,,,,,,,,,,,,,,,,
1029
+ turbot/steampipe-plugin-azure,Go,1,['GitHub Actions'],34,,,,,,,,,,,,,,,,,,
1030
+ fkie-cad/Logprep,Python,2,"['GitHub Actions', 'GitLab']",82,,,,3,,,,,,,,,,,,,,
1031
+ turbot/steampipe-plugin-shodan,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1032
+ turbot/steampipe-plugin-net,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1033
+ turbot/steampipe-plugin-oci,Go,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
1034
+ turbot/steampipe-plugin-slack,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1035
+ turbot/steampipe-plugin-whois,Go,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1036
+ turbot/steampipe-plugin-hackernews,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1037
+ turbot/steampipe-plugin-twitter,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1038
+ turbot/steampipe-plugin-alicloud,Go,1,['GitHub Actions'],15,,,,,,,,,,,,,,,,,,
1039
+ turbot/steampipe-plugin-finance,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1040
+ turbot/steampipe-plugin-steampipe,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
1041
+ turbot/steampipe-plugin-zendesk,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1042
+ turbot/steampipe-plugin-rss,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1043
+ turbot/steampipe-plugin-cloudflare,Go,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1044
+ turbot/steampipe-plugin-digitalocean,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1045
+ turbot/steampipe-plugin-ipstack,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1046
+ noleme/noleme-flow-connectors,Java,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1047
+ turbot/steampipe-plugin-chaos,Go,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
1048
+ stn1slv/awesome-integration,Markdown,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1049
+ mydataharbor/mydataharbor,Java,2,"['GitHub Actions', 'Travis CI']",14,2,,,,,,,,,,,,,,,,,
1050
+ turbot/steampipe-plugin-terraform,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1051
+ fairtracks/omnipy,Python,1,['GitHub Actions'],32,,,,,,,,,,,,,,,,,,
1052
+ turbot/steampipe-plugin-jira,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
1053
+ turbot/steampipe-plugin-virustotal,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1054
+ turbot/steampipe-plugin-googleworkspace,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1055
+ atolcd/hop-gis-plugins,Java,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1056
+ turbot/steampipe-plugin-stripe,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1057
+ turbot/steampipe-plugin-code,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1058
+ crs4/flatehr,Python,1,['GitHub Actions'],37,,,,,,,,,,,,,,,,,,
1059
+ churrodata/churro,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1060
+ turbot/steampipe-plugin-googledirectory,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1061
+ nico-corthorn/tba-investments-etl,Jupyter Notebook,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
1062
+ turbot/steampipe-plugin-azuread,Go,1,['GitHub Actions'],18,,,,,,,,,,,,,,,,,,
1063
+ turbot/steampipe-plugin-grafana,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1064
+ turbot/steampipe-plugin-abuseipdb,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1065
+ turbot/steampipe-plugin-ldap,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1066
+ turbot/steampipe-plugin-docker,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1067
+ turbot/steampipe-plugin-okta,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1068
+ turbot/steampipe-plugin-microsoft365,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1069
+ turbot/steampipe-plugin-tfe,Go,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1070
+ turbot/steampipe-plugin-bitbucket,Go,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1071
+ biglocalnews/warn-transformer,Python,1,['GitHub Actions'],53,,,,,,,,,,,,,,,,,,
1072
+ turbot/steampipe-plugin-linode,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1073
+ ome9ax/target-s3-jsonl,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
1074
+ databricks/dbt-databricks,Python,2,"['GitHub Actions', 'CircleCI']",86,,,20,,,,,,,,,,,,,,,
1075
+ reductstore/reductstore,Rust,1,['GitHub Actions'],226,,,,,,,,,,,,,,,,,,
1076
+ hofstadter-io/cuetils,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1077
+ turbot/steampipe-plugin-googlesheets,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1078
+ turbot/steampipe-plugin-csv,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1079
+ Agazoth/PSParquet,PowerShell,1,['GitHub Actions'],51,,,,,,,,,,,,,,,,,,
1080
+ turbot/steampipe-plugin-prometheus,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1081
+ turbot/steampipe-plugin-scaleway,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1082
+ turbot/steampipe-plugin-datadog,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
1083
+ turbot/steampipe-plugin-salesforce,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1084
+ turbot/steampipe-plugin-imap,Go,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1085
+ turbot/steampipe-plugin-hypothesis,Go,1,['GitHub Actions'],12,,,,,,,,,,,,,,,,,,
1086
+ Mukhopadhyay/restdf,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1087
+ turbot/steampipe-plugin-hibp,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1088
+ turbot/steampipe-plugin-ibm,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1089
+ sul-dlss/libsys-airflow,Python,1,['GitHub Actions'],47,,,,,,,,,,,,,,,,,,
1090
+ instill-ai/instill-core,Python,1,['GitHub Actions'],159,,,,,,,,,,,,,,,,,,
1091
+ easysql/easy_sql,Python,1,['GitHub Actions'],86,,,,,,,,,,,,,,,,,,
1092
+ chainbound/apollo,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1093
+ datayoga-io/lineage,TypeScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1094
+ datawaves-xyz/dbt_datawaves,nan,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
1095
+ DylanBartels/discogs-load,Rust,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1096
+ turbot/steampipe-plugin-reddit,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1097
+ catalyst-cooperative/ferc-xbrl-extractor,Python,1,['GitHub Actions'],52,,,,,,,,,,,,,,,,,,
1098
+ turbot/steampipe-plugin-config,Go,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1099
+ AgnostiqHQ/covalent-awsbatch-plugin,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1100
+ AgnostiqHQ/covalent-ecs-plugin,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1101
+ emeraldpay/dshackle-archive,Rust,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1102
+ nationalarchives/ds-caselaw-ingester,Python,1,['GitHub Actions'],176,,,,,,,,,,,,,,,,,,
1103
+ SbWereWolf/xml-navigator,PHP,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1104
+ d3b-center/image-deid-etl,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1105
+ turbot/steampipe-plugin-snowflake,Go,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1106
+ getdozer/dozer,Rust,1,['GitHub Actions'],144,,,,,,,,,,,,,,,,,,
1107
+ useVenice/venice,TypeScript,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
1108
+ deepeth/mars,Rust,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1109
+ fhirpack/fhirpack,Python,1,['GitLab'],,,,,3,,,,,,,,,,,,,,
1110
+ DawnbrandBots/yaml-yugi,Python,1,['GitHub Actions'],115,,,,,,,,,,,,,,,,,,
1111
+ linkml/linkml-map,Python,1,['GitHub Actions'],28,,,,,,,,,,,,,,,,,,
1112
+ akimrx/yandex-tracker-exporter,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1113
+ cloudposse/terraform-aws-glue,HCL,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1114
+ kaiachain/kaia-etl,Python,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1115
+ top-guns/etl-gun,TypeScript,1,['GitHub Actions'],20,,,,,,,,,,,,,,,,,,
1116
+ pldn/LDWizard,TypeScript,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1117
+ AgnostiqHQ/covalent-aws-plugins,Python,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1118
+ turbot/steampipe-plugin-crtsh,Go,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
1119
+ turbot/steampipe-plugin-trivy,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1120
+ AgnostiqHQ/covalent-kubernetes-plugin,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1121
+ mert019/open-ETL,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1122
+ DawnbrandBots/yaml-yugipedia,Python,1,['GitHub Actions'],49,,,,,,,,,,,,,,,,,,
1123
+ turbot/steampipe-plugin-crowdstrike,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1124
+ aelassas/wexflow,C#,2,"['GitHub Actions', 'Azure Pipelines']",31,,,,,,,2,,,,,,,,,,,
1125
+ apache/incubator-graphar,C++,1,['GitHub Actions'],112,,,,,,,,,,,,,,,,,,
1126
+ benjamin-awd/monopoly,Python,1,['GitHub Actions'],48,,,,,,,,,,,,,,,,,,
1127
+ datainsider-co/rocket-bi,TypeScript,1,['Jenkins'],,,,,,,,,,,,,,,2,,,,
1128
+ dfpc-coe/CloudTAK,TypeScript,1,['GitHub Actions'],100,,,,,,,,,,,,,,,,,,
1129
+ zeus-fyi/zeus,Go,1,['GitHub Actions'],108,,,,,,,,,,,,,,,,,,
1130
+ MeltanoLabs/tap-airbyte-wrapper,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1131
+ flyanakin/CountMoney,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1132
+ turbot/steampipe-plugin-mastodon,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1133
+ devopscorner/nifi,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1134
+ TelemodemTI/dagserver,JavaScript,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
1135
+ turbot/steampipe-plugin-ipinfo,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1136
+ turbot/steampipe-plugin-tailscale,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1137
+ turbot/steampipe-plugin-jumpcloud,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1138
+ MTSWebServices/etl-entities,Python,2,"['GitHub Actions', 'GitLab']",87,,,,26,,,,,,,,,,,,,,
1139
+ turbot/steampipe-plugin-jenkins,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1140
+ PeerDB-io/peerdb,Go,1,['GitHub Actions'],303,,,,,,,,,,,,,,,,,,
1141
+ apecloud/ape-dts,Rust,1,['GitHub Actions'],59,,,,,,,,,,,,,,,,,,
1142
+ kzaremski/apple-notes-exporter,Swift,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1143
+ long2ice/meilisync,Python,1,['GitHub Actions'],19,,,,,,,,,,,,,,,,,,
1144
+ aws-samples/aws-glue-test-data-generator,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1145
+ smortezah/portfolio,Jupyter Notebook,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
1146
+ turbot/steampipe-plugin-exec,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1147
+ turbot/steampipe-plugin-linkedin,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1148
+ turbot/steampipe-plugin-openai,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1149
+ turbot/steampipe-plugin-openapi,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1150
+ turbot/steampipe-plugin-onepassword,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1151
+ turbot/steampipe-plugin-supabase,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1152
+ kassette-ai/kassette-server,Go,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
1153
+ turbot/steampipe-plugin-shopify,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1154
+ Zettafi/block-crawler,Python,2,"['GitHub Actions', 'GitLab']",4,,,,5,,,,,,,,,,,,,,
1155
+ turbot/steampipe-plugin-namecheap,Go,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1156
+ c0mm4nd/tronetl,Go,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1157
+ timeplus-io/proton,C++,3,"['GitHub Actions', 'Travis CI', 'GitLab']",485,20,,,7,,,,,,,,,,,,,,
1158
+ aryn-ai/sycamore,Python,1,['GitHub Actions'],77,,,,,,,,,,,,,,,,,,
1159
+ ogbinar/DataEngineeringPilipinas,HTML,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1160
+ schemamap/schemamap,Rust,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
1161
+ wgzhao/addax-admin,Java,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1162
+ robert-koch-institut/mex-common,Python,1,['GitHub Actions'],135,,,,,,,,,,,,,,,,,,
1163
+ jordilin/gitar,Rust,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1164
+ turbot/steampipe-plugin-databricks,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1165
+ bitalizer/db-migrator,Rust,1,['GitHub Actions'],7,,,,,,,,,,,,,,,,,,
1166
+ turbot/steampipe-sqlite,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1167
+ level-vc/useful,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1168
+ SpareCores/sc-crawler,Python,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
1169
+ Dorianteffo/etl_pipeline_docker_metabase,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1170
+ turbolytics/latte,Go,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1171
+ karanpratapsingh/scale-etl,Go,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1172
+ tvs-sde/oxford-omop-data-mapper,C#,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1173
+ contube-org/contube,Java,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1174
+ turbot/steampipe-export,Go,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1175
+ tenzir/library,kvlang,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
1176
+ ts7ming/pyqueen,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1177
+ mehd-io/pypi-duck-flow,TypeScript,1,['GitHub Actions'],36,,,,,,,,,,,,,,,,,,
1178
+ HemeraProtocol/hemera-indexer,Python,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1179
+ apache/doris-kafka-connector,Java,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1180
+ MTSWebServices/syncmaster,Python,2,"['GitHub Actions', 'GitLab']",128,,,,8,,,,,,,,,,,,,,
1181
+ MTSWebServices/horizon,Python,2,"['GitHub Actions', 'GitLab']",82,,,,47,,,,,,,,,,,,,,
1182
+ mbari-org/aidata,Python,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
1183
+ memiiso/opendbt,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
1184
+ ErickWendel/nodered-google-sheets-to-json-stream,JavaScript,1,['GitHub Actions'],24,,,,,,,,,,,,,,,,,,
1185
+ syncmaven/syncmaven,TypeScript,1,['GitHub Actions'],87,,,,,,,,,,,,,,,,,,
1186
+ SemyonSinchenko/feature-generation-benchmark,Jupyter Notebook,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1187
+ singl3focus/hl7-converter,Go,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
1188
+ MTSWebServices/spark-dialect-extension,Scala,2,"['GitHub Actions', 'GitLab']",24,,,,1,,,,,,,,,,,,,,
1189
+ vlm-run/vlmrun-hub,Python,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1190
+ dhdaines/playa,Jupyter Notebook,2,"['GitHub Actions', 'Travis CI']",66,27,,,,,,,,,,,,,,,,,
1191
+ banzuzi-carioni/cross-border-electricity-flow-prediction,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
1192
+ telekom/wurzel,HTML,1,['GitHub Actions'],29,,,,,,,,,,,,,,,,,,
1193
+ neo-technology-field/python-etl-lib,Python,1,['GitHub Actions'],27,,,,,,,,,,,,,,,,,,
1194
+ HubertLongshanks/PySurveyReader,Python,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1195
+ caiopizzol/cnpj-data-pipeline,Python,1,['GitHub Actions'],10,,,,,,,,,,,,,,,,,,
1196
+ santoshray02/csv-editor,Python,1,['GitHub Actions'],5,,,,,,,,,,,,,,,,,,
1197
+ ewc3labs/excel-power-query-editor,TypeScript,1,['GitHub Actions'],6,,,,,,,,,,,,,,,,,,
1198
+ elastic/LogstashUI,Python,1,['GitHub Actions'],8,,,,,,,,,,,,,,,,,,
1199
+ B1AAB/EBA,C#,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1200
+ colliery-io/cloacina,Rust,1,['GitHub Actions'],83,,,,,,,,,,,,,,,,,,
1201
+ Broscorp-net/prefect-meltano,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1202
+ alfablend/rostral.io,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1203
+ Arbaznazir/DataLineagePy,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1204
+ zappzerapp/laravel-ingest,PHP,1,['GitHub Actions'],14,,,,,,,,,,,,,,,,,,
1205
+ diegoscarabelli/garmin-health-data,Python,1,['GitHub Actions'],3,,,,,,,,,,,,,,,,,,
1206
+ ing-bank/ordeq,Python,1,['GitHub Actions'],46,,,,,,,,,,,,,,,,,,
1207
+ wp-labs/wp-editor,JavaScript,1,['GitHub Actions'],16,,,,,,,,,,,,,,,,,,
1208
+ slalaure/korelate,JavaScript,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1209
+ KSD-CO/excelstream,Rust,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1210
+ erikhoward/atlas,Rust,1,['GitHub Actions'],13,,,,,,,,,,,,,,,,,,
1211
+ fdmorison/tiozin,Python,1,['GitHub Actions'],17,,,,,,,,,,,,,,,,,,
1212
+ clamp-orchestrator/clamp-core,Go,3,"['GitHub Actions', 'CircleCI', 'GitLab']",2,,,53,27,,,,,,,,,,,,,,
1213
+ hadron-project/hadron,Rust,1,['GitHub Actions'],11,,,,,,,,,,,,,,,,,,
1214
+ DataTalksClub/mlops-zoomcamp,Jupyter Notebook,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1215
+ hpcflow/matflow,Python,1,['GitHub Actions'],68,,,,,,,,,,,,,,,,,,
1216
+ zzstoatzz/prefect-memory-profiling,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1217
+ Nerdward/Mlops_project,Jupyter Notebook,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1218
+ cmigpereira/mlops-zoomcamp-project,Python,1,['GitHub Actions'],2,,,,,,,,,,,,,,,,,,
1219
+ sartography/spiff-arena,Python,2,"['GitHub Actions', 'Jenkins']",448,,,,,,,,,,,,,,8,,,,
1220
+ harshadmanglani/polaris,Go,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1221
+ zetane/zetaforgedev,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1222
+ czelabueno/jai-workflow,Java,1,['GitHub Actions'],22,,,,,,,,,,,,,,,,,,
1223
+ ThalesGroup/agilab,Python,1,['GitHub Actions'],169,,,,,,,,,,,,,,,,,,
1224
+ zigflow/zigflow,Go,1,['GitHub Actions'],67,,,,,,,,,,,,,,,,,,
1225
+ call518/MCP-Airflow-API,Python,1,['GitHub Actions'],25,,,,,,,,,,,,,,,,,,
1226
+ iepathos/prodigy,Rust,1,['GitHub Actions'],49,,,,,,,,,,,,,,,,,,
1227
+ turtir-ai/mcp-ecosystem-platform,Python,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1228
+ barkain/claude-code-workflow-orchestration,Python,1,['GitHub Actions'],9,,,,,,,,,,,,,,,,,,
1229
+ defai-digital/AutomatosX,TypeScript,1,['GitHub Actions'],1,,,,,,,,,,,,,,,,,,
1230
+ The-Pocket/PocketFlow-Zig,Zig,1,['GitHub Actions'],4,,,,,,,,,,,,,,,,,,
1231
+ BasPH/airflow-rocket,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1232
+ DataTalksClub/data-engineering-zoomcamp,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1233
+ Flor91/Data-engineering-nanodegree,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1234
+ GoogleCloudPlatform/cortex-data-foundation,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1235
+ GoogleCloudPlatform/dataproc-scala-examples,Scala,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1236
+ IsmaelMiranda11/inflation-data-model,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1237
+ PastorGL/datacooker-etl,Java,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1238
+ RubelAhmed10082000/CragWeatherDatabase,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1239
+ Shinichi-Nakagawa/airflow-docker,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1240
+ Snowflake-Labs/emerging-solutions-toolbox,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1241
+ The-Pocket/PocketFlow,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1242
+ TianLangStudio/DataXServer,Scala,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1243
+ abrahamkoloboe27/E-Commerce-Data-Pipeline-And-Dashboard-With-Apache-Superset,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1244
+ adidas/lakehouse-engine-docs,HTML,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1245
+ ariacom/Seal-Report,C#,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1246
+ aws-ia/terraform-aws-mwaa,HCL,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1247
+ aws-samples/cloud-native-airflow-solution-on-amazon-eks,Shell,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1248
+ aws-samples/dataops-platform-airflow-dbt,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1249
+ aws-samples/mwaa-rbac-task,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1250
+ aws-samples/tracing-etl-workloads-otel,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1251
+ camillebaronnet/php-etl-framework,PHP,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1252
+ cbslneu/physioview,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1253
+ coderxio/sagerx,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1254
+ dagster-io/dagster-open-platform,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1255
+ datopian/aircan,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1256
+ decodableco/examples,Java,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1257
+ edkreuk/FMD_FRAMEWORK,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1258
+ google/grizzly,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1259
+ guidok91/spark-structured-streaming-kafka,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1260
+ ipeluffo/airflow-on-kubernetes,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1261
+ machphy/Real-Time-Cyber-Incident-Monitoring-and-Analysis-Tool,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1262
+ matsudan/airflow-dag-examples,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1263
+ opencultureconsulting/orcli,Shell,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1264
+ oracle-samples/oracle-aidp-samples,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1265
+ ozkary/data-engineering-mta-turnstile,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1266
+ petaly-labs/petaly,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1267
+ piebro/wikidata-extraction,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1268
+ pyladiesams/data-pipelines-with-dbtcore-snowflake-sep2025,Makefile,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1269
+ qunomon/qunomon,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1270
+ rjurney/Agile_Data_Code_2,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1271
+ sdam-au/LAGT,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1272
+ shauryashaurya/learn-data-munging,Jupyter Notebook,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1273
+ superlinked/sie,Python,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1274
+ unbody-io/unbody,TypeScript,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
1275
+ wujun728/jun_bigdata,JavaScript,1,['GitHub Actions'],,,,,,,,,,,,,,,,,,,
Data/DE_commits_per_ci_files.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b4d25825ab9d628bbd3e2911fdab1fe9ecf5fd228c93f86673e56b972010b79
3
+ size 32640654
Data/DE_pipeline_artifacts.db ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb2797395c29ea33f249ba316601daf64f9188824e03fe45ac958ec3e10e5ead
3
+ size 8048640
Data/DE_repo_gha_runs_counts.csv ADDED
@@ -0,0 +1,1953 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ full_name,gha_run_count,travis_build_count
2
+ sanjeevai/disaster-response-pipeline,0,
3
+ koksang/social-media-analysis,0,
4
+ san089/Udacity-Data-Engineering-Projects,0,
5
+ san089/goodreads_etl_pipeline,0,
6
+ immu0001/Udacity-Data-Engineer-nanodegree,0,
7
+ anki-code/xontrib-pipeliner,7,
8
+ ketgo/marshmallow-pyspark,0,
9
+ alanchn31/Movalytics-Data-Warehouse,0,
10
+ Yan-Luo-AU/Data_Engineer_Project_ETL_BI,0,
11
+ vmware/versatile-data-kit,1583,
12
+ datarootsio/notion-dbs-data-quality,0,
13
+ anna-geller/dataflow-ops,0,
14
+ anna-geller/prefect-deployment-patterns,0,
15
+ anna-geller/prefect-aws-lambda,0,
16
+ alero-awani/batch-data-engineering-project,0,
17
+ siddharth271101/Covid-19-and-Aviation-Industry,0,
18
+ DeleLinus/HFR-Data-Warehousing,0,
19
+ anna-geller/dataflow-ops-aws-eks,0,
20
+ anna-geller/prefect-getting-started,0,
21
+ ShihWen/tpe-mrt-traffic-etl,0,
22
+ VeraZab/nyc-stats,0,
23
+ CharlieSergeant/airflow-minio-postgres-fastapi,0,
24
+ NitinDatta8/realtime-data-streaming,0,
25
+ longNguyen010203/Youtube-Recommend-Master-ETL-Pipeline,0,
26
+ salimt/Spotify-API-Pipeline,0,
27
+ BayoAdejare/lightning-containers,26,
28
+ TJhon/PyPeruStats,50,
29
+ shankarlohar/dbt-snowflake-data-pipeline,0,
30
+ fonsecagabriella/data_engineering,0,
31
+ quixio/klaus-kode-agentic-integrator,0,
32
+ edrewitz/WxData,0,
33
+ opensanctions/nomenklatura,1235,
34
+ ceumicrodata/mETL,0,
35
+ unioslo/cerebrum,0,
36
+ jumpmindinc/metl,25,
37
+ apache/airflow,40000,
38
+ DSuveges/GenomePlotter,143,
39
+ seandavi/awesome-single-cell,10,
40
+ SysBioChalmers/GECKO,15,
41
+ raamana/pyradigm,0,
42
+ NICTA/serene-python-client,0,
43
+ apache/hudi,40000,
44
+ selbouhaddani/OmicsPLS,4,
45
+ wenjie2wang/intsurv,20,
46
+ thymeflow/thymeflow-back,0,
47
+ NICTA/serene,0,
48
+ olehmberg/winter,0,
49
+ apache/seatunnel,40000,
50
+ bio2bel/bio2bel,0,
51
+ CommonCoreOntology/CommonCoreOntologies,175,
52
+ SysBioChalmers/SLIMEr,0,
53
+ dagster-io/dagster,40000,
54
+ DTStack/chunjun,70,
55
+ mara/mara-pipelines,2,
56
+ saeyslab/nichenetr,43,
57
+ mara/mara-example-project-2,0,
58
+ SDM-TIB/SDM-RDFizer,234,
59
+ JonnyTran/OpenOmics,0,
60
+ mara/mara-etl-tools,0,
61
+ DTUComputeStatisticsAndDataAnalysis/MBPLS,0,
62
+ oeg-upm/gtfs-bench,0,
63
+ dieterich-lab/Baltica,0,
64
+ genular/pandora,0,
65
+ zazuko/barnard59,229,
66
+ NPLinker/nplinker,210,
67
+ CategoricalData/CQL,36,
68
+ fluvio-community/fluvio,6088,
69
+ rudderlabs/rudder-server,39142,
70
+ theislab/scarches,0,
71
+ delftdata/valentine,280,
72
+ CogStack/CogStack-NiFi,3994,
73
+ oeg-upm/mapeathor,0,
74
+ BioDWH2/BioDWH2,16,
75
+ cloverdx/cloverdx-server-docker,0,
76
+ apache/hop,8844,
77
+ slowkow/harmonypy,49,
78
+ datasphere-oss/datasphere-integration,0,
79
+ saezlab/cosmosR,23,
80
+ marklogic-community/pipes,12,
81
+ dachafra/thesis,0,
82
+ airbytehq/airbyte,40000,
83
+ apache/flink-cdc,6971,
84
+ jitsucom/jitsu,2287,
85
+ Azure/data-product-batch,0,
86
+ Azure/data-product-streaming,0,
87
+ cloudquery/cloudquery,40000,
88
+ morph-kgc/morph-kgc,146,
89
+ glasgowcompbio/pyMultiOmics,0,
90
+ giros-dit/semantic-data-aggregator,0,
91
+ kuwala-io/kuwala,0,
92
+ cuebook/cuelake,0,
93
+ thedataengineeringbook/thedataengineeringbook,22,
94
+ linkml/linkml-model,454,
95
+ ginkgobioworks/geckopy,0,
96
+ linkedin/data-integration-library,20,
97
+ sysbio-curie/transmorph,0,
98
+ ermshaua/preon,0,
99
+ tteofili/certa,0,
100
+ theislab/scPoli_legacy,0,
101
+ apache/incubator-devlake,6803,
102
+ shuxiaoc/mario-py,0,
103
+ MeltanoLabs/Singer-Working-Group,0,
104
+ dobraczka/forayer,0,
105
+ dataplane-app/dataplane,0,
106
+ starlake-ai/starlake,922,
107
+ PedroMTQ/UniFuncNet,0,
108
+ Avaiga/taipy,5369,
109
+ ConduitIO/conduit,3884,
110
+ oeg-upm/github-action-morph-kgc,0,
111
+ mage-ai/mage-ai,1356,
112
+ runprism/prism,0,
113
+ yezhengSTAT/ADTnorm,6,
114
+ cloudquery/plugin-sdk,8343,
115
+ apache/seatunnel-web,165,
116
+ gabledata/recap,36,
117
+ ORNL/flowcept,2507,
118
+ slotix/dbconvert-streams-public,0,
119
+ apache/seatunnel-datasource-sdk,0,
120
+ andreac0/BeRTo-RecordLinkageTool,0,
121
+ neuroforgede/nfcompose,216,
122
+ AnthonyByansi/Airflow-Data-Pipeline-Automation,0,
123
+ dobraczka/klinker,0,
124
+ GuinsooLab/luden,0,
125
+ scaleway/cq-source-scaleway,119,
126
+ Teichlab/cellhint,0,
127
+ AnthonyByansi/MicrosoftFabric-Exploratorium,0,
128
+ vandenn/dagster-prio-dynamic-map,0,
129
+ siyul-park/uniflow,303,
130
+ CloudFormations/CF.Cumulus,102,
131
+ lisad/phaser,0,
132
+ BioDataFuse/pyBiodatafuse,395,
133
+ wintechis/flex-rml,0,
134
+ breimanntools/xomics,0,
135
+ Ashford-A/UniVI,0,
136
+ bruin-data/ingestr,5879,
137
+ buildersoftio/cortex,9,
138
+ yxwucq/scExtract,0,
139
+ cbib/Seurat-Integrate,10,
140
+ VIDA-NYU/bdi-kit,866,
141
+ tshu-w/ComEM,0,
142
+ kinto-technologies/SpringBoot3BatchStarter,0,
143
+ apache/incubator-devlake-playground,71,
144
+ lightfeed/sdk,41,
145
+ jonathanbhaskar/dagster-odp,6,
146
+ Seddryck/Streamistry,937,
147
+ gbazad93/AirFlow-ML-Data-Integration,0,
148
+ armbian/armbian.github.io,27583,
149
+ rutgers-db/EntityBlockingBySimilarityJoins,0,
150
+ paloaltodatabases/sequor,0,
151
+ tabsdata/tabsdata,16,
152
+ quadbio/cellmapper,572,
153
+ apache/seatunnel-tools,297,
154
+ wbsg-uni-mannheim/PyDI,35,
155
+ firelink-sh/evolve-py,288,
156
+ quadbio/scembed,305,
157
+ Trhova/Multi-omics,0,
158
+ oracle-samples/oracle-aidp-samples,2,
159
+ bladepipe/bladepipe-official-site-and-docs,244,
160
+ AlexIoannides/pyspark-example-project,0,
161
+ YotpoLtd/metorikku,0,
162
+ InterestingLab/seatunnel-example,0,
163
+ data-solution-automation-engine/DIRECT,80,
164
+ BBVA/data-refinery,1,
165
+ MassStreetAnalytics/etl-framework,0,
166
+ sparsecode/DaFlow,0,
167
+ vertica/PSTL,0,
168
+ yennanliu/AirflowJob,0,
169
+ techascent/tech.ml.dataset,185,
170
+ toddbirchard/jira-database-etl,0,
171
+ FizzCodeSoftware/EtLast,0,
172
+ san089/Spark_Packaged_project,0,
173
+ apache/streampark,1573,
174
+ TriplyDB/Documentation,112,
175
+ camillebaronnet/php-etl-framework,2,
176
+ yennanliu/airflow-ubuntu-dev,0,
177
+ SETL-Framework/setl,170,
178
+ vim89/datapipelines-essentials-python,0,
179
+ tharwaninitin/etlflow,0,
180
+ asatrya/airflow-etl-learn,0,
181
+ frieds/horsing_around_etl,0,
182
+ damklis/etljob,0,
183
+ shravan-kuchkula/udacity-data-eng-proj2,0,
184
+ wri/gfw-data-api,627,
185
+ Breaka84/Spooq,16,
186
+ SourceWatcher/source-watcher-core,1,
187
+ gonwi/celo-etl,0,
188
+ imsanjoykb/Data-Science-Regular-Bootcamp,0,
189
+ patterns-app/patterns-devkit,5,
190
+ Indexical-Metrics-Measure-Advisory/watchmen-matryoshka-doll,0,
191
+ redis-field-engineering/redis-connect-dist,0,
192
+ stellar/stellar-etl,1158,
193
+ pran4ajith/spark-twitter-streaming,0,
194
+ amanjpro/greenish,0,
195
+ alegonz/otokuna,0,
196
+ prateeksawhney97/Disaster-Response-Pipeline,0,
197
+ ZDataHubAI/databricks-etl,0,
198
+ zazuko/xrm-csvw-workflow,77,
199
+ LukasLoeffler/data-graph,0,
200
+ Wathon/Data-Modeling-with-Postgres,0,
201
+ rjdscott/datatools,0,
202
+ Wittline/uber-expenses-tracking,0,
203
+ restarone/violet_rails,450,
204
+ razevedo1994/razv-data-engineering,0,
205
+ noleme/noleme-flow,79,
206
+ AuFeld/Data_Engineering_Projects,0,
207
+ josephmachado/bitcoinMonitor,2,
208
+ Wathon/data_engineering_with_python-track-datacamp,0,
209
+ badal-io/gcp-airflow-foundations,0,
210
+ okzapradhana/etl-flatfile-airflow,0,
211
+ KayvanShah1/thomasnet-scraper,0,
212
+ stemitom/postgres-pipeline,0,
213
+ giucris/yasp,0,
214
+ Genvekt/coincap_monitor,0,
215
+ thompson0012/PyEmits,0,
216
+ OP-TED/ted-rdf-conversion-pipeline,95,
217
+ risingwavelabs/risingwave,40000,
218
+ conductor-oss/python-sdk,570,
219
+ biglocalnews/prefect-flow-template,0,
220
+ Stefen-Taime/ETL-Data-Pipeline-RDBMS-TO-HDFS-using-Airflow-Apache-Sqoop-Spark-Postgres-and-Hive,0,
221
+ Stefen-Taime/Nifi-ETL-Data-Pipeline,0,
222
+ martandsingh/ApacheSpark,0,
223
+ systamental/cryptodatapy,0,
224
+ RADar-AZDelta/Rabbit-in-a-Blender,65,
225
+ DemevengDerrick/ETL-Connector-for-ODK,0,
226
+ mowbraysuburbs/Spotify_ETL,0,
227
+ polo2444172276/Udacity-Data-Engineering-Nanodegree,0,
228
+ IcarusDB/metal,0,
229
+ Open-Source-Legal/OpenContracts,28935,
230
+ jvalue/jayvee,630,
231
+ xzZero/IBM-Data-Engineering-Professional-Specialization-Coursera,0,
232
+ judeleonard/Prescriber-ETL-data-pipeline,0,
233
+ ahnazary/Finance,1599,
234
+ SoleyIo/dtflw,0,
235
+ jolares/example-gcp-dataform,0,
236
+ apache/hamilton,1766,
237
+ MTSWebServices/onetl,2930,
238
+ hifxit/dataligo,0,
239
+ nsphung/pyspark-template,0,
240
+ danhphan/trusted-data-pipeline,0,
241
+ Wazzabeee/pyspark-etl-twitter,0,
242
+ Johnkayode/spotify-etl,0,
243
+ wiredhut/wiredflow,0,
244
+ Sagar-Salvi/Data-Engineering-Project,0,
245
+ thangbuiq/covid19-etl-pipeline,0,
246
+ SorellaLabs/brontes,482,
247
+ airscholar/e2e-data-engineering,0,
248
+ ebonnal/streamable,2900,
249
+ mycelial/mycelial,0,
250
+ AnMol12499/Reddit-Analytics-Integration-Platform,0,
251
+ kaoutaar/end-to-end-etl-pipeline-jcdecaux-API,0,
252
+ AnMol12499/AWS-Youtube-Analytics,0,
253
+ pChitral/ETL-SEC-EDGAR-10-k-Filings,0,
254
+ phphoebe/Udacity-Data-Engineering-with-AWS,0,
255
+ koralium/flowtide,4925,
256
+ nogibjj/BallersDash,0,
257
+ prantoamt/etl-pipeline-runner,0,
258
+ netwerk-digitaal-erfgoed/ld-workbench,13,
259
+ sudoku-committer/dicom-etl-dagster-snowflake,0,
260
+ Noobzik/ATL-Datamart,0,
261
+ BayoAdejare/lightning-streams,0,
262
+ mrpbennett/etl-pipeline,0,
263
+ Zipstack/unstract-sdk,21,
264
+ pregismond/etl-data-pipelines-with-shell-airflow-kafka,0,
265
+ JensBender/youtube-channel-analytics,0,
266
+ fmelihh/recommendation-engine,0,
267
+ AbhishekGit-hash/Real-Time-Delta-Lake-with-Pyspark,0,
268
+ walleXD/ts-dag,0,
269
+ rohitkulkarni08/Azure-ETL-AmazonSalesAnalysis,0,
270
+ dieegogutierrez/Data-Engineering-Capstone-Project,0,
271
+ Wilmar3752/ETL_scraper,29,
272
+ Amatofrancesco99/ee-satellites,0,
273
+ ContextData/VectorETL,0,
274
+ aurcode/ankineitor,0,
275
+ ylem-co/ylem,4,
276
+ drisskhattabi6/Real-Time-Twitter-Sentiment-Analysis,0,
277
+ jchunk-io/jchunk,789,
278
+ aim-rsf/cprd-data-wrangle,0,
279
+ nathadriele/airflow-kpi-insertion-pipeline,0,
280
+ Edwardvaneechoud/Flowfile,6681,
281
+ realdatadriven/etlx,189,
282
+ yobix-ai/extractous-benchmarks,0,
283
+ dotflow-io/dotflow,805,
284
+ ronaldkanyepi/Log-Realtime-Analysis,0,
285
+ abrahamkoloboe27/Airflow-Pipeline-Dashboard-Compagnie-Aerienne,0,
286
+ Pravko-Solutions/FlashLearn,0,
287
+ unbody-io/unbody,51,
288
+ keboola/mcp-server,8167,
289
+ rat-nick/film-data-ingestion-pipeline,0,
290
+ datazip-inc/olake-ui,7042,
291
+ msantosjader/rfb-cnpj-etl,0,
292
+ wasimranacse/woocommerce-etl-pipeline,0,
293
+ urbanclimatefr/de-zoomcamp-2025-project,0,
294
+ AnyegaAlex/Sentiment-Driven-Stock-Price-Prediction-Using-News-Headlines,0,
295
+ Matrix030/SteamLensAI,0,
296
+ hocinemahni/ETL_OLAP_REPORTING_BI,0,
297
+ datacompose/datacompose,3,
298
+ vojay-dev/airflow-riot,0,
299
+ realdatadriven/central-set-go,130,
300
+ castengine/insert-tools,12,
301
+ LAMP-LUCAS/AutoSINAPI,32,
302
+ marciok/gust,396,
303
+ wp-labs/warp-parse,1632,
304
+ hantablack9/BoardGameGeek-Data-Extractor,25,
305
+ enesgulerdev/hm-fashion-recommender,216,
306
+ carlosacchi/databricks-dab-lab,0,
307
+ shahidmalik4/dbt-airflow-data-pipeline,0,
308
+ puckel/docker-airflow,0,
309
+ rjurney/Agile_Data_Code_2,42,
310
+ LREN-CHUV/ansible-airflow,0,
311
+ mozilla/telemetry-airflow,3,
312
+ infOpen/ansible-role-airflow,1,
313
+ CityOfPhiladelphia/phila-airflow,0,
314
+ hgrif/airflow-tutorial,0,
315
+ dsaidgovsg/airflow-pipeline,3,
316
+ rssanders3/airflow-spark-operator-plugin,0,
317
+ teamclairvoyant/apache-airflow-cloudera-csd,0,
318
+ LREN-CHUV/airflow-imaging-plugins,0,
319
+ argoproj/argo-workflows,31955,
320
+ mikeghen/airflow-tutorial,0,
321
+ idealista/airflow-role,0,
322
+ mdh266/AirflowDataPipeline,0,
323
+ sherlockjjj/T-Watch,0,
324
+ Shinichi-Nakagawa/airflow-docker,33,
325
+ mattvonrocketstein/airflow-ubuntu-ansible-terraform,0,
326
+ nicor88/aws-ecs-airflow,0,
327
+ teamclairvoyant/airflow-plugins,0,
328
+ Sardhendu/PropertyClassification,0,
329
+ unruly/terraform-aws-airflow,0,
330
+ reljicd/ml-airflow,0,
331
+ TomLous/meetup-spark-airflow-demo,0,
332
+ BlinkenOSA/workflows,0,
333
+ Barski-lab/biowardrobe-airflow-analysis,0,
334
+ epoch8/airflow-exporter,150,
335
+ chandulal/airflow-testing,0,
336
+ jgoerner/data-science-stack-cookiecutter,0,
337
+ ananthdurai/airflow-training,0,
338
+ dodoyuan/docker-airflow-datax,0,
339
+ pacuna/airflow-docker,0,
340
+ ssheremeta/airflow-cloudera,0,
341
+ astronomer/dag-factory,3494,
342
+ tkp-archive/paperboy,0,
343
+ kadnan/airflow-scraping,0,
344
+ kadnan/Airflow-Tutorial,0,
345
+ BasPH/airflow-rocket,10,
346
+ jksinghpro/docker-airflow,0,
347
+ dushyantkhosla/airflow4ds,0,
348
+ Aiscalate/aiscalator,0,
349
+ apache/dolphinscheduler,28576,
350
+ godatadriven/whirl,23,
351
+ nareshk1290/Udacity-Data-Engineering,0,
352
+ apache/airflow-site,2152,
353
+ PowerDataHub/terraform-aws-airflow,0,
354
+ narayave/Insight-GDELT-Feed,0,
355
+ dwallace0723/dbt-cloud-plugin,0,
356
+ jgoerner/beyond-jupyter-mooc,0,
357
+ andreax79/airflow-gitlab-webhook,0,
358
+ chuqiaoshen/Git-Influencer,0,
359
+ nikkatalnikov/bigkube,0,
360
+ petedannemann/airflow-terraform,0,
361
+ knowsuchagency/docker-compose-airflow,0,
362
+ octo-technology/ddui,0,
363
+ uptake/airflow-api,0,
364
+ tulibraries/ansible-role-airflow,134,
365
+ DanielMorales9/airflow-prometheus-pushgateway,0,
366
+ icoxfog417/airflow-ml-pipeline,0,
367
+ andreax79/airflow-code-editor,219,
368
+ xnuinside/airflow_in_docker_compose,0,
369
+ BenSchr/Udacity-Data-Engineering-Projects,0,
370
+ shlin168/airflow-event-plugins,0,
371
+ polakowo/yelp-3nf,0,
372
+ Rajsingh92/MUST_HAVE_SKILLS,0,
373
+ lithops-cloud/airflow-plugin,0,
374
+ petedannemann/aws-batch-demo,0,
375
+ ericdaat/data-stack,0,
376
+ UtrechtUniversity/getOldTweets-Airflow,0,
377
+ garretthoffman/deploying_data_science_apps,0,
378
+ shawnzhu/airflow-on-k8s,0,
379
+ ptariche/airflow-ts,0,
380
+ gfelot/DEND-Data_Pipeline_Airflow,0,
381
+ duyet/airflow-docker-compose,0,
382
+ WeBankFinTech/DataSphereStudio,457,
383
+ elyra-ai/elyra,1534,
384
+ bryzgaloff/airflow-clickhouse-plugin,150,
385
+ qubole/afctl,0,
386
+ MBKraus/incremental_training,0,
387
+ shravan-kuchkula/udacity-data-eng-proj-1,0,
388
+ fristonio/xene,0,
389
+ stwind/airflow-on-kubernetes,0,
390
+ The-Academic-Observatory/observatory-platform,54,
391
+ gdoumenc/coworks,4,
392
+ brfulu/us-accidents-data-engineering,0,
393
+ brfulu/airflow-data-pipeline,0,
394
+ snithish/tpc-di_benchmark,0,
395
+ mpolatcan/airflow-docker,0,
396
+ odahu/odahu-airflow-plugin,0,
397
+ LinYuMingBejing/DataPipeline,0,
398
+ alanchn31/Data-Engineering-Projects,0,
399
+ fieldryand/goflow,0,
400
+ astronomer/airflow-chart,745,
401
+ pipeline-tools/gusty,32,
402
+ kroudir/Data-Engineer-Nanodegree-Projects-Udacity,0,
403
+ konosp/dbt-airflow-docker-compose,0,
404
+ scribd/objinsync,7,
405
+ domenp/aircal,0,
406
+ LamaAni/KubernetesJobOperator,0,
407
+ damavis/airflow-pentaho-plugin,3,
408
+ konosp/dbt-on-airflow,0,
409
+ ipeluffo/airflow-on-kubernetes,8,
410
+ mrhallak/Coronalytics,0,
411
+ bdnf/BigData-Engineering-Projects,0,
412
+ kudeh/udacity-dend-capstone,0,
413
+ chck/ml-management-tools,0,
414
+ damklis/DataEngineeringProject,0,
415
+ josephmachado/beginner_de_project,6,
416
+ apache/airflow-client-python,466,
417
+ feluelle/airflow-diagrams,236,
418
+ apache/airflow-client-go,4,
419
+ andresionek91/airflow-autoscaling-ecs,0,
420
+ jmeisele/ml-ops,0,
421
+ sungchun12/airflow-toolkit,0,
422
+ manuel-lang/Data-Engineering-Nanodegree,0,
423
+ dmlogv/airflow-tutorial,0,
424
+ Ryan-Miao/airflow-console,0,
425
+ dataength/automating-your-data-pipeline-with-apache-airflow,0,
426
+ datopian/aircan,42,
427
+ rayyan17/jobAnalytics_and_search,0,
428
+ douban/helpdesk,101,
429
+ rahul765/Machine-Learning-Pipelines,0,
430
+ matsudan/airflow-dag-examples,31,
431
+ vjgpt/twitter-pipeline,0,
432
+ zbrookle/avionix_airflow,0,
433
+ Pathairush/data_engineering_nanodegree,0,
434
+ senzelden/twitter_data_pipeline,0,
435
+ naderAsadi/Udacity-Data-Engineering-Projects,0,
436
+ angadsingh/airflow-ditto,7,
437
+ angadsingh/airflow-hdinsight,0,
438
+ hudsonmendes/nanodataeng-capstone,0,
439
+ abhishek-ch/around-dataengineering,0,
440
+ airflow-helm/charts,7,
441
+ great-expectations/airflow-provider-great-expectations,1327,
442
+ marcosmarxm/airflow-testing-ci-workflow,0,
443
+ aws-samples/dataops-platform-airflow-dbt,28,
444
+ garystafford/aws-airflow-demo,0,
445
+ elasticlabs/airflow-jupyter-docker-compose,0,
446
+ nishakanthiA/Airflow-Docker,0,
447
+ jayamanikharyono/airflow-dag-action,110,
448
+ skhatri/airflow-by-example,0,
449
+ feluelle/finance-data-builder,0,
450
+ alanchn31/Loan-Default-Prediction,0,
451
+ qunomon/qunomon,1,
452
+ ThunderFly-aerospace/TFSLOT01,0,
453
+ yu-iskw/dbt-airflow-macros,115,
454
+ DanielDaCosta/airflow-ml-prediction,0,
455
+ fcaylus/airflow-grpc-starter,0,
456
+ badubizzle/ex_dag,17,
457
+ JanMarcelKezmann/Apache-Airflow-Beam-TensorFlow-Examples,0,
458
+ andreizolotarev/MLOps,0,
459
+ MrEcco/kubernetes-airflow-ide,0,
460
+ raystack/optimus,0,
461
+ meta-pytorch/torchx,11361,
462
+ coder2j/airflow-docker,0,
463
+ GoogleCloudPlatform/public-datasets-pipelines,387,
464
+ datacamp/viewflow,0,
465
+ blockchain-etl/polygon-etl,0,
466
+ marclamberti/docker-airflow,0,
467
+ gestaogovbr/FastETL,90,
468
+ ohadmata/simple-dag-editor,0,
469
+ sergio11/lyric_wave_architecture,0,
470
+ elyra-ai/pipeline-editor,289,
471
+ anilkulkarni87/airflow-docker,0,
472
+ typhoon-data-org/typhoon-orchestrator,0,
473
+ jmeisele/ml-ops-kafka,0,
474
+ getindata/kedro-airflow-k8s,0,
475
+ zhujun98/data-engineering,0,
476
+ onceiwasadev/aws-mwaa-terraform,0,
477
+ anovv/svoe,0,
478
+ hightouchio/airflow-provider-hightouch,0,
479
+ sarit-si/docker-airflow-pdi-01,0,
480
+ onceiwasadev/aws-mwaa-terraform-private,0,
481
+ Guilherme-B/manifold,0,
482
+ Pathairush/airflow_hive_spark_sqoop,0,
483
+ bostspb/etl,0,
484
+ mxaviersmp/spotify-tracker,0,
485
+ jasondavindev/open-dataplatform,0,
486
+ Srushti104/Big-data-systems,0,
487
+ sarit-si/docker-airflow-pdi-02,0,
488
+ dataength/intro-to-airflow,0,
489
+ OBenner/data-engineering-interview-questions,10,
490
+ tomasfarias/airflow-dbt-python,203,
491
+ astronomer/astronomer-providers,1230,
492
+ coderxio/sagerx,32,
493
+ cnstlungu/portable-data-stack-airflow,0,
494
+ heumsi/apache-airflow-tutorials-for-beginner,0,
495
+ ismaildawoodjee/GreatEx,0,
496
+ himewel/cartolafc,0,
497
+ bluishglc/serverless-datalake-example,0,
498
+ gabapcia/aletheia,0,
499
+ ryanchao2012/airfly,26,
500
+ anr007/airflow-xtended-api,0,
501
+ aws-samples/mwaa-rbac-task,26,
502
+ anthonywong611/Batch-ETL-with-AWS-EMR-and-MWAA,0,
503
+ paulf-999/airflow_templates,0,
504
+ umitkacar/awesome-mlops,0,
505
+ cheat-tos/serving,0,
506
+ MTES-MCT/sparte,2948,
507
+ write4alive/Data-Pipelines-with-Apache-Airflow,0,
508
+ andreax79/airflow-provider-xlsx,0,
509
+ okzapradhana/cloud-flower,0,
510
+ gzilles/airflow_etl,0,
511
+ Anant/example-cassandra-etl-with-airflow-and-spark,0,
512
+ garystafford/tickit-data-lake-demo,0,
513
+ sungchun12/airflow-dbt-cloud,0,
514
+ svan0/anime_recommendation_system,0,
515
+ ismaildawoodjee/aws-data-pipeline,0,
516
+ itinycheng/flink-platform-backend,674,
517
+ camposvinicius/aws-etl,0,
518
+ slve/dbt-github-workflow,0,
519
+ profcomff/dwh-pipelines,319,
520
+ camposvinicius/gcp-etl,0,
521
+ NicoloAlbanese/airflow-ml-pipeline-mvp,0,
522
+ WhaleOps/air2phin,0,
523
+ theeye-io-team/theeye-supervisor,0,
524
+ dmitry-brazhenko/airflow_tutorial,0,
525
+ townim-faisal/MLOps-Basic-Pipeline,0,
526
+ pjazdzyk/hvac-engine,5,
527
+ arthurtuio/airflow-jinja-yaml-framework,0,
528
+ bereketkibru/Data_engineering_sensor_data,0,
529
+ mehroosali/s3-redshift-batch-etl-pipeline,0,
530
+ sarathchandrikak/Data-Projects,0,
531
+ crate/cratedb-airflow-tutorial,246,
532
+ ankurchavda/streamify,0,
533
+ GoogleCloudPlatform/cortex-data-foundation,111,
534
+ feluelle/airflint,168,
535
+ caoergou/airflow-extended-api-plugin,0,
536
+ google/grizzly,120,
537
+ hankehly/deploy-airflow-on-ecs-fargate,0,
538
+ DatacollectorVN/Airflow-Tutorial,0,
539
+ datarobot/airflow-provider-datarobot,7,
540
+ nialloriordan/airbyte-airflow-scraper,0,
541
+ debussy-labs/debussy_concert,0,
542
+ MarcosMJD/ghcn-d,0,
543
+ devopscorner/terraform-infra,820,
544
+ dnguyenngoc/real-time-analytic,0,
545
+ albincorreya/ml-training-airflow-mlflow-example,0,
546
+ pyjaime/docker-airflow-spark,0,
547
+ lucaspfigueiredo/elt-pipeline,0,
548
+ zacharyt-cs/reddit-data-engineering,0,
549
+ Speccy-Rom/SpeccyTV,0,
550
+ chrischow/open_options_chains,0,
551
+ ankurchavda/data-engineering-zoomcamp,0,
552
+ FIUBA-Posgrado-Inteligencia-Artificial/aprendizaje_maquina_II,0,
553
+ HoracioSoldman/batch-processing-on-aws,0,
554
+ himewel/covid19retail,0,
555
+ alias454/sec-airflow-ingester,0,
556
+ lsjsj92/airflow_tutorial,0,
557
+ ec-jrc/SMDRM,0,
558
+ 094459/blogpost-airflow-hybrid,0,
559
+ Mikma03/DevOps-MLOps,0,
560
+ finloop/airflow-postgres-superset-on-docker,0,
561
+ devopscorner/iac-terraform-emr,820,
562
+ melwinmpk/PizzaOrders_DataPipeline,0,
563
+ mk-hasan/Dockerized-Airflow-Spark,0,
564
+ Booss3my/Indeed_scraper,0,
565
+ OLAMIDE100/Data-Engineering-Project,0,
566
+ toludaree/dezoomcamp-project,0,
567
+ GokuMohandas/data-engineering,0,
568
+ gmyrianthous/dbt-airflow,218,
569
+ MagnivOrg/magniv-core,0,
570
+ aws-ia/terraform-aws-mwaa,28,
571
+ ibrahim-Sobh/heart_stroke_prediction,0,
572
+ IBM/ada,2,
573
+ jackgisby/tfl-bikes-data-pipeline,0,
574
+ jackmleitch/StravaDataPipline,0,
575
+ snjypl/airflow-provider-grafana-loki,0,
576
+ apache/dolphinscheduler-operator,0,
577
+ andrejnevesjr/airflow-spark-minio-postgres,0,
578
+ VicenteYago/steam-data-engineering,0,
579
+ riccardotommasini/imkg,0,
580
+ luchonaveiro/open-source-data-stack,0,
581
+ luchonaveiro/real-estate-prices-etl,0,
582
+ shahparth0007/Big-Data-Systems-Intelligence-Analytics-Labs-Summer-2022,0,
583
+ seblum/mlops-engineering-book,0,
584
+ GuinsooLab/sheenflow,17,
585
+ cyoung43/airflow-demo,0,
586
+ Nerdward/batch_gh_archive,0,
587
+ opendatahub-io-contrib/airflow-on-openshift,0,
588
+ cmigpereira/data-engineering-zoomcamp-project,0,
589
+ campolloram/my-notes,0,
590
+ BinariesGoalls/Udacity-Data-Engineering-Nanodegree,0,
591
+ anilans029/Forecasting-Backorders-In-Inventory,0,
592
+ Elkinmt19/airflow-master,0,
593
+ astronomer/astronomer-cosmos,14366,
594
+ ris-tlp/audiophile-e2e-pipeline,0,
595
+ mrugankray/Big-Data-Cluster,0,
596
+ boostcampaitech4lv23recsys1/final-project-level3-recsys-01,0,
597
+ dogukannulu/streaming_data_processing,0,
598
+ calbergs/spotify-api,6,
599
+ Deffro/MLOps,0,
600
+ Nathnael12/Datawarehouse,0,
601
+ astronomer/airflow-provider-fivetran-async,524,
602
+ rafik-rahoui/End-to-end-data-enginnerring-project,0,
603
+ fabioba/mlops-architecture,0,
604
+ GoogleCloudPlatform/dataproc-scala-examples,8,
605
+ locnd-172/book-product-data-pipeline-project,0,
606
+ MattTriano/analytics_data_where_house,0,
607
+ degagawolde/data-warehouse-dbt-airflow-postgress,0,
608
+ aws-samples/cloud-native-airflow-solution-on-amazon-eks,25,
609
+ phatnguyen080401/real-estate-sale-analytics,0,
610
+ tensor365/AIRFLOW-QLIKSENSE-CLOUD,0,
611
+ khushal2405/ETL-pipeline-using-Airflow-and-AWS-EMR,0,
612
+ iusztinpaul/energy-forecasting,0,
613
+ cubefs/compass,0,
614
+ Tauffer-Consulting/domino,2,
615
+ TJaniF/airflow-elt-blueprint,0,
616
+ iobruno/data-engineering-labs,28,
617
+ anastasiia-p/airflow-ml,0,
618
+ dogukannulu/csv_extract_airflow_docker,0,
619
+ andrewm4894/airflow-provider-anomaly-detection,0,
620
+ Atharva-Phatak/shopme,0,
621
+ TJaniF/airflow-kafka-quickstart,0,
622
+ Jithsaavvy/Sentiment-analysis-from-MLOps-paradigm,0,
623
+ airflow-laminar/airflow-supervisor,609,
624
+ monikaglazz/Data_Engineering_with_Python,0,
625
+ abeltavares/MarketPipe,0,
626
+ carteakey/cinemattr-db,0,
627
+ rgiosa10/crypto-pricing-project,0,
628
+ piyush-an/NYC-Restaurant-Inspection,0,
629
+ tosun-si/teams-league-airflow-elt,0,
630
+ PJGaetan/airflow-cli,0,
631
+ thcidale0808/canarypy,0,
632
+ PierreC1024/airflow-provider-bigquery-reservation,0,
633
+ astronomer/ask-astro,41,
634
+ star3am/hashiqube,27,
635
+ data-burst/airflow-git-sync,14,
636
+ 1ambda/lakehouse,0,
637
+ boostcampaitech5/LawBot-Online-Legal-Advice-LLM-Service,0,
638
+ luatnc87/modern-data-warehouse-modeling-and-data-quality-with-dbt-openmetadata,0,
639
+ harrydevforlife/building-lakehouse,0,
640
+ dogukannulu/crypto_api_kafka_airflow_streaming,0,
641
+ fpgmaas/stream-iot,0,
642
+ LoveNui/ETL-with-AWS-EMR-and-MWAA,0,
643
+ Joffreybvn/airflow-dag-builder,0,
644
+ LoveNui/DataEngineering-Capstone-Project,0,
645
+ RiadBensalem/E-commerce-Sales-Analysis-Pipeline,0,
646
+ VICIWUOHA/airflow-dbt-magic,0,
647
+ LoveNui/EMR-AWS-APACHE-SPARK,0,
648
+ doublecloud/terraform-provider-doublecloud,0,
649
+ vladyslavyaloveha/etl_platform,1,
650
+ Dina-Hosny/ETL-Data-Pipeline-using-AirFlow,0,
651
+ jumpingchu/Airflow-Course,0,
652
+ jl178/airlift,73,
653
+ profcomff/dwh-definitions,176,
654
+ LaeekAhmed/nyc-taxi-data-analytics,0,
655
+ scottypate/airflow-aws,0,
656
+ profcomff/dwh-airflow,17,
657
+ tuanai-vireox/dataplatform-stack,0,
658
+ dogukannulu/airflow_kafka_cassandra_mongodb,0,
659
+ thepipelinetool/thepipelinetool,0,
660
+ chayansraj/Data-Pipeline-with-dbt-using-Airflow-on-GCP,0,
661
+ Thomas-George-T/Ecommerce-Data-MLOps,0,
662
+ GK-Consulting/terraform-provider-astronomer,0,
663
+ Longwinter93/DataEngineeringProjects,0,
664
+ mathewsrc/ETL-Chicago-Cafe-Permits,0,
665
+ vee-huyvunguyen/airflow-single-server,0,
666
+ AhmetFurkanDEMIR/airflow-spark-kafka-example,0,
667
+ prasadanilmore/Flask-Airflow-ETL,0,
668
+ Toloka/dbt-af,267,
669
+ jomariya23156/sales-forecast-mlops-at-scale,0,
670
+ treebeardtech/kubeflow-bootstrap,0,
671
+ shantanukhond/YT-Assets,0,
672
+ Dorianteffo/modern-data-platform,0,
673
+ hussein-awala/spark-on-k8s,136,
674
+ bylethquant/simple-data-stack,0,
675
+ JuliuszB12/LSTM_Attention_redeployment_for_yahoo_stock_data,0,
676
+ lealre/etl-airflow,0,
677
+ airflow-laminar/airflow-config,949,
678
+ vojay-dev/sc2-data-pipeline,0,
679
+ ritesh-ojha/Data-Engineering,0,
680
+ aws-samples/mwaa-disaster-recovery,114,
681
+ IsmaelMiranda11/inflation-data-model,2,
682
+ mykkelol/netsuite-data-pipeline,0,
683
+ SergeySenigov/data-engineer-practicum-portfolio,0,
684
+ PedroCozzati/pipeline-airflow-etl-linkedin,0,
685
+ aayomide/crypto_analytics_engineering,0,
686
+ erogluegemen/Earthquake-Emergency-Response-Robots,0,
687
+ afranzi/mini-data-platform,0,
688
+ jms0522/Medical-project,0,
689
+ airflow-laminar/airflow-common,580,
690
+ Shubhmeep/AWS-Airflow-DataIngestion-Pipeline,0,
691
+ VivekaAryan/Reddit-Data-Pipeline,0,
692
+ kadreio/relativistic,0,
693
+ ezhkovskii/DWH,0,
694
+ salimt/Transfermarkt-ETL-and-LIVE-Scores,411,
695
+ Rahlir/mongo2pq,0,
696
+ jmoc3/ETL_with_Airflow,0,
697
+ stav121/apache-airflow-goodies,0,
698
+ trannhatnguyen2/NYC_Taxi_Data_Pipeline,0,
699
+ thanhENC/e2e-data-platform,0,
700
+ akarce/e2e-structured-streaming,0,
701
+ MTSWebServices/data-rentgen,5119,
702
+ astronomer/templates,360,
703
+ machphy/Real-Time-Cyber-Incident-Monitoring-and-Analysis-Tool,4,
704
+ sidhyaashu/MLOps-End-To-End-Project,0,
705
+ trannhatnguyen2/streaming_data_processing,0,
706
+ airflow-laminar/airflow-ha,461,
707
+ tranthe170/NYC-Taxi-pipeline,0,
708
+ m1racoli/airflow-memray,1,
709
+ airflow-laminar/airflow-priority,570,
710
+ kiangkiangkiang/Machine-Learning-Model-Serving,0,
711
+ akarce/RedditDataPipeline,0,
712
+ astronomer/astro-provider-anyscale,452,
713
+ Ren294/Covid-Data-Process,0,
714
+ f-lab-edu/league-of-legends-data-solution,0,
715
+ hhtrieu0108/Ohitv_End_To_End_Project,0,
716
+ tsffarias/LiftOff_Data,1,
717
+ ManuelGuerra1987/data-engineering-zoomcamp-notes,0,
718
+ sanchitvj/sports_betting_analytics_engine,0,
719
+ AlvaroCavalcante/airflow-parse-bench,24,
720
+ lixx21/data-engineer-christmas-data,0,
721
+ BusySloths/mlox,465,
722
+ airflow-laminar/airflow-pydantic,519,
723
+ mahdi-eth/crypto-pipeline-airflow,0,
724
+ Mairondc21/dbt_az_usuarios,0,
725
+ lixx21/airflow-dbt-gcp,0,
726
+ liuzheng/airflow-ansible-provider,1,
727
+ airflow-laminar/airflow-balancer,736,
728
+ chiragsoni81245/dagger,0,
729
+ hoangsonww/End-to-End-Data-Pipeline,37,
730
+ claude89757/wechat-on-airflow,0,
731
+ abhishekbhakat/airflow-mcp-server,22,
732
+ hoangsonww/Customizable-AI-Chatbot,55,
733
+ aeonasoft/audioflow,0,
734
+ vuhuusy/data-lakehouse-platform,0,
735
+ fblettner/liberty,13,
736
+ goamegah/flowstate,0,
737
+ rahulsamant37/FraudDetection,0,
738
+ Data-Bishop/Team5-BuildItAll-Data-Platform,84,
739
+ josephmachado/data_engineering_for_beginners_code,0,
740
+ simovilab/databus-flow,0,
741
+ buun-ch/buun-stack,0,
742
+ jagadeshchilla/MLOPS,0,
743
+ rajat116/github-anomaly-project,44,
744
+ SoheilGtex/finance-data-pipelines,0,
745
+ kajinmo/airflow-localstack,0,
746
+ BiranSama/ReNovel-AI,0,
747
+ abeltavares/batch-data-pipeline,0,
748
+ rodmena-limited/stabilize,11,
749
+ T-Sunm/rag-ops,7,
750
+ rexleimo/agno-Go,61,
751
+ deaneeth/telco-churn-mlops-pipeline,99,
752
+ vinitg96/elt-data-lakehouse,0,
753
+ MinhKhoi3104/aws-end-to-end-data-lakehouse-analytics-platform,0,
754
+ ChahiriAbderrahmane/modern-data-stack-nyc-taxi,0,
755
+ Rayyan9477/MLOps-Pipeline-for-USD-Forecasting,1499,
756
+ vojay-dev/mineflow,0,
757
+ codsalah/SeismoFlow-Lambda-Architecture-System,91,
758
+ MauriceKuenicke/Confluence-RAG,0,
759
+ SINTEF/sensapp,108,
760
+ datajoint/datajoint-python,3536,
761
+ Flipkart/foxtrot,0,
762
+ mahmoudparsian/big-data-mapreduce-course,0,
763
+ xonsh/xonsh,10731,
764
+ apache/superset,40000,
765
+ redpanda-data/connect,12597,
766
+ erictleung/data-science,0,
767
+ aiguofer/gspread-pandas,1,
768
+ quiltdata/quilt,10053,
769
+ InsightDataScience/ansible-playbook,0,
770
+ great-expectations/great_expectations,28468,
771
+ datagouv/csv-detective,1,
772
+ uptake/uptasticsearch,45,
773
+ kantord/just-dashboard,30,
774
+ pyjanitor-devs/pyjanitor,1215,
775
+ dimajix/flowman,363,
776
+ noahgift/pai-aws,3,
777
+ ankiano/etl,0,
778
+ CornellDataScience/DataEngineering,0,
779
+ PrefectHQ/prefect,40000,
780
+ odpi/egeria,8680,
781
+ blockchain-etl/bitcoin-etl,0,
782
+ blockchain-etl/ethereum-etl-airflow,2,
783
+ swoop-inc/spark-alchemy,4,
784
+ CoxAutomotiveDataSolutions/waimak,0,
785
+ arthurprevot/yaetos,16,
786
+ HuemulSolutions/huemul-bigdatagovernance,0,
787
+ mycaule/reading-resources,0,
788
+ leemengtw/awesome-datascience-tw,0,
789
+ GokuMohandas/Made-With-ML,5,
790
+ feast-dev/feast,40000,
791
+ blockchain-etl/bitcoin-etl-airflow,0,
792
+ guidok91/spark-movies-etl,146,
793
+ nnthanh101/analytics,0,
794
+ brunocampos01/data-engineering,0,
795
+ blockchain-etl/eos-etl,0,
796
+ dataengi/spark-challenges,0,
797
+ davidolorundare/tempus_de_challenge,0,
798
+ andkret/Cookbook,53,
799
+ aws/aws-sdk-pandas,7444,
800
+ automaticmode/active_workflow,0,
801
+ mprove-io/mprove,57,
802
+ Flor91/Data-engineering-nanodegree,1,
803
+ blockchain-etl/bitcoin-etl-airflow-neo4j,0,
804
+ moj-analytical-services/pydbtools,60,
805
+ sanjeevai/data-modeling-postgres,0,
806
+ yennanliu/data_infra_repo,0,
807
+ treeverse/lakeFS,40000,
808
+ mlrun/mlrun,40000,
809
+ dbt-msft/dbt-sqlserver,264,
810
+ LGE-ARC-AdvancedAI/auptimizer,0,
811
+ CoxAutomotiveDataSolutions/spark-distcp,0,
812
+ dataintoresults/data-brewery,0,
813
+ carnival-data/carnival,7,
814
+ rdagumampan/yuniql,469,
815
+ hukenovs/coursera_ml_da_specialization,0,
816
+ Minyus/pipelinex,23,
817
+ backtick-se/cowait,0,
818
+ fpcarneiro/data-engineer-project,0,
819
+ bastienboutonnet/sheetwork,115,
820
+ irajhedayati/data-engineering,676,
821
+ Desbordante/desbordante-core,8415,
822
+ quintoandar/butterfree,69,
823
+ zero-one-group/geni,82,
824
+ kevin-hanselman/dud,0,
825
+ mrpaulandrew/procfwk,0,
826
+ 173TECH/sayn,21,
827
+ vietvudanh/vietlott-data,616,
828
+ arverma/TowardsDataEngineering,0,
829
+ ab180/lrmr,0,
830
+ shravan-kuchkula/udacity-data-eng-proj3,0,
831
+ adilkhash/apache-airflow-intro,0,
832
+ blockchain-etl/hedera-etl,1,
833
+ saturncloud/dask-saturn,1,
834
+ david-siqi-liu/sparklyclean,0,
835
+ metarank/metarank,406,
836
+ aws-solutions-library-samples/data-lakes-on-aws,66,
837
+ bmeares/Meerschaum,239,
838
+ pangeo-forge/pangeo-forge-recipes,927,
839
+ deordie/deordie-meetups,0,
840
+ DanilBaibak/ml-in-production,0,
841
+ preprocessy/preprocessy,69,
842
+ ludwigm/prefect-demo-flow,0,
843
+ soyelherein/pyspark-cicd-template,0,
844
+ treeverse/charts,257,
845
+ saturncloud/prefect-saturn,2,
846
+ rsanjabi/short-term-rentals-warehouse,0,
847
+ dathere/qsv,40000,
848
+ GokuMohandas/mlops-course,0,
849
+ sodadata/soda-core,2651,
850
+ ssp-data/practical-data-engineering,0,
851
+ bitpicky/dbt-sugar,115,
852
+ opendatadiscovery/opendatadiscovery-specification,0,
853
+ quintoandar/hive-metastore-client,3,
854
+ benthosdev/benthos-captain,0,
855
+ aspuru-guzik-group/funsies,0,
856
+ twosigma/uberjob,0,
857
+ K-G-PRAJWAL/Big-Data-Engineering,0,
858
+ jeantardelli/data-engineering-with-python,0,
859
+ debugger24/pyspark-test,0,
860
+ AlexIoannides/notes-and-demos,0,
861
+ JHLeeeMe/fake-data-pipeline,0,
862
+ seungwubaek/seungwubaek.github.io,0,
863
+ andrjas/data_check,4,
864
+ growthbook/growthbook,37690,
865
+ data-engineering-community/data-engineering-wiki,58,
866
+ snowflakedb/snowpark-python,40000,
867
+ galliaproject/gallia-core,0,
868
+ bytehub-ai/bytehub,0,
869
+ KentHsu/Udacity-Data-Engineering-Nanodgree,0,
870
+ obrunodelgado/camelboilerplate,0,
871
+ vitaliihonta/scala-ql,0,
872
+ deordie/deordie-digest,0,
873
+ treeverse/airflow-provider-lakeFS,3,
874
+ nnthanh101/Serverless-DataHub,0,
875
+ larribas/dagger,4,
876
+ guidok91/spark-structured-streaming-kafka,21,
877
+ imadmali/data-engineering,0,
878
+ dataplat/AzureDataPipelineTools,0,
879
+ longbuivan/airflow-spark-data-pipeline,0,
880
+ ihnokim/codepack,0,
881
+ evidence-dev/evidence,593,
882
+ meltano/meltano,11360,
883
+ opendatadiscovery/odd-platform,231,
884
+ synmetrix/synmetrix,59,
885
+ starburstdata/dbt-trino,283,
886
+ r05323028/eyes,0,
887
+ sodadata/soda-spark,1,
888
+ julian-west/e4ds-snippets,0,
889
+ odpi/egeria-docs,307,
890
+ nestauk/ojo_daps_mirror,0,
891
+ pipebase/pipebase,0,
892
+ nhsx/au-azure-databricks,0,
893
+ route1io/route1io-python-connectors,15,
894
+ DataTalksClub/data-engineering-zoomcamp,6,
895
+ running-elephant/datart,0,
896
+ Hiflylabs/awesome-dbt,14,
897
+ CloudWise-OpenSource/FlyFish,0,
898
+ bacalhau-project/bacalhau,2288,
899
+ insitro/redun,28,
900
+ DataEngineering-LATAM/Spark-StudyClub,0,
901
+ duyet/grant-rs,342,
902
+ jkminder/data2neo,0,
903
+ pipekit/talk-demos,0,
904
+ zkan/data-pipelines-with-airflow,0,
905
+ DataEngineering-LATAM/Airflow-StudyClub,0,
906
+ KOBeerose/Academic-Projects,0,
907
+ bitroot/coflux,362,
908
+ BarbaraJoebstl/data-engineering-nd,0,
909
+ brodyu/predicting-earnings-surprises,0,
910
+ pwenker/data-engineering,0,
911
+ pavanbadempet/pavanbadempet.github.io,438,
912
+ kh4r00n/Engenharia-de-Dados-_Projeto-Final-Soul-Code-Academy,0,
913
+ Eventual-Inc/Daft,40000,
914
+ dlt-hub/dlt,28998,
915
+ hemansnation/AI-Engineer-Headquarters,0,
916
+ superstreamlabs/memphis,0,
917
+ bytewax/bytewax,70,
918
+ feathr-ai/feathr,0,
919
+ nordquant/complete-dbt-bootcamp-zero-to-hero,506,
920
+ datavane/datavines,83,
921
+ kelvins/awesome-dataops,7,
922
+ raptor-ml/raptor,10,
923
+ MileTwo/dagster-example-pipeline,0,
924
+ josephmachado/online_store,0,
925
+ Wittline/pyDag,0,
926
+ apicrafter/datacrafter,279,
927
+ wilson-mok/demo,0,
928
+ HenriqueDePaula12/data_engineer,0,
929
+ froukje/de-zoomcamp,0,
930
+ enspirit/monolens,0,
931
+ jofaval/tfm-iabd,0,
932
+ datalakehouse/dlh-salesforce-analytics-dbt,0,
933
+ microsoft/Functional-Validation-Testing-Spark-SQL,0,
934
+ masakhwe/Commitment-of-Traders-COT-Analytics,0,
935
+ unytics/bigfunctions,222,
936
+ ocademy-ai/machine-learning,0,
937
+ shauryashaurya/learn-data-munging,4,
938
+ anna-geller/prefect-streaming,0,
939
+ MartyC-137/Data-Engineering,0,
940
+ edanalytics/earthmover,41,
941
+ bbrewington/software-data-and-ai-tools,0,
942
+ zkan/dtc-data-engineering-zoomcamp-project,0,
943
+ zkan/swu-ds525,0,
944
+ ansilo-data/ansilo,0,
945
+ bizzyvinci/cosmos-etl,0,
946
+ caerbannogwhite/preludio,0,
947
+ samjbobb/mammoth,0,
948
+ sinanazem/data-engineer-roadmap,0,
949
+ ttariqaziz/data_science_cheat_sheets,0,
950
+ Besi-Switzerland-AG/qdvc,0,
951
+ hawkirk/scorecard_pipeline,0,
952
+ quixio/quix-streams,869,
953
+ orbitalapi/orbital,35,
954
+ alibaba/feathub,437,
955
+ adidas/lakehouse-engine,0,
956
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Associate-Questions,0,
957
+ anna-geller/prefect-dataplatform,0,
958
+ iesahin/xvc,136,
959
+ Pseudo-Lab/data-engineering-for-everybody,0,
960
+ minhadona/data_engineer_interview_challenges,0,
961
+ SuperCowPowers/workbench,2806,
962
+ gmyrianthous/dbt-dummy,0,
963
+ ai-forever/DataProcessingFramework,0,
964
+ Amrit-Hub/How-to-become-Data-Engineering-Essentials,0,
965
+ Lal4Tech/Data-Engineering-With-AWS,0,
966
+ khuyentran1401/prefect-alert,0,
967
+ MaxiDS/-Streaming_ETL_FastApi_Docker,0,
968
+ blitzkz23/final-project-end-to-end-banking-campaign-pipeline,0,
969
+ datacareer-guide/datacareer-guide.github.io,0,
970
+ mckraqs/dataride,0,
971
+ MelihGulum/Comprehensive-Data-Science-AI-Project-Portfolio,0,
972
+ cnstlungu/portable-data-stack-dagster,0,
973
+ benrutter/wimsey,24,
974
+ drshahizan/special-topic-data-engineering,0,
975
+ dlt-hub/verified-sources,1003,
976
+ delta-incubator/delta-sharing-rs,0,
977
+ thongekchakrit/ChartAI,0,
978
+ ddotta/cookbook-rpolars,91,
979
+ nodestream-proj/nodestream,481,
980
+ rvanasa/pandas-gpt,0,
981
+ kestra-io/examples,109,
982
+ jordanvolz/lolpop,2,
983
+ Fozan-Talat/divvy-bikeshare-de-project,0,
984
+ ozkary/data-engineering-mta-turnstile,96,
985
+ zkan/data-engineering-bootcamp,0,
986
+ RyanEricLamb/data-engineering-bus-tracker,0,
987
+ NucleusEngineering/hack-your-pipe,0,
988
+ kyegomez/Athena-for-Search,0,
989
+ cottas-rdf/pycottas,4,
990
+ Arturomtz8/de-zoomcamp-project,0,
991
+ comitivaesperanca/data,0,
992
+ anna-geller/kestra-ci-cd,0,
993
+ ClusterlessHQ/clusterless,26,
994
+ PeteCastle/League-of-Legends-Analytics,0,
995
+ comitivaesperanca/backend,0,
996
+ Spratiher9/JumpSpark,0,
997
+ sanctum-black/blog,0,
998
+ prithvijitguha/flowrunner,0,
999
+ itsadityagupta/yelposphere,0,
1000
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,0,
1001
+ aabouzaid/modern-data-platform-poc,0,
1002
+ kkuznets/crypto-sentiment-data-pipeline,0,
1003
+ Sabareh/stock-price-prediction-spark-cassandra,0,
1004
+ adidas/lakehouse-engine-docs,8,
1005
+ Quantumics-AI/quantumics-opensource,0,
1006
+ sam-hatley/real-estate-data,0,
1007
+ lisallreiber/biketheft_berlin,0,
1008
+ portovep/dbt-testing-examples,147,
1009
+ sminerport/sminerport,8917,
1010
+ PeteCastle/2023-Data-Engineering-Zoomcamp,0,
1011
+ HCA97/Leauge-of-Legends-Challenger-Stats,0,
1012
+ bramvdklinkenberg/my_first_data_project,0,
1013
+ fmind/mlops-python-package,71,
1014
+ bitol-io/open-data-contract-standard,412,
1015
+ dgarnitz/vectorflow,0,
1016
+ Titan-Systems/titan,0,
1017
+ dagster-io/dagster-open-platform,446,
1018
+ dbt-labs/jaffle-shop,109,
1019
+ josephmachado/data_engineering_best_practices,0,
1020
+ unytics/airbyte_serverless,10,
1021
+ datachecks/dcs-core,444,
1022
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Professional-Questions,0,
1023
+ samber/awesome-olap,111,
1024
+ rupurt/odbc-scanner-duckdb-extension,0,
1025
+ devsgnr/breadroll,0,
1026
+ marimo-team/examples,71,
1027
+ criccomini/proto-schema-parser,31,
1028
+ prophecy-io/spark-ai,0,
1029
+ parmarsuraj99/signalslite,0,
1030
+ ovidiugiorgi/csv2opensearch,11,
1031
+ wednesday-solutions/Data-Engineering-Onboarding-Starter,0,
1032
+ davidvanegas2/iceberg-s3-terraform-glue,1,
1033
+ prrao87/pydantic-benchmarks,0,
1034
+ criccomini/pymetastore,15,
1035
+ ccao-data/data-architecture,6889,
1036
+ dominictarro/prefecto,0,
1037
+ Alarchemn/F2-Data-Pipeline,0,
1038
+ ClusterlessHQ/tessellate,23,
1039
+ wharfie/wharfie,74,
1040
+ opensnowcat/opensnowcat-rdb-loader,12,
1041
+ SA01/dbt-tutorial,0,
1042
+ jblanco89/MLOps_zoomcamp_course,0,
1043
+ dbt-labs/jaffle-shop-mesh-finance,0,
1044
+ wednesday-solutions/aws-glue-jupyter-notebook-starter,0,
1045
+ ministryofjustice/data-and-analytics-engineering,39,
1046
+ lakehq/sail,32523,
1047
+ Multiwoven/multiwoven,1585,
1048
+ NeumTry/NeumAI,0,
1049
+ DataRecce/recce,10977,
1050
+ josephmachado/efficient_data_processing_spark,73,
1051
+ kanton-bern/hellodata-be,4321,
1052
+ DidactHQ/didact,0,
1053
+ coder2j/pyspark-tutorial,0,
1054
+ HamzaG737/data-engineering-project,0,
1055
+ vedanthv/data-engineering-portfolio,0,
1056
+ andre-salvati/databricks-template,59,
1057
+ DrDroidLab/kenobi,0,
1058
+ unit-mesh/unit-gen,0,
1059
+ thedataquarry/rustinpieces,153,
1060
+ airscholar/FootballDataEngineering,0,
1061
+ ml6team/fondant-usecase-controlnet,0,
1062
+ ml6team/fondant-usecase-RAG,0,
1063
+ xuwenyihust/PawMark,0,
1064
+ aivanzhang/panda_patrol,0,
1065
+ iBridges-for-iRODS/iBridges,1244,
1066
+ AhmetFurkanDEMIR/Flink-Example,0,
1067
+ n0rdy/pippin,14,
1068
+ lexy-ai/lexy,27,
1069
+ MammothPHP/WoollyM,149,
1070
+ edgBR/delta-lake-polars,80,
1071
+ ahammadmejbah/Artificial-Intelligence-Research-and-Development-Projects,0,
1072
+ AhmetFurkanDEMIR/Trendyol-Data-Engineering-Technical-Case-Study,0,
1073
+ AnanthaRajuC/DataPractitioner,0,
1074
+ prefeitura-rio/pipelines_rj_smtr,32146,
1075
+ ferxohn/pyspark_with_databricks,0,
1076
+ Gowtham1729/folio-feed,0,
1077
+ wednesday-solutions/multi-cloud-etl-pipeline,0,
1078
+ ml6team/fondant-usecase-filter-creative-commons,0,
1079
+ Netflix/maestro,304,
1080
+ Nike-Inc/koheesio,686,
1081
+ data-burst/data-engineering-roadmap,0,
1082
+ Snowflake-Labs/snowflake-demo-notebooks,0,
1083
+ airbytehq/PyAirbyte,13608,
1084
+ DataKitchen/data-observability-installer,103,
1085
+ DataKitchen/dataops-testgen,84,
1086
+ opensnowcat/opensnowcat-collector,349,
1087
+ cnstlungu/portable-data-stack-mage,0,
1088
+ DataKitchen/dataops-observability,30,
1089
+ muyu42/DataS,0,
1090
+ silverton-io/snowflakecli,0,
1091
+ demml/opsml,4594,
1092
+ LexxaRRioo/rzv_data_engineering_series_s01e01,0,
1093
+ DataKitchen/dataops-observability-agents,0,
1094
+ opensnowcat/opensnowcat-enrich,206,
1095
+ vojay-dev/gemini-movie-detectives-api,0,
1096
+ skyffel/airbyte-connector-generator-poc,0,
1097
+ cre-dev/xml2db,202,
1098
+ data-prompt-query/dpq,0,
1099
+ airscholar/Kubernetes-For-DataEngineering,0,
1100
+ mage-ai/machine_learning,0,
1101
+ jaanli/american-community-survey,0,
1102
+ ryanrozich/snowflake-dbml-generator,0,
1103
+ cnstlungu/postcard-company-datamart,3,
1104
+ jackv-murray/lastfm-scrobble-analysis,0,
1105
+ VianneyMI/baker,0,
1106
+ mrpbennett/home-ops,274,
1107
+ untitled-data-company/dlt-rest-api-tutorial,0,
1108
+ dashmug/glue-utils,859,
1109
+ zhiweio/data-engineer-scripts,0,
1110
+ firelink-data/drive,0,
1111
+ data-burst/data-engineering-wiki,0,
1112
+ FearlessSolutions/engineering-practice-domains,0,
1113
+ Emilien-Foissotte/carburoam,828,
1114
+ MadeiraData/microsoft-data-engineers-club,0,
1115
+ Mvanhuffel/Sheets_to_Postgres_ETL_Pipeline,0,
1116
+ sungchun12/sqlmesh-demos,0,
1117
+ ilichDataEngineer/DigitalMarketingAnalysis-DataEngineerIO-CapstoneProject-DE-BTC2024,16,
1118
+ omhq/llmt,0,
1119
+ ramkumarpj/project-three,0,
1120
+ pyper-dev/pyper,0,
1121
+ risesoft-y9/DataFlow-Engine,0,
1122
+ apecloud/myduckserver,0,
1123
+ digitalghost-dev/poke-cli,562,
1124
+ ashish10alex/vscode-dataform-tools,182,
1125
+ bitol-io/open-data-product-standard,82,
1126
+ jayzern/dagster-mflix-demo,0,
1127
+ Sonnet-Scripts/sonnet-scripts,140,
1128
+ montara-io/dbt-command-center,1,
1129
+ Azure99/BlossomData,0,
1130
+ lapiceroazul4/Ingenieria-Datos-IA-Roadmap-UAO,0,
1131
+ pmgraham/datagrunt,230,
1132
+ DataForgeOpenAIHub/Steam-Sales-Analysis,2,
1133
+ nathadriele/DMS-missing-or-duplicate-data-validation-script,0,
1134
+ internetofwater/scheduler,1055,
1135
+ Romboost-Repo/PipeLogger,0,
1136
+ chonalchendo/football-data-warehouse,37,
1137
+ snowflakedb/snowpark-checkpoints,3884,
1138
+ longNguyen010203/ECommerce-ELT-Pipeline,0,
1139
+ amol-/datapyground,0,
1140
+ decodingai-magazine/second-brain-ai-assistant-course,11,
1141
+ DataBora/elusion,172,
1142
+ rush-db/rushdb,168,
1143
+ quantscious/finmlkit,90,
1144
+ vincentkoc/dexscraper,104,
1145
+ akmalsoliev/Validoopsie,264,
1146
+ RamiKrispin/pydata-ny-ga-workshop,17122,
1147
+ StabRise/spark-pdf,8,
1148
+ mattlianje/etl4s,560,
1149
+ Snowflake-Labs/emerging-solutions-toolbox,28,
1150
+ sspaeti/obsidian-note-taking-assistant,0,
1151
+ dagster-io/community-integrations,868,
1152
+ mrjsj/msfabricutils,36,
1153
+ astronomer/ebook-etl-elt,0,
1154
+ Menziess/slipstream-async,67,
1155
+ mattiasthalen/arcane-insight,0,
1156
+ tower/tower-cli,3811,
1157
+ Ganeshsivakumar/langchain-beam,56,
1158
+ stateful-y/kedro-dagster,1469,
1159
+ richban/opendata-stack-platform,59,
1160
+ peter115342/soccer-tracker-DE-project,38,
1161
+ sakkiii/apache-nifi-helm,22,
1162
+ sutro-sh/sutro,0,
1163
+ NembotJules/Cameroon-Air-Quality-Prediction,0,
1164
+ kellyjadams/spotify-data-analyze,6,
1165
+ mta-tech/seeknal,523,
1166
+ Data-Research-Analysis/data-research-analysis-platform,811,
1167
+ dinhanhthi/mooc-de,0,
1168
+ microsoft/azurekorea,122,
1169
+ bruin-data/setup-bruin,71,
1170
+ cocoindex-io/cocoindex,8179,
1171
+ dbt-labs/dbt-mcp,7590,
1172
+ lightfeed/extractor,274,
1173
+ edkreuk/FMD_FRAMEWORK,22,
1174
+ mattiasthalen/adventure-works,0,
1175
+ hyparam/icebird,182,
1176
+ sparkdq-community/sparkdq,258,
1177
+ sanspareilsmyn/parqv,0,
1178
+ memiiso/pydbzengine,260,
1179
+ mloda-ai/mloda,981,
1180
+ Noman654/dataengineer_prep,0,
1181
+ gurmeetsaran/sqltesting,1967,
1182
+ dain55788/ELT-Data-Pipeline,0,
1183
+ Magnus167/rustframe,649,
1184
+ GovHub-br/gov-hub,501,
1185
+ GovHub-br/data-application-gov-hub,250,
1186
+ davideganna/DataMorphers,47,
1187
+ claudiocmm/data_engineering_projects,0,
1188
+ trustedshops-public/schema2pyarrow,0,
1189
+ marianamartiyns/ChatBot-MunicipAI,0,
1190
+ chonalchendo/footcrawl,50,
1191
+ RustedBytes/audios-to-dataset,307,
1192
+ kkumyk/server-logs-daily-data-pipeline,0,
1193
+ projectcontinuum/continuum-platform-core,180,
1194
+ nathadriele/data-engineering-zoomcamp,0,
1195
+ DataBridgeTech/dbqctl,16,
1196
+ LTranData/data-platform,0,
1197
+ LexxaRRioo/rzv_de_shared_folder,0,
1198
+ pyladiesams/data-pipelines-with-dbtcore-snowflake-sep2025,1,
1199
+ husnusensoy/tt-bootcamp,0,
1200
+ alebgz-91/queens,1,
1201
+ fortiql/data-forge,0,
1202
+ khuyentran1401/production-ready-data-science-code,0,
1203
+ salimt/football-datasets,27,
1204
+ kay-ou/SimTradeData,0,
1205
+ GitBrincie212/ChronoGrapher,1385,
1206
+ aitrados/aitrados-api,0,
1207
+ Hazrat-Ali9/Data-Engineering,0,
1208
+ sspaeti/semantic-layer-duckdb,0,
1209
+ microsoft/unified-data-foundation-with-fabric-solution-accelerator,1033,
1210
+ dyneth02/Air-Quality-Trends-Analysis-Project,0,
1211
+ AndreaBozzo/dataprof,2994,
1212
+ vtsaplin/datatalk-cli,11,
1213
+ worldbank/OvertureLink-Data-Pipeline,154,
1214
+ Geobatpo07/datahut-duckhouse,5,
1215
+ jorvik-io/jorvik,162,
1216
+ sspaeti/clickhouse-modeling-rill-example,0,
1217
+ andrewruba/lilpipe,40,
1218
+ jeremylongshore/startaitools.com,221,
1219
+ cmgoffena13/etl-watcher,0,
1220
+ dlt-hub/dlt-mcp,115,
1221
+ firelink-sh/padder,170,
1222
+ databricks-industry-solutions/python-data-sources,219,
1223
+ yahia997/PavementEye,0,
1224
+ vbluuiza/aws-etl-netflix,0,
1225
+ NathanVuSwinburne/Structural-Defect-Detection-AI-for-Structural-Engineering,0,
1226
+ ruc-datalab/DeepAnalyze,0,
1227
+ getnao/nao,5559,
1228
+ Zleap-AI/SAG,0,
1229
+ Guepard-Corp/qwery-core,1083,
1230
+ aleksandarskrbic/khaos,67,
1231
+ sidequery/sidemantic,2290,
1232
+ PStarH/VisiLens,45,
1233
+ rasinmuhammed/misata,46,
1234
+ nnnkkk7/snowflake-emulator,180,
1235
+ taz4et/bitcoin-etl,0,
1236
+ seehiong/multi-agent-system-using-langgraph,0,
1237
+ mikevan666/opendataworks,1052,
1238
+ ssp-data/cloud-cost-analyzer,25,
1239
+ PatrickWiloak/cloud-data-ai-security-zero-to-hero,80,
1240
+ dannys-code-corner/incan,2420,
1241
+ khuyentran1401/codecut-blog,0,
1242
+ kodomonocch1/see_proto,105,
1243
+ vnvo/deltaforge,365,
1244
+ seehiong/autonomous-hdb-deepagents,0,
1245
+ limhaneul12/kafka-gov,116,
1246
+ osodevops/k2i,26,
1247
+ Mohith-akash/Global-News-Intel-Platform,5064,
1248
+ typedef-ai/fenic-examples,0,
1249
+ mag1cfrog/timeseries-table-format,604,
1250
+ hidagent/dataagent,0,
1251
+ fmind/da2a,0,
1252
+ eventvisor/eventvisor,81,
1253
+ sopho-tech/sopho,369,
1254
+ AndreaBozzo/Ceres,1034,
1255
+ valeriouberti/rigatoni,97,
1256
+ ez-cdc/dbmazz,260,
1257
+ MallamTeja/f1_models,157,
1258
+ granthjoshi01/AQI-Analysis-Project,0,
1259
+ olaflaitinen/Promethium,71,
1260
+ sidequery/dlt-iceberg,55,
1261
+ JB-Analytica/model2data,48,
1262
+ tmoore-prog/stock_market_pipeline,0,
1263
+ brandonhimpfen/awesome-data-engineering,7,
1264
+ cmgoffena13/fileloader,0,
1265
+ everycure-org/kedro-argo,797,
1266
+ sairam-s0/ActiveLabelingSystem,3,
1267
+ oluobiri/nba-hate-tracker,0,
1268
+ Greatdev666/IPEDS-Data-Warehouse,0,
1269
+ mrmcmullan/flycatcher,354,
1270
+ vmariiechko/databricks-bundle-template,26,
1271
+ simon-milata/data-tech-stats,0,
1272
+ Jasiri-App/datagpu,9,
1273
+ danieljhkim/local-data-platform,24,
1274
+ flipkart-incubator/spark-transformers,0,
1275
+ marcio-azevedo/fsharp-data-processing-pipeline,0,
1276
+ combust/mleap,37,
1277
+ giacbrd/SmartPipeline,0,
1278
+ aredier/chariots,0,
1279
+ smart-data-lake/smart-data-lake,691,
1280
+ tsdat/tsdat,163,
1281
+ bakdata/streams-explorer,5,
1282
+ RiveryIO/rivery_cli,11,
1283
+ elementary-data/elementary,6222,
1284
+ tuva-health/tuva,2131,
1285
+ elementary-data/dbt-data-reliability,3542,
1286
+ tuva-health/FHIR_inferno,0,
1287
+ tuva-health/medicare_cclf_connector,86,
1288
+ tuva-health/medicare_lds_connector,6,
1289
+ pathwaycom/pathway,2135,
1290
+ Unstructured-IO/unstructured,6672,
1291
+ tuva-health/demo,256,
1292
+ linkedin/Hoptimator,442,
1293
+ metaheed/kolle,0,
1294
+ tuva-health/provider,0,
1295
+ AiDAPT-A/VisArchPy,0,
1296
+ feldera/feldera,13039,
1297
+ bruin-data/bruin,28297,
1298
+ Galileo-Galilei/kedro-pandera,11,
1299
+ dataflint/spark,616,
1300
+ kiwicom/terraform-provider-montecarlo,79,
1301
+ unicef/magasin,42,
1302
+ amphi-ai/amphi-etl,5,
1303
+ Burla-Cloud/burla,122,
1304
+ mitdbg/palimpzest,590,
1305
+ ProyectoRespira/data_retriever,37,
1306
+ glassflow/cli,13,
1307
+ KayvanShah1/usc-dsci560-dspp-sp24,0,
1308
+ ucbepic/docetl,976,
1309
+ yobix-ai/extractous,2,
1310
+ StructuredLabs/preswald,156,
1311
+ OpenDCAI/DataFlow,1170,
1312
+ debezium/debezium-platform,3422,
1313
+ eschizoid/kpipe,671,
1314
+ pr1m8/haive-dataflow,12,
1315
+ exospherehost/runtime,7240,
1316
+ gorango/flowcraft,99,
1317
+ ImperialCollegeLondon/prefect-managedfiletransfer,992,
1318
+ lynxkite/lynxkite-2000,754,
1319
+ wingfoil-io/wingfoil,2598,
1320
+ KafScale/platform,986,
1321
+ krenalis/krenalis,802,
1322
+ snowplow/snowplow,3289,
1323
+ pydoit/doit,54,
1324
+ ooni/pipeline,0,
1325
+ apache/shardingsphere,38479,
1326
+ debezium/debezium,16884,
1327
+ unnati-xyz/scalable-data-science-platform,0,
1328
+ techmonad/spark-data-pipeline,0,
1329
+ ubisoft/mobydq,0,
1330
+ olirice/flupy,38,
1331
+ hiejulia/Data-pipeline-project,0,
1332
+ jay-johnson/network-pipeline,0,
1333
+ 1kbgz/tributary,126,
1334
+ rpj/rpi,0,
1335
+ yuchiu/today-news,0,
1336
+ tianqizzz/Tap-News,0,
1337
+ cognitree/kronos,0,
1338
+ reugn/go-streams,143,
1339
+ stephen29xie/tweet-streaming-data-pipeline,0,
1340
+ xuwenzhe/currency-analysis,0,
1341
+ tvdboom/ATOM,0,
1342
+ 1ambda/practical-data-pipeline,0,
1343
+ ilia-khaustov/batchout,0,
1344
+ tikal-fuseday/delta-architecture,0,
1345
+ akshitvjain/realtime-twitter-trends-analytics,0,
1346
+ joonan-lab/cwas,13,
1347
+ whylabs/whylogs,528,
1348
+ spotify/klio,410,
1349
+ snowplow/enrich,28,
1350
+ FAIRDataPipeline/rDataPipeline,0,
1351
+ vincentclaes/datajob,0,
1352
+ fremantle-industries/slurpee,0,
1353
+ aurelienmorgan/abnormal_vibrations_watchdog,0,
1354
+ FAIRDataPipeline/DataPipeline.jl,0,
1355
+ tejzpr/ordered-concurrently,0,
1356
+ flavienbwk/Pandemic-Knowledge,0,
1357
+ strmprivacy/cli,0,
1358
+ topher-lo/simple-data-workflow,0,
1359
+ sparkfish/augraphy,4,
1360
+ DataSQRL/sqrl,3095,
1361
+ snowplow/dbt-snowplow-web,6,
1362
+ criblpacks/cribl-syslog-input,0,
1363
+ criblpacks/cribl-knowledge-pack,0,
1364
+ teckkean/GTFS-Data-Pipeline-TfNSW-Bus,0,
1365
+ chnm/bom,65,
1366
+ kimtth/ds-pyspark-tika-text-extraction,0,
1367
+ AgnostiqHQ/covalent,1277,
1368
+ scribe-org/Scribe-Data,1282,
1369
+ vesoft-inc/nebula-exchange,209,
1370
+ instill-ai/cli,913,
1371
+ 1ambda/practical-data-pipeline-code,0,
1372
+ dagucloud/dagu,5743,
1373
+ InfuseAI/piperider,2,
1374
+ instill-ai/console,3470,
1375
+ AgnostiqHQ/covalent-slurm-plugin,56,
1376
+ GetFeedback/kahpp-oss,0,
1377
+ gizm00/oreilly_dataeng_book,0,
1378
+ AgnostiqHQ/covalent-ssh-plugin,112,
1379
+ Indexical-Metrics-Measure-Advisory/watchmen,2819,
1380
+ zsvoboda/ngods,0,
1381
+ AbsaOSS/pramen,661,
1382
+ ChildishGirl/serverless-data-pipeline,0,
1383
+ CaterinaBi/aicore-web-scraping-pipeline,0,
1384
+ cortega26/polla,1280,
1385
+ boostcampaitech4lv23cv1/final-project-level3-cv-01,0,
1386
+ z3z1ma/alto,0,
1387
+ BattGenie/battetl,0,
1388
+ AnthonyByansi/Azure-ETL-Pipeline,0,
1389
+ lfunderburk/fuel-electric-hybrid-vehicle-ml,0,
1390
+ chalk-ai/chalk-go,5074,
1391
+ hooopo/oh-my-github-pipeline,0,
1392
+ hooopo/repo-track-pipeline,0,
1393
+ gird-dev/gird,0,
1394
+ bookbot-kids/speechline,15,
1395
+ RihabFekii/wildfire-smoke-detector,0,
1396
+ ChildishGirl/glue-data-pipeline,0,
1397
+ datajuicer/data-juicer,5036,
1398
+ cbslneu/physioview,1,
1399
+ scribe-org/Scribe-Server,296,
1400
+ coinpaprika/cq-source-coinpaprika,1,
1401
+ mohidex/data-pipeline-on-gcp,0,
1402
+ superlinked/sie,98,
1403
+ xorq-labs/xorq,35698,
1404
+ airscholar/RedditDataEngineering,0,
1405
+ flowsynx/flowsynx,786,
1406
+ behnamyazdan/ecommerce_realtime_data_pipeline,0,
1407
+ PFund-Software-Ltd/pfeed,6,
1408
+ PkLavc/PkLavc.github.io,398,
1409
+ hellomaxime/data-platform-on-kubernetes,0,
1410
+ illuin-tech/data-pipeline,957,
1411
+ thadhutch/sports-quant,147,
1412
+ nathadriele/redshift-to-s3-unload-dag,0,
1413
+ kingabzpro/Data-Pipeline-with-Prefect,0,
1414
+ elastiflow/pipelines,262,
1415
+ Narius2030/Find-Similar-Vietnamese-Texts,0,
1416
+ datazip-inc/olake,21252,
1417
+ oldcorvus/dynapipeline,0,
1418
+ tracebloc/data-ingestors,316,
1419
+ eZWALT/eZAutoML,0,
1420
+ GoPlasmatic/dataflow-rs,79,
1421
+ Bruno-Furtado/cloud-cnpj,0,
1422
+ affaan-m/Sol-Onchain-Analyst,0,
1423
+ abrahamkoloboe27/E-Commerce-Data-Pipeline-And-Dashboard-With-Apache-Superset,4,
1424
+ ModelEngine-Group/DataMate,2317,
1425
+ Nonanti/PipeFlow,65,
1426
+ jacobwarren/social-media-ai-engineering-etl,0,
1427
+ withterm/term-guard,882,
1428
+ bogwi/sarpro,0,
1429
+ royjacobson/nf-python,54,
1430
+ DevDizzle/gammarips-engine,16,
1431
+ Kathan-max/RAG-Enhanced-Chatbot-with-LoRA-Fine-Tuning,0,
1432
+ markm39/dxsh,0,
1433
+ windsor-ai/dbt-facebook-big_query,0,
1434
+ lzjever/routilux,187,
1435
+ 3DCF-Labs/doc2dataset,0,
1436
+ caiopizzol/fipe-data-pipeline,31,
1437
+ keyhankamyar/TickVault,0,
1438
+ nshkrdotcom/flowstone,14,
1439
+ AmirhosseinHonardoust/Financial-Fraud-Risk-Engine,0,
1440
+ Laksh-star/competitive-intelligence,0,
1441
+ maciejkepa/ai-ml-in-practice,3,
1442
+ stiles/hangarbay,0,
1443
+ MoonyFringers/ladon,671,
1444
+ davidjosipovic/news-trend-analysis,409,
1445
+ ascrus/getl,0,
1446
+ dbt-labs/dbt-core,40000,
1447
+ apache/doris,40000,
1448
+ osalvador/ReplicaDB,1161,
1449
+ gouline/dbt-metabase,332,
1450
+ Datavault-UK/automate-dv,141,
1451
+ Matts966/alphasql,0,
1452
+ vishwapardeshi/NL_Parser_using_Spacy,0,
1453
+ slingdata-io/sling-cli,778,
1454
+ codeforkjeff/dbt-sqlite,6,
1455
+ andrewtavis/wikirepo,0,
1456
+ VulknData/eruptr,0,
1457
+ datafuel/DataPlatform_docker,0,
1458
+ bennyaustin/elt-framework,38,
1459
+ MeltanoLabs/tap-dbt,630,
1460
+ datacoves/dbt-coves,512,
1461
+ prratek/tap-dbt-artifacts,0,
1462
+ firebolt-db/dbt-firebolt,1671,
1463
+ MeltanoLabs/target-csv,686,
1464
+ zsvoboda/dbd,0,
1465
+ brooklyn-data/meltano-on-github-actions,0,
1466
+ Teradata/dbt-teradata,138,
1467
+ edgarrmondragon/meltano-dogfood,2476,
1468
+ samber/ansible-role-airbyte,0,
1469
+ voxmedia/tap-instagram,0,
1470
+ franloza/coches-net-dashboard,0,
1471
+ datayoga-io/datayoga,141,
1472
+ MeltanoLabs/target-snowflake,929,
1473
+ BayoAdejare/airbyte_dbt_covid19,0,
1474
+ SQLMesh/sqlmesh,10453,
1475
+ dtmirizzi/target-elasticsearch,61,
1476
+ vskaret/yahoo-finance-warehouse,0,
1477
+ lelouvincx/goodreads-elt-pipeline,0,
1478
+ koltyakov/cq-source-sharepoint,0,
1479
+ apache/doris-sdk,6,
1480
+ lelouvincx/spotify-data-pipeline-ingestion,0,
1481
+ Kushalkhadka7/dagster_clickhouse_dbt,0,
1482
+ oresttokovenko/RetailFlow,0,
1483
+ mahmoudparsian/data-warehousing,0,
1484
+ Renatoelho/apache-nifi-enriquecimento-cep,0,
1485
+ quarylabs/quary,335,
1486
+ airbytehq/abctl,307,
1487
+ dataforgelabs/dataforge-core,25,
1488
+ apache/doris-streamloader,10,
1489
+ transferia/transferia,1208,
1490
+ franloza/running-races-insights,126,
1491
+ mattiasthalen/obsidian-insights,102,
1492
+ kiwamizamurai/tsumugi,4,
1493
+ transferia/iceberg,36,
1494
+ elastic/logstash,13856,
1495
+ noflo/noflo,0,
1496
+ globalbioticinteractions/globalbioticinteractions,690,
1497
+ geopython/stetl,0,
1498
+ frankframework/frankframework,28766,
1499
+ dalenewman/Transformalize,299,
1500
+ halestudio/hale,3343,
1501
+ jjmontesl/cubetl,0,
1502
+ nhl/link-move,22,
1503
+ Cinchoo/ChoETL,3,
1504
+ BitwiseInc/Hydrograph,0,
1505
+ Renien/ETL-Starter-Kit,0,
1506
+ sdcote/coyote,0,
1507
+ TalendFramework/talendframework,0,
1508
+ raelango/EasyETL.Net,0,
1509
+ nh43de/DataPowerTools,10,
1510
+ johnshiver/plankton,0,
1511
+ 2298-Software/Mambo,0,
1512
+ ikama-innovation/Bauta,15,
1513
+ cefriel/chimera,25,
1514
+ usc-isi-i2/kgtk,1,
1515
+ chermenin/kio,29,
1516
+ kufu-ai/dvs-inbulk,0,
1517
+ marsupialtail/quokka,0,
1518
+ data-dot-all/dataall,3202,
1519
+ SharpData/SharpETL,0,
1520
+ aws-samples/amazon-redshift-serverless-rsql-etl-framework,29,
1521
+ konturio/geocint-runner,8,
1522
+ rpsft/etlbox,2,
1523
+ velocitybolt/open-extract,0,
1524
+ ictchenbo/SmartETL,0,
1525
+ legout/flowerpower,155,
1526
+ vigneshSs-07/Google-Cloud-Professional-Data-Engineer-ACompleteGuide,0,
1527
+ fabricks-framework/fabricks,834,
1528
+ Mmodarre/Lakehouse_Plumber,1133,
1529
+ pujansrt/data-genie,52,
1530
+ JesuFemi-O/grokking-dlt-kafka,0,
1531
+ smooks/smooks,597,
1532
+ metafacture/metafacture-core,463,
1533
+ thbar/kiba,12,
1534
+ koopjs/koop,161,
1535
+ palewire/django-calaccess-raw-data,0,
1536
+ datacleaner/DataCleaner,25,
1537
+ jbogard/bulk-writer,36,
1538
+ pboehm/django-data-migration,0,
1539
+ ANCIR/Siyazana.co.za,0,
1540
+ ICIJ/extract,0,
1541
+ tenzinkabsang/NBatch,54,
1542
+ orientechnologies/teleporter,28,
1543
+ ariacom/Seal-Report,3,
1544
+ Seddryck/NBi,13,
1545
+ hbz/lobid-resources,424,
1546
+ AMPATH/etl-rest-server,386,
1547
+ linkedpipes/etl,75,
1548
+ 51zero/eel-sdk,0,
1549
+ Marklogic-retired/marklogic-data-hub,0,
1550
+ bpolaszek/bentools-etl,29,
1551
+ OndraZizka/csv-cruncher,5,
1552
+ smartive/proc-that,12,
1553
+ agrc/forklift,168,
1554
+ yennanliu/web_scraping,0,
1555
+ nerevu/riko,3,
1556
+ rwynn/monstache,8,
1557
+ nightscape/spark-excel,777,
1558
+ fedspendingtransparency/usaspending-api,2068,
1559
+ vibhorkum/pg_background,100,
1560
+ neo4j/neo4j-jdbc,3210,
1561
+ planarnetwork/dtd2mysql,26,
1562
+ hooopo/kiba-plus,0,
1563
+ react-csv/react-csv,0,
1564
+ fab2s/YaEtl,28,
1565
+ yamrcraft/etl-light,0,
1566
+ michaldoda/sql-to-redis,0,
1567
+ licaonfee/selina,68,
1568
+ catalyst-cooperative/pudl,26344,
1569
+ uber/storagetapper,0,
1570
+ TianLangStudio/DataXServer,9,
1571
+ lsc-project/lsc,149,
1572
+ wx-chevalier/sentinel-crawler,0,
1573
+ grofit/persistity,0,
1574
+ mozilla/python_mozetl,5,
1575
+ m-lab/etl,0,
1576
+ wujun728/jun_bigdata,5,
1577
+ autonomio/wrangle,4,
1578
+ Swirrl/table2qb,0,
1579
+ Bus-Data-NYC/mta-bus-archive,3,
1580
+ sorrell/etlyte,0,
1581
+ miseyu/luigi-etl,0,
1582
+ mediative/amadou,0,
1583
+ appbaseio/abc,1,
1584
+ nodefluent/kafka-connect,0,
1585
+ toaco/carry,0,
1586
+ cityofaustin/knackpy,0,
1587
+ nodefluent/sequelize-kafka-connect,0,
1588
+ nodefluent/bigquery-kafka-connect,0,
1589
+ raphaelberly/journal,0,
1590
+ kalisio/krawler,97,
1591
+ jamesbyars/apache-spark-etl-pipeline-example,0,
1592
+ sul-dlss/traject_plus,0,
1593
+ blockchain-etl/ethereum-etl,1,
1594
+ datamill-co/target-postgres,1,
1595
+ analyseether/ether_sql,0,
1596
+ data-solution-automation-engine/data-solution-framework,17,
1597
+ osin-vladimir/architect_big_data_solutions_with_spark,0,
1598
+ mayur2810/sope,0,
1599
+ shouweikun/estuary,0,
1600
+ gacarrillor/AppendFeaturesToLayer,33,
1601
+ Arvin-Mark/DataX-src,0,
1602
+ m-lab/etl-gardener,0,
1603
+ ksbg/sparklanes,0,
1604
+ m-lab/etl-schema,0,
1605
+ kimaina/openmrs-etl,0,
1606
+ AmberWangjie/Big-Data-Analytic-Platform,0,
1607
+ jamil-said/code-samples,0,
1608
+ NationalMuseumAustralia/Collection-API-ETL,0,
1609
+ exivity/templates,0,
1610
+ Arvin-Mark/datax-bin,0,
1611
+ vectordotdev/vector,40000,
1612
+ paillave/Etl.Net,150,
1613
+ JoeyBling/webkettle,0,
1614
+ AbsaOSS/cobrix,590,
1615
+ kokes/od,448,
1616
+ capitalone/locopy,154,
1617
+ weizhonzhen/FastEtl,0,
1618
+ dxer/dataLink,0,
1619
+ Sage-Bionetworks/Genie,992,
1620
+ Wissance/ReportGeneratorWebGui,0,
1621
+ elixir-europe/plant-brapi-etl-faidare,0,
1622
+ jean-pasqualini/import,0,
1623
+ kids-first/kf-lib-data-ingest,29,
1624
+ OHDSI/ETL-Synthea,7,
1625
+ go-pkgz/flow,47,
1626
+ aphp/spark-etl,0,
1627
+ toddbirchard/tableau-extraction,0,
1628
+ cvilla87/PySpark-ETL-Telecom,0,
1629
+ geeknam/aws-neptune-aml,0,
1630
+ glesica/pkgraph,0,
1631
+ datavane/tis,0,
1632
+ ananas-analytics/ananas-desktop,0,
1633
+ streamthoughts/kafka-connect-file-pulse,539,
1634
+ dflib/dflib,326,
1635
+ csv2db/csv2db,0,
1636
+ Claviz/bellboy,65,
1637
+ khezen/avro,0,
1638
+ seattleflu/id3c,0,
1639
+ rgwood/etl-sheets,0,
1640
+ wgzhao/Addax,892,
1641
+ toluaina/pgsync,526,
1642
+ elastic/eland,249,
1643
+ grailbio/bigslice,0,
1644
+ itpp-labs/sync-addons,6,
1645
+ kmatarese/glide,3,
1646
+ monarch-initiative/monochrom,48,
1647
+ yennanliu/YelpReviews,0,
1648
+ onepanelio/onepanel,0,
1649
+ microsoft/etl2pcapng,36,
1650
+ XiaoMi/thain,0,
1651
+ schic/DQCS,0,
1652
+ bbossgroups/bboss-elastic-tran,0,
1653
+ jwhulette/pipes,23,
1654
+ fulldecent/google-sheets-etl,0,
1655
+ hackersandslackers/bigquery-sqlalchemy-tutorial,0,
1656
+ nl2go/hetzner-invoice,0,
1657
+ debrief/pepys-import,11,
1658
+ SETL-Framework/setl-template,0,
1659
+ basin-etl/basin,0,
1660
+ whythawk/whyqd,8,
1661
+ Guidewire/cda-client,0,
1662
+ INFINITE-TECHNOLOGY/COBOL,0,
1663
+ albertossilva/flowie,0,
1664
+ StoneMoe/AnyPush,10,
1665
+ matiuszka/smort-query,84,
1666
+ insolar/block-explorer,0,
1667
+ UKHSA-Internal/coronavirus-dashboard-pipeline-etl,0,
1668
+ jellyfish-toolkit/pipe-framework,0,
1669
+ sdam-au/LAGT,2,
1670
+ trocco-io/embulk-output-bigquery_java,44,
1671
+ jf-tech/omniparser,0,
1672
+ neuml/paperetl,19,
1673
+ WeBankFinTech/Exchangis,129,
1674
+ ohs-foundation/fhir-data-pipes,3736,
1675
+ chronicle-app/chronicle-etl,0,
1676
+ networktocode/diffsync,285,
1677
+ zhaoyachao/zdh_server,0,
1678
+ zbrookle/sql_to_ibis,0,
1679
+ biglocalnews/warn-scraper,321,
1680
+ tweag/lagoon,0,
1681
+ bebee4java/ides,0,
1682
+ Wiryco/Bootcamp-IGTI-Analista-de-Dados,0,
1683
+ php-etl/satellite,30,
1684
+ anelendata/handoff,0,
1685
+ joeyism/jsonl-to-conll,0,
1686
+ jpaulm/fbp-etl,0,
1687
+ lyrasis/kiba-extend,193,
1688
+ flock-lab/flock,0,
1689
+ ajthinking/data-story,345,
1690
+ Breeze0806/go-etl,150,
1691
+ monarch-initiative/koza,378,
1692
+ andrewcstewart/ds4fnp,0,
1693
+ yahoo/cubed,0,
1694
+ nownabe/go-bqloader,104,
1695
+ erkkah/sslr,0,
1696
+ stonezhong/DataManager,0,
1697
+ SETL-Framework/setl-examples,0,
1698
+ gabriel-ballesteros/mtg-metagame-scraper,0,
1699
+ bcgsc/pori_graphkb_loader,81,
1700
+ datakaveri/iudx-adaptor-framework,0,
1701
+ turbot/steampipe,2513,
1702
+ turbot/steampipe-plugin-aws,1612,
1703
+ pbnjay/grate,0,
1704
+ turbot/steampipe-plugin-github,757,
1705
+ turbot/steampipe-plugin-kubernetes,734,
1706
+ turbot/steampipe-plugin-gcp,765,
1707
+ turbot/steampipe-plugin-sdk,636,
1708
+ turbot/steampipe-plugin-azure,867,
1709
+ fkie-cad/Logprep,3808,
1710
+ dod-advana/gamechanger-data,0,
1711
+ turbot/steampipe-plugin-shodan,619,
1712
+ turbot/steampipe-plugin-net,112,
1713
+ brianamaral/covid-news,0,
1714
+ turbot/steampipe-plugin-oci,688,
1715
+ turbot/steampipe-plugin-slack,629,
1716
+ turbot/steampipe-plugin-whois,601,
1717
+ turbot/steampipe-plugin-hackernews,116,
1718
+ turbot/steampipe-plugin-twitter,119,
1719
+ turbot/steampipe-plugin-alicloud,680,
1720
+ turbot/steampipe-plugin-finance,599,
1721
+ turbot/steampipe-plugin-steampipe,128,
1722
+ turbot/steampipe-plugin-zendesk,121,
1723
+ turbot/steampipe-plugin-rss,121,
1724
+ turbot/steampipe-plugin-cloudflare,264,
1725
+ turbot/steampipe-plugin-digitalocean,138,
1726
+ MarkPflug/Sylvan.Tools.Etl,0,
1727
+ turbot/steampipe-plugin-ipstack,117,
1728
+ noleme/noleme-flow-connectors,0,
1729
+ turbot/steampipe-plugin-chaos,247,
1730
+ stn1slv/awesome-integration,508,
1731
+ mydataharbor/mydataharbor,1,
1732
+ turbot/steampipe-plugin-terraform,628,
1733
+ fairtracks/omnipy,1079,
1734
+ turbot/steampipe-plugin-jira,674,
1735
+ turbot/steampipe-plugin-virustotal,116,
1736
+ turbot/steampipe-plugin-googleworkspace,140,
1737
+ atolcd/hop-gis-plugins,15,
1738
+ qwshen/spark-etl-framework,0,
1739
+ turbot/steampipe-plugin-stripe,119,
1740
+ turbot/steampipe-plugin-code,606,
1741
+ crs4/flatehr,0,
1742
+ churrodata/churro,0,
1743
+ turbot/steampipe-plugin-googledirectory,175,
1744
+ nico-corthorn/tba-investments-etl,1,
1745
+ turbot/steampipe-plugin-azuread,803,
1746
+ turbot/steampipe-plugin-grafana,176,
1747
+ turbot/steampipe-plugin-abuseipdb,616,
1748
+ turbot/steampipe-plugin-ldap,122,
1749
+ turbot/steampipe-plugin-docker,118,
1750
+ turbot/steampipe-plugin-okta,628,
1751
+ turbot/steampipe-plugin-microsoft365,148,
1752
+ turbot/steampipe-plugin-tfe,620,
1753
+ turbot/steampipe-plugin-bitbucket,128,
1754
+ biglocalnews/warn-transformer,547,
1755
+ turbot/steampipe-plugin-linode,113,
1756
+ ome9ax/target-s3-jsonl,0,
1757
+ databricks/dbt-databricks,4450,
1758
+ reductstore/reductstore,2577,
1759
+ hofstadter-io/cuetils,0,
1760
+ turbot/steampipe-plugin-googlesheets,647,
1761
+ turbot/steampipe-plugin-csv,605,
1762
+ Agazoth/PSParquet,66,
1763
+ turbot/steampipe-plugin-prometheus,612,
1764
+ turbot/steampipe-plugin-scaleway,607,
1765
+ turbot/steampipe-plugin-datadog,634,
1766
+ turbot/steampipe-plugin-salesforce,601,
1767
+ turbot/steampipe-plugin-imap,121,
1768
+ turbot/steampipe-plugin-hypothesis,598,
1769
+ Mukhopadhyay/restdf,0,
1770
+ turbot/steampipe-plugin-hibp,120,
1771
+ scrapy-plugins/scrapy-snowflake-stage-exporter,0,
1772
+ turbot/steampipe-plugin-ibm,117,
1773
+ sul-dlss/libsys-airflow,1431,
1774
+ instill-ai/instill-core,5200,
1775
+ easysql/easy_sql,28,
1776
+ decodableco/examples,40,
1777
+ chainbound/apollo,0,
1778
+ ziggy-data/scraping_zap_imoveis,0,
1779
+ datayoga-io/lineage,0,
1780
+ opencultureconsulting/orcli,5,
1781
+ datawaves-xyz/dbt_datawaves,0,
1782
+ DylanBartels/discogs-load,0,
1783
+ turbot/steampipe-plugin-reddit,122,
1784
+ catalyst-cooperative/ferc-xbrl-extractor,1273,
1785
+ turbot/steampipe-plugin-config,147,
1786
+ AgnostiqHQ/covalent-awsbatch-plugin,56,
1787
+ AgnostiqHQ/covalent-ecs-plugin,56,
1788
+ emeraldpay/dshackle-archive,117,
1789
+ nationalarchives/ds-caselaw-ingester,5983,
1790
+ SbWereWolf/xml-navigator,53,
1791
+ d3b-center/image-deid-etl,25,
1792
+ turbot/steampipe-plugin-snowflake,619,
1793
+ getdozer/dozer,3,
1794
+ useVenice/venice,0,
1795
+ deepeth/mars,0,
1796
+ fhirpack/fhirpack,0,
1797
+ luchonaveiro/dbt-postgres-tutorial,0,
1798
+ DawnbrandBots/yaml-yugi,4389,
1799
+ linkml/linkml-map,2173,
1800
+ akimrx/yandex-tracker-exporter,0,
1801
+ cloudposse/terraform-aws-glue,58,
1802
+ kaiachain/kaia-etl,20,
1803
+ top-guns/etl-gun,0,
1804
+ pldn/LDWizard,0,
1805
+ AgnostiqHQ/covalent-aws-plugins,5,
1806
+ omhq/fragments,0,
1807
+ turbot/steampipe-plugin-crtsh,124,
1808
+ turbot/steampipe-plugin-trivy,244,
1809
+ AgnostiqHQ/covalent-kubernetes-plugin,56,
1810
+ mert019/open-ETL,0,
1811
+ DawnbrandBots/yaml-yugipedia,2694,
1812
+ turbot/steampipe-plugin-crowdstrike,158,
1813
+ luchonaveiro/great-expectations-postgres-tutorial,0,
1814
+ aelassas/wexflow,788,
1815
+ apache/incubator-graphar,3166,
1816
+ benjamin-awd/monopoly,670,
1817
+ datainsider-co/rocket-bi,0,
1818
+ dfpc-coe/CloudTAK,16754,
1819
+ zeus-fyi/zeus,0,
1820
+ MeltanoLabs/tap-airbyte-wrapper,0,
1821
+ flyanakin/CountMoney,0,
1822
+ PastorGL/datacooker-etl,158,
1823
+ turbot/steampipe-plugin-mastodon,163,
1824
+ devopscorner/nifi,820,
1825
+ TelemodemTI/dagserver,0,
1826
+ Ghurtchu/parcsv,0,
1827
+ turbot/steampipe-plugin-ipinfo,608,
1828
+ turbot/steampipe-plugin-tailscale,122,
1829
+ GabrielGiurgica/Udacity-Data-Engineering-Capstone-Project,0,
1830
+ turbot/steampipe-plugin-jumpcloud,121,
1831
+ MTSWebServices/etl-entities,592,
1832
+ risg99/tpc-di-benchmark,0,
1833
+ turbot/steampipe-plugin-jenkins,128,
1834
+ PeerDB-io/peerdb,40000,
1835
+ apecloud/ape-dts,414,
1836
+ kzaremski/apple-notes-exporter,5,
1837
+ long2ice/meilisync,2,
1838
+ aws-samples/aws-glue-test-data-generator,45,
1839
+ smortezah/portfolio,52,
1840
+ turbot/steampipe-plugin-exec,629,
1841
+ turbot/steampipe-plugin-linkedin,604,
1842
+ turbot/steampipe-plugin-openai,127,
1843
+ turbot/steampipe-plugin-openapi,642,
1844
+ turbot/steampipe-plugin-onepassword,118,
1845
+ betofleitass/etl_python_pentaho,0,
1846
+ turbot/steampipe-plugin-supabase,117,
1847
+ kassette-ai/kassette-server,0,
1848
+ turbot/steampipe-plugin-shopify,117,
1849
+ Zettafi/block-crawler,0,
1850
+ omatheussantos/datawarehouse-sql-server,0,
1851
+ turbot/steampipe-plugin-namecheap,120,
1852
+ c0mm4nd/tronetl,41,
1853
+ timeplus-io/proton,2858,
1854
+ aryn-ai/sycamore,6176,
1855
+ xuwei95/ezdata,0,
1856
+ ogbinar/DataEngineeringPilipinas,42,
1857
+ schemamap/schemamap,0,
1858
+ wgzhao/addax-admin,14,
1859
+ LoveNui/Customer-Viewership-Realtime-Analysis,0,
1860
+ robert-koch-institut/mex-common,5254,
1861
+ jordilin/gitar,75,
1862
+ turbot/steampipe-plugin-databricks,649,
1863
+ bitalizer/db-migrator,18,
1864
+ zhaoyachao/zdh_flinkx,0,
1865
+ turbot/steampipe-sqlite,32,
1866
+ level-vc/useful,0,
1867
+ DucAnhNTT/bigdata-ETL-pipeline,0,
1868
+ SpareCores/sc-crawler,946,
1869
+ Dorianteffo/etl_pipeline_docker_metabase,0,
1870
+ turbolytics/latte,0,
1871
+ wesleyolvr/shein_crawler,0,
1872
+ karanpratapsingh/scale-etl,0,
1873
+ tvs-sde/oxford-omop-data-mapper,1338,
1874
+ contube-org/contube,0,
1875
+ turbot/steampipe-export,31,
1876
+ 3amory99/Gravity-Books-Sales-End-to-End-Project,0,
1877
+ tenzir/library,157,
1878
+ JuanCampbsi/analytics_engineering_airbnb,0,
1879
+ ts7ming/pyqueen,6,
1880
+ fzliu/radient,0,
1881
+ mehd-io/pypi-duck-flow,425,
1882
+ HemeraProtocol/hemera-indexer,119,
1883
+ apache/doris-kafka-connector,384,
1884
+ MTSWebServices/syncmaster,3952,
1885
+ MTSWebServices/horizon,1374,
1886
+ mbari-org/aidata,268,
1887
+ memiiso/opendbt,420,
1888
+ ErickWendel/nodered-google-sheets-to-json-stream,2,
1889
+ hexnn/Stark,0,
1890
+ syncmaven/syncmaven,10,
1891
+ SemyonSinchenko/feature-generation-benchmark,0,
1892
+ singl3focus/hl7-converter,23,
1893
+ AAndreo/Aquisicao.Clinicas,0,
1894
+ MTSWebServices/spark-dialect-extension,198,
1895
+ vlm-run/vlmrun-hub,21,
1896
+ george0st/Ff2Cql,0,
1897
+ DocumentAtom/DocumentAtom,0,
1898
+ dhdaines/playa,668,
1899
+ petaly-labs/petaly,3,
1900
+ banzuzi-carioni/cross-border-electricity-flow-prediction,68,
1901
+ aws-samples/tracing-etl-workloads-otel,27,
1902
+ telekom/wurzel,5363,
1903
+ cocoindex-io/patient-intake-extraction,0,
1904
+ neo-technology-field/python-etl-lib,128,
1905
+ HubertLongshanks/PySurveyReader,3,
1906
+ caiopizzol/cnpj-data-pipeline,141,
1907
+ santoshray02/csv-editor,12,
1908
+ ewc3labs/excel-power-query-editor,45,
1909
+ elastic/LogstashUI,56,
1910
+ B1AAB/EBA,142,
1911
+ RubelAhmed10082000/CragWeatherDatabase,1,
1912
+ BauplanLabs/data-agents-on-the-lakehouse,0,
1913
+ colliery-io/cloacina,427,
1914
+ Broscorp-net/prefect-meltano,17,
1915
+ KonuTech/classify-stock-growth-for-trading,0,
1916
+ alfablend/rostral.io,94,
1917
+ Arbaznazir/DataLineagePy,22,
1918
+ zappzerapp/laravel-ingest,121,
1919
+ diegoscarabelli/garmin-health-data,285,
1920
+ ing-bank/ordeq,4463,
1921
+ wp-labs/wp-editor,917,
1922
+ slalaure/korelate,10,
1923
+ KSD-CO/excelstream,114,
1924
+ lancedb/cocoindex-lancedb-demo,0,
1925
+ piebro/wikidata-extraction,3,
1926
+ meyerzurheda/analytics-os,0,
1927
+ erikhoward/atlas,88,
1928
+ fdmorison/tiozin,402,
1929
+ diorwave/kafka-clickhouse-sink,0,
1930
+ clamp-orchestrator/clamp-core,0,
1931
+ sarahkb125/airflow-docker-metrics,0,
1932
+ hadron-project/hadron,0,
1933
+ DataTalksClub/mlops-zoomcamp,5,
1934
+ hpcflow/matflow,1173,
1935
+ zzstoatzz/prefect-memory-profiling,0,
1936
+ Nerdward/Mlops_project,0,
1937
+ cmigpereira/mlops-zoomcamp-project,0,
1938
+ sartography/spiff-arena,12702,
1939
+ harshadmanglani/polaris,2,
1940
+ zetane/zetaforgedev,8,
1941
+ gustavoeenriquez/MakerAi,0,
1942
+ czelabueno/jai-workflow,0,
1943
+ The-Pocket/PocketFlow,107,
1944
+ ThalesGroup/agilab,7324,
1945
+ zigflow/zigflow,4038,
1946
+ call518/MCP-Airflow-API,857,
1947
+ iepathos/prodigy,1464,
1948
+ BjornMelin/dev-pro-agents,0,
1949
+ pinsky-three/greenrock,0,
1950
+ turtir-ai/mcp-ecosystem-platform,30,
1951
+ barkain/claude-code-workflow-orchestration,874,
1952
+ defai-digital/AutomatosX,2104,
1953
+ The-Pocket/PocketFlow-Zig,10,
Data/DE_repo_interactions.csv ADDED
@@ -0,0 +1,1852 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ full_name,contribution_commits,maintenance_issues,process_issues,review_issues,discussion_issues,maintenance_prs,process_prs,review_prs,discussion_prs
2
+ 094459/blogpost-airflow-hybrid,6,0,0,0,0,0,0,0,0
3
+ 173TECH/sayn,201,15,15,0,0,14,14,218,25
4
+ 1ambda/lakehouse,0,0,0,0,0,0,0,0,0
5
+ 1ambda/practical-data-pipeline,118,0,0,0,0,0,0,0,0
6
+ 1kbgz/tributary,158,2,2,0,0,29,29,6,2
7
+ 2298-Software/Mambo,19,0,0,0,0,2,2,0,0
8
+ 3DCF-Labs/doc2dataset,16,0,0,0,0,0,0,0,0
9
+ 3amory99/Gravity-Books-Sales-End-to-End-Project,21,0,0,0,0,0,0,0,0
10
+ 51zero/eel-sdk,28,144,144,0,0,21,21,1,0
11
+ AMPATH/etl-rest-server,1201,0,0,0,0,1131,1131,1014,130
12
+ ANCIR/Siyazana.co.za,0,0,0,0,0,0,0,0,0
13
+ AbhishekGit-hash/Real-Time-Delta-Lake-with-Pyspark,9,0,0,0,0,0,0,0,0
14
+ AbsaOSS/cobrix,177,142,142,0,0,57,57,267,153
15
+ AbsaOSS/pramen,95,31,31,0,0,42,42,611,373
16
+ Agazoth/PSParquet,12,7,7,0,0,0,0,1,0
17
+ AgnostiqHQ/covalent,461,451,451,0,0,677,677,2219,1551
18
+ AgnostiqHQ/covalent-aws-plugins,34,4,4,0,0,20,20,34,14
19
+ AgnostiqHQ/covalent-awsbatch-plugin,50,12,12,0,0,40,40,72,22
20
+ AgnostiqHQ/covalent-ecs-plugin,35,10,10,0,0,34,34,48,7
21
+ AgnostiqHQ/covalent-kubernetes-plugin,7,0,0,0,0,7,7,10,3
22
+ AgnostiqHQ/covalent-slurm-plugin,26,13,13,0,0,32,32,90,57
23
+ AgnostiqHQ/covalent-ssh-plugin,34,6,6,0,0,30,30,93,67
24
+ AhmetFurkanDEMIR/Flink-Example,1,0,0,0,0,0,0,0,0
25
+ AiDAPT-A/VisArchPy,87,0,0,0,0,0,0,0,0
26
+ Aiscalate/aiscalator,23,0,0,0,0,1,1,2,2
27
+ Alarchemn/F2-Data-Pipeline,10,0,0,0,0,0,0,0,0
28
+ AlexIoannides/notes-and-demos,15,0,0,0,0,0,0,0,0
29
+ AlexIoannides/pyspark-example-project,4,9,9,0,0,3,3,7,0
30
+ AlvaroCavalcante/airflow-parse-bench,2,1,1,0,0,0,0,1,0
31
+ Amatofrancesco99/ee-satellites,26,0,0,0,0,0,0,0,0
32
+ AmberWangjie/Big-Data-Analytic-Platform,19,0,0,0,0,0,0,0,0
33
+ AmirhosseinHonardoust/Financial-Fraud-Risk-Engine,7,0,0,0,0,0,0,0,0
34
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Associate-Questions,52,0,0,0,0,0,0,0,0
35
+ Amrit-Hub/Databricks-Certified-Data-Engineer-Professional-Questions,24,0,0,0,0,0,0,0,0
36
+ Amrit-Hub/How-to-become-Data-Engineering-Essentials,49,0,0,0,0,0,0,0,0
37
+ AnMol12499/AWS-Youtube-Analytics,2,0,0,0,0,0,0,0,0
38
+ AnMol12499/Reddit-Analytics-Integration-Platform,1,0,0,0,0,0,0,0,0
39
+ Anant/example-cassandra-etl-with-airflow-and-spark,17,0,0,0,0,4,4,0,0
40
+ AnanthaRajuC/DataPractitioner,12,0,0,0,0,0,0,0,0
41
+ AndreaBozzo/Ceres,63,0,0,0,0,19,19,68,23
42
+ AndreaBozzo/dataprof,158,0,0,0,0,61,61,65,9
43
+ AnthonyByansi/Airflow-Data-Pipeline-Automation,34,0,0,0,0,10,10,9,0
44
+ AnthonyByansi/Azure-ETL-Pipeline,19,0,0,0,0,0,0,0,0
45
+ AnthonyByansi/MicrosoftFabric-Exploratorium,71,0,0,0,0,0,0,0,0
46
+ AnyegaAlex/Sentiment-Driven-Stock-Price-Prediction-Using-News-Headlines,11,0,0,0,0,0,0,0,0
47
+ Arbaznazir/DataLineagePy,0,0,0,0,0,0,0,0,0
48
+ Arturomtz8/de-zoomcamp-project,4,0,0,0,0,0,0,0,0
49
+ Arvin-Mark/DataX-src,1,0,0,0,0,0,0,0,0
50
+ Arvin-Mark/datax-bin,1,0,0,0,0,0,0,0,0
51
+ Ashford-A/UniVI,21,0,0,0,0,1,1,0,0
52
+ Atharva-Phatak/shopme,11,0,0,0,0,1,1,0,0
53
+ AuFeld/Data_Engineering_Projects,1,0,0,0,0,0,0,0,0
54
+ Avaiga/taipy,2976,669,669,0,0,226,226,5285,4631
55
+ Azure/data-product-batch,76,10,10,0,0,16,16,117,56
56
+ Azure/data-product-streaming,73,5,5,0,0,13,13,186,135
57
+ Azure99/BlossomData,1,0,0,0,0,0,0,0,0
58
+ B1AAB/EBA,56,1,1,0,0,0,0,0,0
59
+ BBVA/data-refinery,28,0,0,0,0,11,11,14,0
60
+ BarbaraJoebstl/data-engineering-nd,8,0,0,0,0,0,0,0,0
61
+ Barski-lab/biowardrobe-airflow-analysis,1,0,0,0,0,1,1,0,0
62
+ BasPH/airflow-rocket,1,0,0,0,0,0,0,0,0
63
+ BattGenie/battetl,68,4,4,0,0,2,2,72,47
64
+ BauplanLabs/data-agents-on-the-lakehouse,7,0,0,0,0,0,0,0,0
65
+ BayoAdejare/lightning-containers,22,0,0,0,0,0,0,0,0
66
+ BenSchr/Udacity-Data-Engineering-Projects,12,0,0,0,0,0,0,0,0
67
+ Besi-Switzerland-AG/qdvc,5,0,0,0,0,0,0,0,0
68
+ BinariesGoalls/Udacity-Data-Engineering-Nanodegree,62,0,0,0,0,0,0,0,0
69
+ BioDWH2/BioDWH2,12,0,0,0,0,7,7,0,0
70
+ BioDataFuse/pyBiodatafuse,231,27,27,0,0,97,97,150,66
71
+ BiranSama/ReNovel-AI,17,0,0,0,0,0,0,0,0
72
+ BitwiseInc/Hydrograph,108,9,9,0,0,43,43,3,0
73
+ BlinkenOSA/workflows,14,1,1,0,0,1,1,2,0
74
+ Booss3my/Indeed_scraper,13,0,0,0,0,0,0,0,0
75
+ Breaka84/Spooq,64,1,1,0,0,11,11,59,38
76
+ Breeze0806/go-etl,58,6,6,0,0,9,9,12,0
77
+ Broscorp-net/prefect-meltano,5,0,0,0,0,2,2,2,0
78
+ Bruno-Furtado/cloud-cnpj,14,0,0,0,0,0,0,0,0
79
+ Burla-Cloud/burla,231,1,1,0,0,9,9,14,3
80
+ Bus-Data-NYC/mta-bus-archive,0,3,3,0,0,0,0,0,0
81
+ BusySloths/mlox,57,0,0,0,0,9,9,41,18
82
+ CategoricalData/CQL,41,12,12,0,0,4,4,1,0
83
+ CaterinaBi/aicore-web-scraping-pipeline,4,0,0,0,0,0,0,0,0
84
+ ChahiriAbderrahmane/modern-data-stack-nyc-taxi,1,0,0,0,0,0,0,0,0
85
+ CharlieSergeant/airflow-minio-postgres-fastapi,1,0,0,0,0,0,0,0,0
86
+ ChildishGirl/glue-data-pipeline,3,1,1,0,0,0,0,0,0
87
+ ChildishGirl/serverless-data-pipeline,3,0,0,0,0,0,0,0,0
88
+ Cinchoo/ChoETL,93,55,55,0,0,10,10,2,0
89
+ CityOfPhiladelphia/phila-airflow,9,0,0,0,0,0,0,0,0
90
+ Claviz/bellboy,99,2,2,0,0,44,44,11,9
91
+ CloudFormations/CF.Cumulus,145,1,1,0,0,19,19,5,0
92
+ CloudWise-OpenSource/FlyFish,199,53,53,0,0,28,28,0,0
93
+ ClusterlessHQ/clusterless,0,0,0,0,0,0,0,0,0
94
+ ClusterlessHQ/tessellate,0,0,0,0,0,0,0,0,0
95
+ CogStack/CogStack-NiFi,103,7,7,0,0,27,27,6,0
96
+ CommonCoreOntology/CommonCoreOntologies,474,265,265,0,0,117,117,268,139
97
+ ConduitIO/conduit,1495,253,253,0,0,1061,1061,4807,2478
98
+ ContextData/VectorETL,1,2,2,0,0,0,0,2,2
99
+ CornellDataScience/DataEngineering,50,0,0,0,0,0,0,0,0
100
+ CoxAutomotiveDataSolutions/spark-distcp,8,3,3,0,0,2,2,0,0
101
+ CoxAutomotiveDataSolutions/waimak,140,9,9,0,0,64,64,189,81
102
+ DSuveges/GenomePlotter,24,0,0,0,0,10,10,10,0
103
+ DTStack/chunjun,483,657,657,0,0,369,369,253,135
104
+ DTUComputeStatisticsAndDataAnalysis/MBPLS,7,7,7,0,0,1,1,1,0
105
+ DanielDaCosta/airflow-ml-prediction,17,0,0,0,0,1,1,0,0
106
+ DanilBaibak/ml-in-production,3,0,0,0,0,0,0,0,0
107
+ Data-Bishop/Team5-BuildItAll-Data-Platform,65,0,0,0,0,2,2,1,0
108
+ Data-Research-Analysis/data-research-analysis-platform,373,0,0,0,0,5,5,117,79
109
+ DataBora/elusion,0,15,15,0,0,0,0,0,0
110
+ DataBridgeTech/dbqctl,2,0,0,0,0,0,0,0,0
111
+ DataEngineering-LATAM/Airflow-StudyClub,21,0,0,0,0,3,3,2,0
112
+ DataEngineering-LATAM/Spark-StudyClub,11,0,0,0,0,5,5,6,0
113
+ DataForgeOpenAIHub/Steam-Sales-Analysis,22,0,0,0,0,0,0,0,0
114
+ DataKitchen/data-observability-installer,95,2,2,0,0,9,9,131,79
115
+ DataKitchen/dataops-observability,34,0,0,0,0,23,23,35,6
116
+ DataKitchen/dataops-observability-agents,13,0,0,0,0,3,3,7,0
117
+ DataKitchen/dataops-testgen,109,1,1,0,0,35,35,54,4
118
+ DataRecce/recce,1990,62,62,0,0,316,316,1695,1157
119
+ DataSQRL/sqrl,1097,299,299,0,0,495,495,1118,685
120
+ DataTalksClub/data-engineering-zoomcamp,939,106,106,0,0,420,420,87,41
121
+ DataTalksClub/mlops-zoomcamp,416,80,80,0,0,202,202,26,11
122
+ DatacollectorVN/Airflow-Tutorial,1,0,0,0,0,0,0,0,0
123
+ Datavault-UK/automate-dv,135,81,81,0,0,49,49,149,113
124
+ DawnbrandBots/yaml-yugi,269,5,5,0,0,254,254,39,3
125
+ DawnbrandBots/yaml-yugipedia,88,1,1,0,0,76,76,10,0
126
+ Deffro/MLOps,1,0,0,0,0,0,0,0,0
127
+ DeleLinus/HFR-Data-Warehousing,3,0,0,0,0,0,0,0,0
128
+ DemevengDerrick/ETL-Connector-for-ODK,10,0,0,0,0,0,0,0,0
129
+ Desbordante/desbordante-core,1550,28,28,0,0,451,451,3621,3131
130
+ DevDizzle/gammarips-engine,36,0,0,0,0,0,0,0,0
131
+ DidactHQ/didact,6,0,0,0,0,0,0,0,0
132
+ Dina-Hosny/ETL-Data-Pipeline-using-AirFlow,3,0,0,0,0,0,0,0,0
133
+ DocumentAtom/DocumentAtom,7,1,1,0,0,2,2,0,0
134
+ Dorianteffo/etl_pipeline_docker_metabase,6,0,0,0,0,0,0,0,0
135
+ Dorianteffo/modern-data-platform,58,0,0,0,0,0,0,0,0
136
+ DrDroidLab/kenobi,6,0,0,0,0,0,0,1,0
137
+ DucAnhNTT/bigdata-ETL-pipeline,3,0,0,0,0,0,0,0,0
138
+ DylanBartels/discogs-load,9,0,0,0,0,0,0,0,0
139
+ Edwardvaneechoud/Flowfile,335,7,7,0,0,16,16,67,30
140
+ Elkinmt19/airflow-master,1,0,0,0,0,0,0,0,0
141
+ Emilien-Foissotte/carburoam,31,0,0,0,0,5,5,7,0
142
+ ErickWendel/nodered-google-sheets-to-json-stream,5,0,0,0,0,1,1,0,0
143
+ Eventual-Inc/Daft,3794,806,806,0,0,692,692,10101,9054
144
+ FAIRDataPipeline/DataPipeline.jl,77,0,0,0,0,23,23,7,0
145
+ FAIRDataPipeline/rDataPipeline,251,6,6,0,0,9,9,5,4
146
+ FIUBA-Posgrado-Inteligencia-Artificial/aprendizaje_maquina_II,38,0,0,0,0,1,1,0,0
147
+ FearlessSolutions/engineering-practice-domains,22,0,0,0,0,9,9,10,4
148
+ FizzCodeSoftware/EtLast,223,0,0,0,0,2,2,0,0
149
+ Flipkart/foxtrot,175,49,49,0,0,169,169,191,139
150
+ Flor91/Data-engineering-nanodegree,4,1,1,0,0,2,2,0,0
151
+ Fozan-Talat/divvy-bikeshare-de-project,73,0,0,0,0,0,0,0,0
152
+ GK-Consulting/terraform-provider-astronomer,12,1,1,0,0,2,2,25,18
153
+ GabrielGiurgica/Udacity-Data-Engineering-Capstone-Project,6,0,0,0,0,0,0,0,0
154
+ Galileo-Galilei/kedro-pandera,28,11,11,0,0,19,19,52,47
155
+ Ganeshsivakumar/langchain-beam,33,0,0,0,0,3,3,2,0
156
+ Genvekt/coincap_monitor,13,0,0,0,0,0,0,0,0
157
+ Geobatpo07/datahut-duckhouse,2,0,0,0,0,0,0,0,0
158
+ GetFeedback/kahpp-oss,273,0,0,0,0,157,157,338,74
159
+ Ghurtchu/parcsv,5,0,0,0,0,0,0,0,0
160
+ GitBrincie212/ChronoGrapher,221,0,0,0,0,88,88,25,2
161
+ GoPlasmatic/dataflow-rs,1,0,0,0,0,0,0,0,0
162
+ GokuMohandas/Made-With-ML,7,49,49,0,0,40,40,6,0
163
+ GokuMohandas/data-engineering,0,0,0,0,0,0,0,0,0
164
+ GokuMohandas/mlops-course,0,17,17,0,0,0,0,1,0
165
+ GoogleCloudPlatform/cortex-data-foundation,76,22,22,0,0,9,9,11,0
166
+ GoogleCloudPlatform/dataproc-scala-examples,1,0,0,0,0,1,1,0,0
167
+ GoogleCloudPlatform/public-datasets-pipelines,481,5,5,0,0,363,363,1128,648
168
+ GovHub-br/data-application-gov-hub,147,62,62,0,0,81,81,114,23
169
+ GovHub-br/gov-hub,70,13,13,0,0,38,38,13,2
170
+ Gowtham1729/folio-feed,24,1,1,0,0,0,0,0,0
171
+ Greatdev666/IPEDS-Data-Warehouse,44,0,0,0,0,0,0,0,0
172
+ Guepard-Corp/qwery-core,121,7,7,0,0,71,71,88,25
173
+ Guidewire/cda-client,8,1,1,0,0,8,8,74,63
174
+ Guilherme-B/manifold,15,0,0,0,0,0,0,0,0
175
+ GuinsooLab/luden,0,0,0,0,0,0,0,0,0
176
+ GuinsooLab/sheenflow,12,0,0,0,0,0,0,0,0
177
+ HCA97/Leauge-of-Legends-Challenger-Stats,3,0,0,0,0,0,0,0,0
178
+ HamzaG737/data-engineering-project,14,0,0,0,0,2,2,0,0
179
+ HemeraProtocol/hemera-indexer,213,2,2,0,0,71,71,329,149
180
+ HenriqueDePaula12/data_engineer,2,0,0,0,0,0,0,0,0
181
+ Hiflylabs/awesome-dbt,268,4,4,0,0,77,77,18,7
182
+ HoracioSoldman/batch-processing-on-aws,1,0,0,0,0,0,0,0,0
183
+ HubertLongshanks/PySurveyReader,7,0,0,0,0,0,0,0,0
184
+ HuemulSolutions/huemul-bigdatagovernance,63,18,18,0,0,2,2,1,0
185
+ IBM/ada,6,0,0,0,0,1,1,7,0
186
+ ICIJ/extract,36,13,13,0,0,11,11,18,11
187
+ INFINITE-TECHNOLOGY/COBOL,2,0,0,0,0,0,0,0,0
188
+ IcarusDB/metal,24,0,0,0,0,3,3,3,0
189
+ ImperialCollegeLondon/prefect-managedfiletransfer,29,0,0,0,0,23,23,0,0
190
+ Indexical-Metrics-Measure-Advisory/watchmen,61,0,0,0,0,18,18,0,0
191
+ Indexical-Metrics-Measure-Advisory/watchmen-matryoshka-doll,36,0,0,0,0,0,0,0,0
192
+ InfuseAI/piperider,1002,22,22,0,0,217,217,789,382
193
+ InsightDataScience/ansible-playbook,9,1,1,0,0,1,1,0,0
194
+ InterestingLab/seatunnel-example,5,0,0,0,0,0,0,0,0
195
+ IsmaelMiranda11/inflation-data-model,4,0,0,0,0,0,0,0,0
196
+ JB-Analytica/model2data,6,0,0,0,0,1,1,3,0
197
+ JHLeeeMe/fake-data-pipeline,19,0,0,0,0,0,0,0,0
198
+ JanMarcelKezmann/Apache-Airflow-Beam-TensorFlow-Examples,25,0,0,0,0,0,0,0,0
199
+ Jasiri-App/datagpu,0,0,0,0,0,0,0,0,0
200
+ JensBender/youtube-channel-analytics,1,0,0,0,0,0,0,0,0
201
+ JesuFemi-O/grokking-dlt-kafka,2,0,0,0,0,0,0,0,0
202
+ Jithsaavvy/Sentiment-analysis-from-MLOps-paradigm,10,0,0,0,0,0,0,0,0
203
+ JoeyBling/webkettle,9,2,2,0,0,0,0,0,0
204
+ Joffreybvn/airflow-dag-builder,1,0,0,0,0,0,0,0,0
205
+ Johnkayode/spotify-etl,6,0,0,0,0,0,0,0,0
206
+ JonnyTran/OpenOmics,130,2,2,0,0,18,18,12,0
207
+ JuanCampbsi/analytics_engineering_airbnb,2,0,0,0,0,0,0,0,0
208
+ JuliuszB12/LSTM_Attention_redeployment_for_yahoo_stock_data,461,0,0,0,0,0,0,0,0
209
+ K-G-PRAJWAL/Big-Data-Engineering,52,0,0,0,0,1,1,0,0
210
+ KOBeerose/Academic-Projects,2,0,0,0,0,0,0,0,0
211
+ KSD-CO/excelstream,13,3,3,0,0,5,5,1,0
212
+ KafScale/platform,117,11,11,0,0,66,66,264,27
213
+ Kathan-max/RAG-Enhanced-Chatbot-with-LoRA-Fine-Tuning,14,0,0,0,0,0,0,0,0
214
+ KayvanShah1/thomasnet-scraper,27,1,1,0,0,8,8,22,0
215
+ KayvanShah1/usc-dsci560-dspp-sp24,13,0,0,0,0,0,0,0,0
216
+ KentHsu/Udacity-Data-Engineering-Nanodgree,5,0,0,0,0,0,0,0,0
217
+ LAMP-LUCAS/AutoSINAPI,9,0,0,0,0,0,0,0,0
218
+ LGE-ARC-AdvancedAI/auptimizer,22,3,3,0,0,5,5,0,0
219
+ LREN-CHUV/airflow-imaging-plugins,4,0,0,0,0,0,0,0,0
220
+ LREN-CHUV/ansible-airflow,2,0,0,0,0,0,0,0,0
221
+ LTranData/data-platform,1,0,0,0,0,0,0,0,0
222
+ LaeekAhmed/nyc-taxi-data-analytics,1,0,0,0,0,0,0,0,0
223
+ Lal4Tech/Data-Engineering-With-AWS,1,0,0,0,0,0,0,0,0
224
+ LamaAni/KubernetesJobOperator,81,10,10,0,0,10,10,50,32
225
+ LexxaRRioo/rzv_data_engineering_series_s01e01,5,0,0,0,0,0,0,1,0
226
+ LexxaRRioo/rzv_de_shared_folder,1,0,0,0,0,0,0,0,0
227
+ LinYuMingBejing/DataPipeline,0,0,0,0,0,0,0,0,0
228
+ Longwinter93/DataEngineeringProjects,28,0,0,0,0,0,0,0,0
229
+ LoveNui/Customer-Viewership-Realtime-Analysis,4,0,0,0,0,0,0,0,0
230
+ LukasLoeffler/data-graph,160,0,0,0,0,2,2,0,0
231
+ MBKraus/incremental_training,41,1,1,0,0,5,5,0,0
232
+ MTES-MCT/sparte,1172,220,220,0,0,58,58,513,193
233
+ MTSWebServices/data-rentgen,323,0,0,0,0,198,198,1028,593
234
+ MTSWebServices/etl-entities,145,0,0,0,0,121,121,321,189
235
+ MTSWebServices/horizon,153,0,0,0,0,141,141,489,283
236
+ MTSWebServices/onetl,312,12,12,0,0,166,166,1755,1494
237
+ MTSWebServices/spark-dialect-extension,15,0,0,0,0,2,2,95,58
238
+ MTSWebServices/syncmaster,344,0,0,0,0,193,193,1302,935
239
+ MadeiraData/microsoft-data-engineers-club,12,0,0,0,0,0,0,0,0
240
+ MagnivOrg/magniv-core,100,1,1,0,0,19,19,59,52
241
+ Magnus167/rustframe,94,0,0,0,0,0,0,0,0
242
+ Mairondc21/dbt_az_usuarios,16,0,0,0,0,0,0,0,0
243
+ MallamTeja/f1_models,30,0,0,0,0,2,2,16,12
244
+ MammothPHP/WoollyM,103,0,0,0,0,47,47,0,0
245
+ ManuelGuerra1987/data-engineering-zoomcamp-notes,0,0,0,0,0,0,0,0,0
246
+ MarcosMJD/ghcn-d,13,0,0,0,0,0,0,0,0
247
+ MarkPflug/Sylvan.Tools.Etl,4,0,0,0,0,0,0,0,0
248
+ Marklogic-retired/marklogic-data-hub,1218,0,0,0,0,5198,5198,20659,19388
249
+ MartyC-137/Data-Engineering,6,1,1,0,0,1,1,2,2
250
+ MassStreetAnalytics/etl-framework,12,0,0,0,0,1,1,0,0
251
+ Matrix030/SteamLensAI,7,0,0,0,0,0,0,0,0
252
+ MattTriano/analytics_data_where_house,96,0,0,0,0,0,0,0,0
253
+ Matts966/alphasql,137,1,1,0,0,3,3,2,0
254
+ MaxiDS/-Streaming_ETL_FastApi_Docker,3,0,0,0,0,0,0,0,0
255
+ MelihGulum/Comprehensive-Data-Science-AI-Project-Portfolio,21,0,0,0,0,0,0,0,0
256
+ MeltanoLabs/Singer-Working-Group,9,1,1,0,0,1,1,29,27
257
+ MeltanoLabs/tap-airbyte-wrapper,9,6,6,0,0,6,6,14,9
258
+ MeltanoLabs/tap-dbt,466,4,4,0,0,423,423,427,30
259
+ MeltanoLabs/target-csv,295,4,4,0,0,274,274,265,17
260
+ MeltanoLabs/target-snowflake,344,28,28,0,0,247,247,324,78
261
+ Menziess/slipstream-async,25,1,1,0,0,1,1,5,5
262
+ Mikma03/DevOps-MLOps,3,0,0,0,0,0,0,0,0
263
+ MinhKhoi3104/aws-end-to-end-data-lakehouse-analytics-platform,77,0,0,0,0,9,9,5,0
264
+ Minyus/pipelinex,4,6,6,0,0,3,3,0,0
265
+ Mmodarre/Lakehouse_Plumber,40,23,23,0,0,9,9,11,0
266
+ ModelEngine-Group/DataMate,357,49,49,0,0,44,44,27,0
267
+ MoonyFringers/ladon,16,0,0,0,0,0,0,16,16
268
+ Mukhopadhyay/restdf,28,0,0,0,0,0,0,0,0
269
+ Multiwoven/multiwoven,1015,33,33,0,0,642,642,1136,435
270
+ Mvanhuffel/Sheets_to_Postgres_ETL_Pipeline,5,0,0,0,0,0,0,0,0
271
+ NICTA/serene,1,0,0,0,0,0,0,0,0
272
+ NICTA/serene-python-client,2,0,0,0,0,0,0,0,0
273
+ NPLinker/nplinker,265,47,47,0,0,41,41,629,514
274
+ Narius2030/Find-Similar-Vietnamese-Texts,10,0,0,0,0,0,0,0,0
275
+ NathanVuSwinburne/Structural-Defect-Detection-AI-for-Structural-Engineering,3,0,0,0,0,0,0,0,0
276
+ Nathnael12/Datawarehouse,7,0,0,0,0,0,0,0,0
277
+ NationalMuseumAustralia/Collection-API-ETL,4,0,0,0,0,0,0,1,0
278
+ NembotJules/Cameroon-Air-Quality-Prediction,3,0,0,0,0,0,0,0,0
279
+ Nerdward/Mlops_project,3,0,0,0,0,0,0,0,0
280
+ Nerdward/batch_gh_archive,2,0,0,0,0,0,0,0,0
281
+ Netflix/maestro,107,37,37,0,0,7,7,189,101
282
+ NeumTry/NeumAI,62,5,5,0,0,18,18,50,31
283
+ NicoloAlbanese/airflow-ml-pipeline-mvp,9,0,0,0,0,0,0,0,0
284
+ Nike-Inc/koheesio,107,27,27,0,0,47,47,313,217
285
+ NitinDatta8/realtime-data-streaming,1,0,0,0,0,0,0,0,0
286
+ Noman654/dataengineer_prep,1,0,0,0,0,0,0,0,0
287
+ Nonanti/PipeFlow,8,1,1,0,0,1,1,0,0
288
+ Noobzik/ATL-Datamart,14,0,0,0,0,0,0,12,5
289
+ NucleusEngineering/hack-your-pipe,28,0,0,0,0,2,2,1,0
290
+ OBenner/data-engineering-interview-questions,16,1,1,0,0,10,10,1,0
291
+ OHDSI/ETL-Synthea,89,106,106,0,0,28,28,14,2
292
+ OLAMIDE100/Data-Engineering-Project,24,0,0,0,0,0,0,0,0
293
+ OP-TED/ted-rdf-conversion-pipeline,610,21,21,0,0,133,133,858,398
294
+ ORNL/flowcept,288,3,3,0,0,14,14,41,40
295
+ OndraZizka/csv-cruncher,73,2,2,0,0,40,40,0,0
296
+ Open-Source-Legal/OpenContracts,2531,15,15,0,0,320,320,109,13
297
+ OpenDCAI/DataFlow,590,36,36,0,0,281,281,215,53
298
+ PFund-Software-Ltd/pfeed,3,0,0,0,0,0,0,0,0
299
+ PJGaetan/airflow-cli,1,0,0,0,0,0,0,0,0
300
+ PStarH/VisiLens,1,0,0,0,0,0,0,0,0
301
+ PastorGL/datacooker-etl,20,0,0,0,0,0,0,2,0
302
+ Pathairush/airflow_hive_spark_sqoop,1,1,1,0,0,0,0,0,0
303
+ Pathairush/data_engineering_nanodegree,7,0,0,0,0,0,0,0,0
304
+ PedroCozzati/pipeline-airflow-etl-linkedin,6,0,0,0,0,0,0,0,0
305
+ PedroMTQ/UniFuncNet,2,0,0,0,0,0,0,0,0
306
+ PeerDB-io/peerdb,3154,355,355,0,0,876,876,6880,4358
307
+ PeteCastle/League-of-Legends-Analytics,5,0,0,0,0,0,0,0,0
308
+ PierreC1024/airflow-provider-bigquery-reservation,12,0,0,0,0,0,0,2,0
309
+ PkLavc/PkLavc.github.io,17,0,0,0,0,0,0,0,0
310
+ PowerDataHub/terraform-aws-airflow,32,9,9,0,0,8,8,1,0
311
+ Pravko-Solutions/FlashLearn,137,1,1,0,0,1,1,0,0
312
+ PrefectHQ/prefect,10994,4515,4515,0,0,4696,4696,29764,21066
313
+ ProyectoRespira/data_retriever,45,3,3,0,0,4,4,177,89
314
+ Pseudo-Lab/data-engineering-for-everybody,64,9,9,0,0,9,9,66,45
315
+ Quantumics-AI/quantumics-opensource,9,0,0,0,0,7,7,10,4
316
+ RADar-AZDelta/Rabbit-in-a-Blender,131,34,34,0,0,2,2,2,0
317
+ Rahlir/mongo2pq,0,0,0,0,0,0,0,0,0
318
+ Rajsingh92/MUST_HAVE_SKILLS,8,0,0,0,0,12,12,0,0
319
+ RamiKrispin/pydata-ny-ga-workshop,1,0,0,0,0,0,0,0,0
320
+ Rayyan9477/MLOps-Pipeline-for-USD-Forecasting,2,0,0,0,0,0,0,0,0
321
+ Ren294/Covid-Data-Process,35,0,0,0,0,0,0,0,0
322
+ Renatoelho/apache-nifi-enriquecimento-cep,1,0,0,0,0,0,0,0,0
323
+ RiadBensalem/E-commerce-Sales-Analysis-Pipeline,9,0,0,0,0,0,0,0,0
324
+ RihabFekii/wildfire-smoke-detector,2,0,0,0,0,0,0,0,0
325
+ RiveryIO/rivery_cli,42,2,2,0,0,4,4,37,25
326
+ Romboost-Repo/PipeLogger,0,0,0,0,0,0,0,0,0
327
+ RubelAhmed10082000/CragWeatherDatabase,22,0,0,0,0,0,0,0,0
328
+ RustedBytes/audios-to-dataset,134,1,1,0,0,54,54,0,0
329
+ Ryan-Miao/airflow-console,2,2,2,0,0,1,1,0,0
330
+ RyanEricLamb/data-engineering-bus-tracker,1,0,0,0,0,0,0,0,0
331
+ SA01/dbt-tutorial,1,0,0,0,0,0,0,0,0
332
+ SDM-TIB/SDM-RDFizer,97,61,61,0,0,17,17,0,0
333
+ SETL-Framework/setl,166,40,40,0,0,43,43,59,18
334
+ SETL-Framework/setl-examples,1,0,0,0,0,0,0,0,0
335
+ SETL-Framework/setl-template,2,0,0,0,0,0,0,0,0
336
+ SINTEF/sensapp,39,3,3,0,0,4,4,0,0
337
+ SQLMesh/sqlmesh,4236,695,695,0,0,406,406,14681,12343
338
+ Sabareh/stock-price-prediction-spark-cassandra,8,0,0,0,0,0,0,0,0
339
+ Sagar-Salvi/Data-Engineering-Project,21,0,0,0,0,0,0,0,0
340
+ Sage-Bionetworks/Genie,780,27,27,0,0,78,78,918,564
341
+ Seddryck/NBi,26,156,156,0,0,17,17,7,0
342
+ Seddryck/Streamistry,117,0,0,0,0,42,42,0,0
343
+ SemyonSinchenko/feature-generation-benchmark,11,0,0,0,0,4,4,11,7
344
+ SergeySenigov/data-engineer-practicum-portfolio,14,0,0,0,0,0,0,0,0
345
+ SharpData/SharpETL,24,0,0,0,0,5,5,10,3
346
+ ShihWen/tpe-mrt-traffic-etl,5,0,0,0,0,0,0,0,0
347
+ Shinichi-Nakagawa/airflow-docker,5,0,0,0,0,0,0,0,0
348
+ Shubhmeep/AWS-Airflow-DataIngestion-Pipeline,7,0,0,0,0,0,0,0,0
349
+ Snowflake-Labs/emerging-solutions-toolbox,219,2,2,0,0,114,114,172,18
350
+ Snowflake-Labs/snowflake-demo-notebooks,343,2,2,0,0,26,26,22,10
351
+ SoheilGtex/finance-data-pipelines,10,0,0,0,0,0,0,0,0
352
+ SoleyIo/dtflw,31,0,0,0,0,3,3,60,49
353
+ Sonnet-Scripts/sonnet-scripts,40,0,0,0,0,24,24,22,3
354
+ SorellaLabs/brontes,607,70,70,0,0,35,35,78,66
355
+ SourceWatcher/source-watcher-core,37,1,1,0,0,2,2,0,0
356
+ SpareCores/sc-crawler,105,0,0,0,0,14,14,408,365
357
+ Speccy-Rom/SpeccyTV,22,0,0,0,0,1,1,16,0
358
+ Spratiher9/JumpSpark,2,0,0,0,0,1,1,1,0
359
+ Srushti104/Big-data-systems,231,0,0,0,0,0,0,2,0
360
+ StabRise/spark-pdf,15,1,1,0,0,0,0,0,0
361
+ Stefen-Taime/ETL-Data-Pipeline-RDBMS-TO-HDFS-using-Airflow-Apache-Sqoop-Spark-Postgres-and-Hive,8,0,0,0,0,0,0,0,0
362
+ Stefen-Taime/Nifi-ETL-Data-Pipeline,17,0,0,0,0,0,0,0,0
363
+ StoneMoe/AnyPush,3,0,0,0,0,0,0,0,0
364
+ StructuredLabs/preswald,242,67,67,0,0,143,143,224,63
365
+ SuperCowPowers/workbench,120,13,13,0,0,14,14,36,13
366
+ Swirrl/table2qb,60,29,29,0,0,17,17,19,9
367
+ SysBioChalmers/GECKO,199,84,84,0,0,76,76,427,301
368
+ SysBioChalmers/SLIMEr,0,0,0,0,0,0,0,0,0
369
+ T-Sunm/rag-ops,3,0,0,0,0,0,0,17,17
370
+ TJaniF/airflow-elt-blueprint,19,0,0,0,0,0,0,0,0
371
+ TJaniF/airflow-kafka-quickstart,2,0,0,0,0,1,1,1,0
372
+ TJhon/PyPeruStats,24,0,0,0,0,0,0,0,0
373
+ Tauffer-Consulting/domino,248,53,53,0,0,61,61,49,7
374
+ Teichlab/cellhint,1,0,0,0,0,0,0,0,0
375
+ TelemodemTI/dagserver,193,0,0,0,0,0,0,0,0
376
+ Teradata/dbt-teradata,304,57,57,0,0,27,27,326,264
377
+ ThalesGroup/agilab,40,0,0,0,0,0,0,0,0
378
+ The-Academic-Observatory/observatory-platform,268,113,113,0,0,180,180,751,475
379
+ The-Pocket/PocketFlow,233,4,4,0,0,31,31,6,0
380
+ The-Pocket/PocketFlow-Zig,4,0,0,0,0,0,0,0,0
381
+ Thomas-George-T/Ecommerce-Data-MLOps,164,0,0,0,0,32,32,61,7
382
+ ThunderFly-aerospace/TFSLOT01,99,1,1,0,0,1,1,1,0
383
+ TianLangStudio/DataXServer,23,2,2,0,0,9,9,0,0
384
+ Titan-Systems/titan,106,50,50,0,0,17,17,0,0
385
+ Toloka/dbt-af,71,5,5,0,0,6,6,103,47
386
+ TomLous/meetup-spark-airflow-demo,2,0,0,0,0,0,0,0,0
387
+ Trhova/Multi-omics,0,0,0,0,0,0,0,0,0
388
+ TriplyDB/Documentation,259,0,0,0,0,81,81,89,75
389
+ UKHSA-Internal/coronavirus-dashboard-pipeline-etl,79,0,0,0,0,79,79,25,5
390
+ Unstructured-IO/unstructured,1867,718,718,0,0,907,907,6728,5045
391
+ VICIWUOHA/airflow-dbt-magic,7,0,0,0,0,0,0,0,0
392
+ VIDA-NYU/bdi-kit,113,11,11,0,0,15,15,75,50
393
+ VeraZab/nyc-stats,2,0,0,0,0,0,0,0,0
394
+ VianneyMI/baker,19,0,0,0,0,0,0,0,0
395
+ VicenteYago/steam-data-engineering,131,0,0,0,0,0,0,0,0
396
+ VivekaAryan/Reddit-Data-Pipeline,11,0,0,0,0,0,0,0,0
397
+ VulknData/eruptr,17,0,0,0,0,0,0,0,0
398
+ Wathon/Data-Modeling-with-Postgres,1,0,0,0,0,0,0,0,0
399
+ Wathon/data_engineering_with_python-track-datacamp,1,0,0,0,0,0,0,0,0
400
+ Wazzabeee/pyspark-etl-twitter,7,0,0,0,0,0,0,0,0
401
+ WeBankFinTech/DataSphereStudio,1207,201,201,0,0,153,153,296,137
402
+ WeBankFinTech/Exchangis,375,131,131,0,0,169,169,67,18
403
+ WhaleOps/air2phin,58,0,0,0,0,0,0,0,0
404
+ Wilmar3752/ETL_scraper,11,0,0,0,0,0,0,0,0
405
+ Wiryco/Bootcamp-IGTI-Analista-de-Dados,13,0,0,0,0,0,0,0,0
406
+ Wissance/ReportGeneratorWebGui,5,0,0,0,0,0,0,0,0
407
+ Wittline/pyDag,74,1,1,0,0,0,0,0,0
408
+ Wittline/uber-expenses-tracking,242,2,2,0,0,0,0,0,0
409
+ XiaoMi/thain,115,12,12,0,0,43,43,40,0
410
+ Yan-Luo-AU/Data_Engineer_Project_ETL_BI,29,0,0,0,0,0,0,0,0
411
+ YotpoLtd/metorikku,161,31,31,0,0,135,135,1100,762
412
+ Zettafi/block-crawler,1,2,2,0,0,1,1,27,13
413
+ Zipstack/unstract-sdk,197,0,0,0,0,131,131,1341,1335
414
+ Zleap-AI/SAG,9,0,0,0,0,0,0,0,0
415
+ aabouzaid/modern-data-platform-poc,1,0,0,0,0,0,0,0,0
416
+ aayomide/crypto_analytics_engineering,12,0,0,0,0,0,0,0,0
417
+ ab180/lrmr,25,0,0,0,0,5,5,21,17
418
+ abeltavares/MarketPipe,41,0,0,0,0,0,0,0,0
419
+ abeltavares/batch-data-pipeline,0,0,0,0,0,0,0,0,0
420
+ abhishek-ch/around-dataengineering,247,0,0,0,0,0,0,0,0
421
+ abhishekbhakat/airflow-mcp-server,17,2,2,0,0,1,1,1,0
422
+ abrahamkoloboe27/Airflow-Pipeline-Dashboard-Compagnie-Aerienne,1,0,0,0,0,0,0,0,0
423
+ abrahamkoloboe27/E-Commerce-Data-Pipeline-And-Dashboard-With-Apache-Superset,3,1,1,0,0,1,1,1,0
424
+ adidas/lakehouse-engine,2,1,1,0,0,0,0,10,7
425
+ adilkhash/apache-airflow-intro,6,0,0,0,0,2,2,0,0
426
+ aelassas/wexflow,355,42,42,0,0,43,43,0,0
427
+ aeonasoft/audioflow,2,0,0,0,0,0,0,0,0
428
+ affaan-m/Sol-Onchain-Analyst,10,0,0,0,0,0,0,0,0
429
+ afranzi/mini-data-platform,1,0,0,0,0,0,0,0,0
430
+ agrc/forklift,336,58,58,0,0,103,103,271,178
431
+ ahammadmejbah/Artificial-Intelligence-Research-and-Development-Projects,60,0,0,0,0,0,0,0,0
432
+ ahnazary/Finance,13,0,0,0,0,0,0,0,0
433
+ ai-forever/DataProcessingFramework,83,3,3,0,0,19,19,33,17
434
+ aiguofer/gspread-pandas,28,29,29,0,0,14,14,7,5
435
+ aim-rsf/cprd-data-wrangle,37,2,2,0,0,2,2,11,5
436
+ airbytehq/PyAirbyte,415,69,69,0,0,99,99,2751,2359
437
+ airbytehq/abctl,177,0,0,0,0,10,10,335,210
438
+ airbytehq/airbyte,44024,8011,8011,0,0,11767,11767,83145,68357
439
+ airflow-helm/charts,297,291,291,0,0,43,43,150,91
440
+ airflow-laminar/airflow-balancer,164,0,0,0,0,69,69,12,0
441
+ airflow-laminar/airflow-common,107,0,0,0,0,45,45,13,0
442
+ airflow-laminar/airflow-config,222,0,0,0,0,63,63,10,0
443
+ airflow-laminar/airflow-ha,107,0,0,0,0,45,45,11,0
444
+ airflow-laminar/airflow-priority,122,0,0,0,0,45,45,12,0
445
+ airflow-laminar/airflow-pydantic,170,0,0,0,0,42,42,10,0
446
+ airflow-laminar/airflow-supervisor,181,0,0,0,0,52,52,13,0
447
+ airscholar/RedditDataEngineering,0,0,0,0,0,0,0,0,0
448
+ airscholar/e2e-data-engineering,4,0,0,0,0,1,1,2,0
449
+ aitrados/aitrados-api,1,0,0,0,0,0,0,0,0
450
+ aivanzhang/panda_patrol,25,0,0,0,0,1,1,0,0
451
+ ajthinking/data-story,453,4,4,0,0,51,51,248,135
452
+ akarce/RedditDataPipeline,3,0,0,0,0,0,0,0,0
453
+ akarce/e2e-structured-streaming,6,0,0,0,0,0,0,0,0
454
+ akimrx/yandex-tracker-exporter,19,3,3,0,0,0,0,0,0
455
+ akmalsoliev/Validoopsie,23,2,2,0,0,0,0,0,0
456
+ akshitvjain/realtime-twitter-trends-analytics,21,0,0,0,0,1,1,0,0
457
+ alanchn31/Data-Engineering-Projects,18,0,0,0,0,9,9,0,0
458
+ alanchn31/Loan-Default-Prediction,7,0,0,0,0,0,0,0,0
459
+ alanchn31/Movalytics-Data-Warehouse,0,0,0,0,0,0,0,0,0
460
+ albertossilva/flowie,17,0,0,0,0,2,2,5,5
461
+ albincorreya/ml-training-airflow-mlflow-example,1,0,0,0,0,0,0,0,0
462
+ alebgz-91/queens,6,0,0,0,0,0,0,0,0
463
+ alegonz/otokuna,1,0,0,0,0,0,0,0,0
464
+ alero-awani/batch-data-engineering-project,0,0,0,0,0,0,0,0,0
465
+ alfablend/rostral.io,22,0,0,0,0,0,0,0,0
466
+ alias454/sec-airflow-ingester,0,1,1,0,0,0,0,0,0
467
+ alibaba/feathub,156,11,11,0,0,102,102,541,495
468
+ amanjpro/greenish,47,7,7,0,0,3,3,9,8
469
+ amol-/datapyground,18,0,0,0,0,0,0,0,0
470
+ amphi-ai/amphi-etl,86,117,117,0,0,59,59,4,0
471
+ analyseether/ether_sql,51,0,0,0,0,0,0,0,0
472
+ ananas-analytics/ananas-desktop,94,12,12,0,0,16,16,33,13
473
+ ananthdurai/airflow-training,34,1,1,0,0,0,0,0,0
474
+ anastasiia-p/airflow-ml,2,0,0,0,0,0,0,0,0
475
+ andkret/Cookbook,142,17,17,0,0,41,41,15,0
476
+ andre-salvati/databricks-template,27,0,0,0,0,0,0,0,0
477
+ andreac0/BeRTo-RecordLinkageTool,3,0,0,0,0,0,0,0,0
478
+ andreax79/airflow-code-editor,113,34,34,0,0,58,58,1,0
479
+ andreax79/airflow-gitlab-webhook,1,2,2,0,0,1,1,0,0
480
+ andreax79/airflow-provider-xlsx,1,0,0,0,0,0,0,0,0
481
+ andreizolotarev/MLOps,7,0,0,0,0,0,0,0,0
482
+ andresionek91/airflow-autoscaling-ecs,12,0,0,0,0,0,0,0,0
483
+ andrewcstewart/ds4fnp,5,0,0,0,0,0,0,0,0
484
+ andrewm4894/airflow-provider-anomaly-detection,37,0,0,0,0,1,1,0,0
485
+ andrewruba/lilpipe,4,0,0,0,0,0,0,0,0
486
+ andrewtavis/wikirepo,18,0,0,0,0,4,4,3,0
487
+ andrjas/data_check,1,0,0,0,0,0,0,0,0
488
+ anelendata/handoff,76,2,2,0,0,0,0,0,0
489
+ angadsingh/airflow-hdinsight,1,0,0,0,0,0,0,0,0
490
+ anilans029/Forecasting-Backorders-In-Inventory,1,0,0,0,0,0,0,0,0
491
+ anilkulkarni87/airflow-docker,35,1,1,0,0,0,0,0,0
492
+ anki-code/xontrib-pipeliner,106,3,3,0,0,0,0,0,0
493
+ ankiano/etl,109,0,0,0,0,0,0,0,0
494
+ ankurchavda/data-engineering-zoomcamp,2,0,0,0,0,1,1,0,0
495
+ ankurchavda/streamify,1,0,0,0,0,0,0,0,0
496
+ anna-geller/dataflow-ops,26,6,6,0,0,4,4,4,0
497
+ anna-geller/dataflow-ops-aws-eks,1,0,0,0,0,0,0,0,0
498
+ anna-geller/kestra-ci-cd,9,0,0,0,0,0,0,1,0
499
+ anna-geller/prefect-aws-lambda,2,0,0,0,0,0,0,0,0
500
+ anna-geller/prefect-dataplatform,1,1,1,0,0,0,0,0,0
501
+ anna-geller/prefect-deployment-patterns,5,0,0,0,0,1,1,1,0
502
+ anna-geller/prefect-getting-started,1,0,0,0,0,0,0,0,0
503
+ anna-geller/prefect-streaming,4,0,0,0,0,0,0,0,0
504
+ anovv/svoe,7,0,0,0,0,0,0,0,0
505
+ anr007/airflow-xtended-api,6,1,1,0,0,0,0,0,0
506
+ ansilo-data/ansilo,6,0,0,0,0,0,0,0,0
507
+ anthonywong611/Batch-ETL-with-AWS-EMR-and-MWAA,22,0,0,0,0,0,0,0,0
508
+ apache/airflow,32655,8858,8858,0,0,22241,22241,161084,142816
509
+ apache/airflow-client-go,19,6,6,0,0,17,17,62,38
510
+ apache/airflow-client-python,91,0,0,0,0,26,26,147,83
511
+ apache/airflow-site,844,92,92,0,0,529,529,1585,937
512
+ apache/dolphinscheduler,6614,5840,5840,0,0,5492,5492,19143,15367
513
+ apache/dolphinscheduler-operator,13,0,0,0,0,4,4,1,0
514
+ apache/doris,29456,5746,5746,0,0,33597,33597,111365,94340
515
+ apache/doris-kafka-connector,71,1,1,0,0,53,53,143,89
516
+ apache/doris-sdk,9,0,0,0,0,6,6,12,4
517
+ apache/doris-streamloader,20,2,2,0,0,20,20,23,8
518
+ apache/flink-cdc,1333,1303,1303,0,0,1195,1195,5469,4422
519
+ apache/hamilton,785,191,191,0,0,367,367,2392,1775
520
+ apache/hop,3934,1411,1411,0,0,2478,2478,618,152
521
+ apache/hudi,6750,2199,2199,0,0,6509,6509,55598,50668
522
+ apache/incubator-devlake,3103,1303,1303,0,0,3515,3515,6309,2981
523
+ apache/incubator-devlake-playground,28,1,1,0,0,30,30,37,9
524
+ apache/incubator-graphar,433,74,74,0,0,202,202,1093,787
525
+ apache/seatunnel,4526,3202,3202,0,0,4205,4205,21363,20204
526
+ apache/seatunnel-datasource-sdk,6,0,0,0,0,0,0,0,0
527
+ apache/seatunnel-tools,4,0,0,0,0,4,4,6,3
528
+ apache/seatunnel-web,1431,0,0,0,0,159,159,338,158
529
+ apache/shardingsphere,25886,7436,7436,0,0,20583,20583,36188,13373
530
+ apache/streampark,1845,860,860,0,0,1477,1477,3041,1747
531
+ apache/superset,0,8509,8509,0,0,8920,8920,58788,49285
532
+ apecloud/ape-dts,288,50,50,0,0,32,32,57,31
533
+ apecloud/myduckserver,188,40,40,0,0,22,22,440,307
534
+ aphp/spark-etl,8,0,0,0,0,0,0,4,4
535
+ apicrafter/datacrafter,10,20,20,0,0,3,3,0,0
536
+ appbaseio/abc,72,46,46,0,0,40,40,31,9
537
+ aredier/chariots,13,0,0,0,0,0,0,6,0
538
+ argoproj/argo-workflows,5831,2964,2964,0,0,4384,4384,20317,15233
539
+ ariacom/Seal-Report,174,33,33,0,0,38,38,1,0
540
+ armbian/armbian.github.io,189,4,4,0,0,70,70,293,97
541
+ arthurprevot/yaetos,125,0,0,0,0,10,10,16,15
542
+ arverma/TowardsDataEngineering,21,0,0,0,0,0,0,33,0
543
+ aryn-ai/sycamore,1333,17,17,0,0,62,62,4458,3443
544
+ ascrus/getl,19,4,4,0,0,7,7,0,0
545
+ ashish10alex/vscode-dataform-tools,198,49,49,0,0,17,17,537,490
546
+ aspuru-guzik-group/funsies,3,2,2,0,0,2,2,2,0
547
+ astronomer/airflow-chart,773,30,30,0,0,212,212,1418,1005
548
+ astronomer/airflow-provider-fivetran-async,179,20,20,0,0,129,129,399,270
549
+ astronomer/ask-astro,103,83,83,0,0,47,47,493,420
550
+ astronomer/astro-provider-anyscale,73,13,13,0,0,20,20,199,142
551
+ astronomer/astronomer-cosmos,1322,631,631,0,0,711,711,5668,4923
552
+ astronomer/astronomer-providers,907,265,265,0,0,452,452,3903,3440
553
+ astronomer/dag-factory,396,102,102,0,0,222,222,1027,788
554
+ astronomer/ebook-etl-elt,2,1,1,0,0,0,0,0,0
555
+ astronomer/templates,11,0,0,0,0,2,2,9,7
556
+ atolcd/hop-gis-plugins,12,9,9,0,0,4,4,0,0
557
+ aurcode/ankineitor,0,0,0,0,0,0,0,0,0
558
+ automaticmode/active_workflow,6,5,5,0,0,0,0,0,0
559
+ autonomio/wrangle,51,0,0,0,0,4,4,2,0
560
+ aws-ia/terraform-aws-mwaa,60,7,7,0,0,23,23,49,20
561
+ aws-samples/amazon-redshift-serverless-rsql-etl-framework,13,0,0,0,0,8,8,0,0
562
+ aws-samples/aws-glue-test-data-generator,37,0,0,0,0,0,0,0,0
563
+ aws-samples/cloud-native-airflow-solution-on-amazon-eks,4,0,0,0,0,0,0,0,0
564
+ aws-samples/dataops-platform-airflow-dbt,9,2,2,0,0,0,0,12,0
565
+ aws-samples/mwaa-disaster-recovery,25,2,2,0,0,2,2,23,20
566
+ aws-samples/mwaa-rbac-task,11,0,0,0,0,0,0,0,0
567
+ aws-samples/tracing-etl-workloads-otel,1,0,0,0,0,0,0,0,0
568
+ aws-solutions-library-samples/data-lakes-on-aws,93,28,28,0,0,65,65,98,91
569
+ aws/aws-sdk-pandas,1391,1035,1035,0,0,645,645,2616,2113
570
+ bacalhau-project/bacalhau,2168,1203,1203,0,0,627,627,4422,3456
571
+ backtick-se/cowait,197,19,19,0,0,45,45,31,16
572
+ badal-io/gcp-airflow-foundations,137,1,1,0,0,27,27,294,252
573
+ badubizzle/ex_dag,10,0,0,0,0,3,3,0,0
574
+ bakdata/streams-explorer,167,53,53,0,0,13,13,799,692
575
+ banzuzi-carioni/cross-border-electricity-flow-prediction,61,0,0,0,0,0,0,0,0
576
+ barkain/claude-code-workflow-orchestration,52,3,3,0,0,0,0,22,0
577
+ basin-etl/basin,22,0,0,0,0,2,2,0,0
578
+ bastienboutonnet/sheetwork,260,14,14,0,0,86,86,17,6
579
+ bbossgroups/bboss-elastic-tran,1,3,3,0,0,2,2,0,0
580
+ bbrewington/software-data-and-ai-tools,20,0,0,0,0,0,0,0,0
581
+ bcgsc/pori_graphkb_loader,152,11,11,0,0,6,6,338,233
582
+ bdnf/BigData-Engineering-Projects,3,0,0,0,0,0,0,0,0
583
+ bebee4java/ides,8,1,1,0,0,1,1,0,0
584
+ behnamyazdan/ecommerce_realtime_data_pipeline,0,0,0,0,0,0,0,0,0
585
+ benjamin-awd/monopoly,96,9,9,0,0,73,73,30,18
586
+ bennyaustin/elt-framework,119,0,0,0,0,6,6,16,5
587
+ benrutter/wimsey,28,2,2,0,0,0,0,0,0
588
+ benthosdev/benthos-captain,27,5,5,0,0,12,12,14,6
589
+ bereketkibru/Data_engineering_sensor_data,3,0,0,0,0,0,0,0,0
590
+ betofleitass/etl_python_pentaho,2,0,0,0,0,0,0,0,0
591
+ biglocalnews/prefect-flow-template,24,0,0,0,0,0,0,0,0
592
+ biglocalnews/warn-scraper,445,102,102,0,0,73,73,119,81
593
+ biglocalnews/warn-transformer,408,8,8,0,0,3,3,0,0
594
+ bio2bel/bio2bel,17,7,7,0,0,3,3,132,132
595
+ bitalizer/db-migrator,11,5,5,0,0,1,1,0,0
596
+ bitol-io/open-data-contract-standard,291,28,28,0,0,97,97,219,125
597
+ bitol-io/open-data-product-standard,30,3,3,0,0,6,6,18,10
598
+ bitpicky/dbt-sugar,195,17,17,0,0,123,123,241,164
599
+ bitroot/coflux,151,1,1,0,0,9,9,7,0
600
+ bizzyvinci/cosmos-etl,0,1,1,0,0,0,0,0,0
601
+ blitzkz23/final-project-end-to-end-banking-campaign-pipeline,24,0,0,0,0,0,0,0,0
602
+ blockchain-etl/bitcoin-etl,27,7,7,0,0,14,14,10,8
603
+ blockchain-etl/bitcoin-etl-airflow,8,0,0,0,0,3,3,1,0
604
+ blockchain-etl/bitcoin-etl-airflow-neo4j,3,1,1,0,0,1,1,1,0
605
+ blockchain-etl/eos-etl,1,2,2,0,0,0,0,11,11
606
+ blockchain-etl/ethereum-etl,234,57,57,0,0,76,76,67,52
607
+ blockchain-etl/ethereum-etl-airflow,891,12,12,0,0,572,572,399,141
608
+ blockchain-etl/hedera-etl,6,0,0,0,0,4,4,33,28
609
+ blockchain-etl/polygon-etl,171,4,4,0,0,72,72,102,43
610
+ bluishglc/serverless-datalake-example,3,0,0,0,0,0,0,0,0
611
+ bmeares/Meerschaum,201,3,3,0,0,1,1,0,0
612
+ bogwi/sarpro,0,1,1,0,0,0,0,0,0
613
+ bookbot-kids/speechline,50,5,5,0,0,9,9,7,0
614
+ boostcampaitech4lv23cv1/final-project-level3-cv-01,40,0,0,0,0,14,14,51,41
615
+ boostcampaitech4lv23recsys1/final-project-level3-recsys-01,141,5,5,0,0,39,39,53,39
616
+ boostcampaitech5/LawBot-Online-Legal-Advice-LLM-Service,83,5,5,0,0,38,38,107,104
617
+ bostspb/etl,2,0,0,0,0,0,0,0,0
618
+ bpolaszek/bentools-etl,60,1,1,0,0,1,1,1,0
619
+ bramvdklinkenberg/my_first_data_project,2,0,0,0,0,0,0,0,0
620
+ brandonhimpfen/awesome-data-engineering,5,0,0,0,0,0,0,0,0
621
+ breimanntools/xomics,6,0,0,0,0,0,0,0,0
622
+ brfulu/airflow-data-pipeline,2,0,0,0,0,0,0,0,0
623
+ brianamaral/covid-news,11,0,0,0,0,0,0,0,0
624
+ brodyu/predicting-earnings-surprises,29,0,0,0,0,0,0,0,0
625
+ brooklyn-data/meltano-on-github-actions,0,0,0,0,0,1,1,1,0
626
+ bruin-data/bruin,2131,30,30,0,0,301,301,2480,1315
627
+ bruin-data/ingestr,557,29,29,0,0,89,89,893,579
628
+ bruin-data/setup-bruin,9,0,0,0,0,1,1,2,0
629
+ brunocampos01/data-engineering,203,0,0,0,0,0,0,0,0
630
+ bryzgaloff/airflow-clickhouse-plugin,113,36,36,0,0,45,45,189,170
631
+ buildersoftio/cortex,111,7,7,0,0,3,3,1,0
632
+ bylethquant/simple-data-stack,14,0,0,0,0,0,0,0,0
633
+ bytehub-ai/bytehub,12,2,2,0,0,0,0,0,0
634
+ bytewax/bytewax,640,56,56,0,0,48,48,1544,1313
635
+ c0mm4nd/tronetl,4,0,0,0,0,4,4,7,3
636
+ caerbannogwhite/preludio,9,0,0,0,0,0,0,0,0
637
+ caiopizzol/cnpj-data-pipeline,27,13,13,0,0,3,3,5,0
638
+ calbergs/spotify-api,76,0,0,0,0,0,0,0,0
639
+ call518/MCP-Airflow-API,63,2,2,0,0,30,30,3,0
640
+ camillebaronnet/php-etl-framework,2,2,2,0,0,0,0,0,0
641
+ campolloram/my-notes,8,0,0,0,0,0,0,0,0
642
+ camposvinicius/aws-etl,2,0,0,0,0,0,0,0,0
643
+ camposvinicius/gcp-etl,26,0,0,0,0,0,0,0,0
644
+ caoergou/airflow-extended-api-plugin,10,1,1,0,0,1,1,1,0
645
+ capitalone/locopy,224,25,25,0,0,184,184,342,107
646
+ carnival-data/carnival,89,10,10,0,0,2,2,2,0
647
+ carteakey/cinemattr-db,4,0,0,0,0,0,0,0,0
648
+ castengine/insert-tools,7,0,0,0,0,0,0,0,0
649
+ catalyst-cooperative/ferc-xbrl-extractor,418,6,6,0,0,330,330,184,160
650
+ catalyst-cooperative/pudl,2802,814,814,0,0,941,941,11185,10169
651
+ cbib/Seurat-Integrate,10,0,0,0,0,0,0,0,0
652
+ cbslneu/physioview,51,8,8,0,0,2,2,33,5
653
+ ccao-data/data-architecture,581,118,118,0,0,48,48,2142,1881
654
+ cefriel/chimera,50,10,10,0,0,7,7,62,38
655
+ ceumicrodata/mETL,3,12,12,0,0,8,8,1,0
656
+ chainbound/apollo,6,0,0,0,0,0,0,0,0
657
+ chalk-ai/chalk-go,583,1,1,0,0,30,30,887,470
658
+ chandulal/airflow-testing,16,1,1,0,0,4,4,0,0
659
+ chayansraj/Data-Pipeline-with-dbt-using-Airflow-on-GCP,129,0,0,0,0,0,0,0,0
660
+ chck/ml-management-tools,2,0,0,0,0,0,0,0,0
661
+ cheat-tos/serving,12,3,3,0,0,4,4,2,0
662
+ chermenin/kio,37,0,0,0,0,1,1,0,0
663
+ chnm/bom,100,39,39,0,0,2,2,2,0
664
+ chonalchendo/football-data-warehouse,13,0,0,0,0,0,0,0,0
665
+ chonalchendo/footcrawl,1,0,0,0,0,0,0,0,0
666
+ chrischow/open_options_chains,0,0,0,0,0,0,0,0,0
667
+ chronicle-app/chronicle-etl,19,0,0,0,0,0,0,0,0
668
+ chuqiaoshen/Git-Influencer,74,0,0,0,0,0,0,0,0
669
+ churrodata/churro,24,0,0,0,0,14,14,0,0
670
+ cityofaustin/knackpy,83,16,16,0,0,7,7,8,4
671
+ clamp-orchestrator/clamp-core,108,14,14,0,0,16,16,40,17
672
+ claude89757/wechat-on-airflow,11,1,1,0,0,2,2,0,0
673
+ claudiocmm/data_engineering_projects,1,0,0,0,0,0,0,0,0
674
+ cloudposse/terraform-aws-glue,19,1,1,0,0,4,4,40,34
675
+ cloudquery/cloudquery,21588,0,0,0,0,17073,17073,27131,10677
676
+ cloudquery/plugin-sdk,2510,41,41,0,0,2017,2017,4647,2873
677
+ cloverdx/cloverdx-server-docker,1,1,1,0,0,0,0,3,0
678
+ cmgoffena13/fileloader,1,0,0,0,0,0,0,0,0
679
+ cmigpereira/data-engineering-zoomcamp-project,6,0,0,0,0,0,0,0,0
680
+ cmigpereira/mlops-zoomcamp-project,2,0,0,0,0,0,0,0,0
681
+ cnstlungu/portable-data-stack-airflow,3,3,3,0,0,0,0,0,0
682
+ cnstlungu/portable-data-stack-dagster,15,8,8,0,0,2,2,0,0
683
+ cnstlungu/portable-data-stack-mage,3,1,1,0,0,0,0,0,0
684
+ cnstlungu/postcard-company-datamart,6,0,0,0,0,0,0,0,0
685
+ cocoindex-io/cocoindex,1617,0,0,0,0,295,295,879,662
686
+ cocoindex-io/patient-intake-extraction,6,0,0,0,0,0,0,2,0
687
+ codeforkjeff/dbt-sqlite,17,20,20,0,0,5,5,11,9
688
+ coder2j/airflow-docker,1,0,0,0,0,1,1,0,0
689
+ coderxio/sagerx,278,28,28,0,0,53,53,194,87
690
+ codsalah/SeismoFlow-Lambda-Architecture-System,83,0,0,0,0,1,1,0,0
691
+ cognitree/kronos,50,0,0,0,0,54,54,109,54
692
+ coinpaprika/cq-source-coinpaprika,6,0,0,0,0,3,3,12,8
693
+ colliery-io/cloacina,74,1,1,0,0,0,0,0,0
694
+ combust/mleap,451,233,233,0,0,205,205,882,658
695
+ comitivaesperanca/backend,12,3,3,0,0,1,1,2,0
696
+ comitivaesperanca/data,8,0,0,0,0,1,1,8,0
697
+ conductor-oss/python-sdk,196,30,30,0,0,69,69,341,139
698
+ contube-org/contube,3,0,0,0,0,0,0,0,0
699
+ cortega26/polla,171,0,0,0,0,3,3,1,0
700
+ cottas-rdf/pycottas,160,1,1,0,0,1,1,0,0
701
+ crate/cratedb-airflow-tutorial,196,1,1,0,0,187,187,274,82
702
+ cre-dev/xml2db,35,11,11,0,0,17,17,0,0
703
+ criblpacks/cribl-knowledge-pack,8,0,0,0,0,2,2,4,2
704
+ criblpacks/cribl-syslog-input,19,0,0,0,0,3,3,0,0
705
+ criccomini/proto-schema-parser,46,17,17,0,0,17,17,10,9
706
+ criccomini/pymetastore,14,2,2,0,0,11,11,1,0
707
+ crs4/flatehr,43,2,2,0,0,0,0,0,0
708
+ csv2db/csv2db,16,8,8,0,0,2,2,7,5
709
+ cubefs/compass,106,20,20,0,0,57,57,90,10
710
+ cuebook/cuelake,172,4,4,0,0,15,15,10,0
711
+ cvilla87/PySpark-ETL-Telecom,5,0,0,0,0,0,0,0,0
712
+ cyoung43/airflow-demo,1,0,0,0,0,0,0,0,0
713
+ czelabueno/jai-workflow,12,2,2,0,0,0,0,0,0
714
+ d3b-center/image-deid-etl,45,6,6,0,0,4,4,84,74
715
+ dachafra/thesis,5,0,0,0,0,1,1,0,0
716
+ dagster-io/community-integrations,194,11,11,0,0,98,98,322,178
717
+ dagster-io/dagster,17396,4299,4299,0,0,1574,1574,47318,33351
718
+ dagster-io/dagster-open-platform,2,3,3,0,0,0,0,0,0
719
+ dagucloud/dagu,1196,289,289,0,0,235,235,827,219
720
+ dain55788/ELT-Data-Pipeline,11,0,0,0,0,0,0,0,0
721
+ dalenewman/Transformalize,95,9,9,0,0,6,6,0,0
722
+ damavis/airflow-pentaho-plugin,20,15,15,0,0,6,6,3,0
723
+ damklis/DataEngineeringProject,59,4,4,0,0,8,8,0,0
724
+ damklis/etljob,12,0,0,0,0,2,2,0,0
725
+ danhphan/trusted-data-pipeline,1,0,0,0,0,0,0,0,0
726
+ dannys-code-corner/incan,135,1,1,0,0,1,1,2,0
727
+ dashmug/glue-utils,40,0,0,0,0,16,16,114,18
728
+ data-burst/airflow-git-sync,17,5,5,0,0,5,5,14,7
729
+ data-burst/data-engineering-roadmap,20,6,6,0,0,9,9,50,41
730
+ data-burst/data-engineering-wiki,5,0,0,0,0,3,3,5,3
731
+ data-dot-all/dataall,820,385,385,0,0,376,376,5500,4883
732
+ data-engineering-community/data-engineering-wiki,55,64,64,0,0,43,43,133,31
733
+ data-prompt-query/dpq,3,0,0,0,0,0,0,0,0
734
+ data-solution-automation-engine/DIRECT,7,12,12,0,0,13,13,8,2
735
+ data-solution-automation-engine/data-solution-framework,6,0,0,0,0,1,1,0,0
736
+ databricks-industry-solutions/python-data-sources,34,1,1,0,0,7,7,39,30
737
+ databricks/dbt-databricks,729,326,326,0,0,134,134,1650,1279
738
+ datacamp/viewflow,6,0,0,0,0,0,0,6,3
739
+ datacareer-guide/datacareer-guide.github.io,13,0,0,0,0,2,2,2,0
740
+ datachecks/dcs-core,206,32,32,0,0,135,135,245,93
741
+ datacleaner/DataCleaner,279,483,483,0,0,574,574,288,232
742
+ datacompose/datacompose,10,0,0,0,0,0,0,0,0
743
+ datacoves/dbt-coves,218,23,23,0,0,104,104,175,123
744
+ dataengi/spark-challenges,6,0,0,0,0,2,2,2,2
745
+ dataength/automating-your-data-pipeline-with-apache-airflow,30,0,0,0,0,13,13,1,0
746
+ dataength/intro-to-airflow,1,0,0,0,0,0,0,0,0
747
+ dataflint/spark,41,12,12,0,0,17,17,42,18
748
+ dataforgelabs/dataforge-core,121,0,0,0,0,1,1,0,0
749
+ datafuel/DataPlatform_docker,8,3,3,0,0,3,3,0,0
750
+ datagouv/csv-detective,200,15,15,0,0,22,22,240,151
751
+ datainsider-co/rocket-bi,18,21,21,0,0,33,33,0,0
752
+ dataintoresults/data-brewery,4,0,0,0,0,0,0,0,0
753
+ datajoint/datajoint-python,720,493,493,0,0,560,560,1772,1365
754
+ datajuicer/data-juicer,553,183,183,0,0,285,285,1543,1142
755
+ datakaveri/iudx-adaptor-framework,58,4,4,0,0,20,20,2,2
756
+ datalakehouse/dlh-salesforce-analytics-dbt,31,0,0,0,0,0,0,0,0
757
+ datamill-co/target-postgres,142,27,27,0,0,27,27,197,121
758
+ dataplane-app/dataplane,512,6,6,0,0,398,398,17,2
759
+ dataplat/AzureDataPipelineTools,5,0,0,0,0,0,0,0,0
760
+ datarobot/airflow-provider-datarobot,211,1,1,0,0,14,14,856,774
761
+ datarootsio/notion-dbs-data-quality,3,0,0,0,0,0,0,0,0
762
+ datasphere-oss/datasphere-integration,15,0,0,0,0,0,0,0,0
763
+ datavane/datavines,333,94,94,0,0,149,149,49,30
764
+ datavane/tis,86,184,184,0,0,23,23,0,0
765
+ datawaves-xyz/dbt_datawaves,80,0,0,0,0,18,18,54,27
766
+ datayoga-io/datayoga,181,75,75,0,0,134,134,677,551
767
+ datayoga-io/lineage,2,0,0,0,0,0,0,0,0
768
+ datazip-inc/olake,484,120,120,0,0,298,298,3421,3102
769
+ datazip-inc/olake-ui,197,2,2,0,0,172,172,1858,1715
770
+ dathere/qsv,4337,354,354,0,0,1304,1304,2302,2095
771
+ datopian/aircan,60,15,15,0,0,30,30,89,59
772
+ david-siqi-liu/sparklyclean,4,0,0,0,0,0,0,0,0
773
+ davideganna/DataMorphers,53,0,0,0,0,3,3,9,9
774
+ davidolorundare/tempus_de_challenge,7,0,0,0,0,0,0,0,0
775
+ davidvanegas2/iceberg-s3-terraform-glue,19,0,0,0,0,0,0,0,0
776
+ dbt-labs/dbt-core,3748,3940,3940,0,0,1297,1297,13146,10004
777
+ dbt-labs/dbt-mcp,545,63,63,0,0,190,190,1405,962
778
+ dbt-labs/jaffle-shop,73,2,2,0,0,6,6,53,24
779
+ dbt-labs/jaffle-shop-mesh-finance,2,0,0,0,0,1,1,2,2
780
+ dbt-msft/dbt-sqlserver,357,119,119,0,0,99,99,190,155
781
+ ddotta/cookbook-rpolars,32,4,4,0,0,5,5,7,2
782
+ deaneeth/telco-churn-mlops-pipeline,15,0,0,0,0,0,0,0,0
783
+ debezium/debezium,8600,0,0,0,0,4375,4375,12510,10737
784
+ debezium/debezium-platform,334,0,0,0,0,187,187,363,324
785
+ debrief/pepys-import,1105,153,153,0,0,434,434,1088,745
786
+ debugger24/pyspark-test,21,0,0,0,0,1,1,1,0
787
+ debussy-labs/debussy_concert,47,0,0,0,0,19,19,25,19
788
+ decodableco/examples,38,1,1,0,0,1,1,67,62
789
+ decodingai-magazine/second-brain-ai-assistant-course,27,1,1,0,0,6,6,5,0
790
+ deepeth/mars,93,3,3,0,0,9,9,8,0
791
+ defai-digital/AutomatosX,0,30,30,0,0,7,7,5,0
792
+ degagawolde/data-warehouse-dbt-airflow-postgress,25,0,0,0,0,0,0,0,0
793
+ delftdata/valentine,108,17,17,0,0,15,15,14,2
794
+ delta-incubator/delta-sharing-rs,48,5,5,0,0,8,8,21,15
795
+ demml/opsml,209,1,1,0,0,6,6,138,26
796
+ deordie/deordie-digest,12,170,170,0,0,0,0,0,0
797
+ deordie/deordie-meetups,6,1,1,0,0,0,0,0,0
798
+ devopscorner/iac-terraform-emr,6,0,0,0,0,0,0,0,0
799
+ devopscorner/nifi,80,0,0,0,0,5,5,0,0
800
+ devopscorner/terraform-infra,26,0,0,0,0,0,0,0,0
801
+ devsgnr/breadroll,25,2,2,0,0,0,0,0,0
802
+ dflib/dflib,59,32,32,0,0,42,42,4,2
803
+ dfpc-coe/CloudTAK,913,127,127,0,0,42,42,122,21
804
+ dgarnitz/vectorflow,68,7,7,0,0,52,52,88,28
805
+ dhdaines/playa,410,22,22,0,0,15,15,24,24
806
+ diegoscarabelli/garmin-health-data,29,10,10,0,0,4,4,54,8
807
+ dieterich-lab/Baltica,11,6,6,0,0,1,1,0,0
808
+ digitalghost-dev/poke-cli,87,4,4,0,0,1,1,54,0
809
+ dimajix/flowman,221,6,6,0,0,116,116,6,5
810
+ dinhanhthi/mooc-de,2,0,0,0,0,0,0,0,0
811
+ dlt-hub/dlt,2215,758,758,0,0,888,888,6226,4978
812
+ dlt-hub/dlt-mcp,23,0,0,0,0,3,3,22,22
813
+ dlt-hub/verified-sources,337,127,127,0,0,216,216,1240,984
814
+ dmitry-brazhenko/airflow_tutorial,1,0,0,0,0,0,0,0,0
815
+ dmlogv/airflow-tutorial,0,2,2,0,0,0,0,0,0
816
+ dnguyenngoc/real-time-analytic,3,0,0,0,0,0,0,0,0
817
+ dobraczka/forayer,10,0,0,0,0,0,0,0,0
818
+ dobraczka/klinker,11,0,0,0,0,0,0,0,0
819
+ dod-advana/gamechanger-data,215,1,1,0,0,173,173,383,157
820
+ dogukannulu/airflow_kafka_cassandra_mongodb,17,0,0,0,0,0,0,0,0
821
+ dogukannulu/crypto_api_kafka_airflow_streaming,12,0,0,0,0,0,0,0,0
822
+ dogukannulu/csv_extract_airflow_docker,13,0,0,0,0,0,0,0,0
823
+ dogukannulu/streaming_data_processing,8,0,0,0,0,0,0,0,0
824
+ domenp/aircal,8,0,0,0,0,1,1,0,0
825
+ dominictarro/prefecto,24,4,4,0,0,3,3,7,5
826
+ dotflow-io/dotflow,110,0,0,0,0,9,9,55,9
827
+ douban/helpdesk,145,7,7,0,0,33,33,55,50
828
+ doublecloud/terraform-provider-doublecloud,80,2,2,0,0,41,41,176,125
829
+ drisskhattabi6/Real-Time-Twitter-Sentiment-Analysis,29,0,0,0,0,0,0,0,0
830
+ drshahizan/special-topic-data-engineering,3900,12,12,0,0,0,0,0,0
831
+ dsaidgovsg/airflow-pipeline,92,3,3,0,0,27,27,121,81
832
+ dtmirizzi/target-elasticsearch,6,1,1,0,0,9,9,6,2
833
+ dushyantkhosla/airflow4ds,4,0,0,0,0,0,0,0,0
834
+ duyet/airflow-docker-compose,5,0,0,0,0,0,0,0,0
835
+ duyet/grant-rs,106,3,3,0,0,35,35,33,30
836
+ dwallace0723/dbt-cloud-plugin,1,0,0,0,0,0,0,2,2
837
+ dxer/dataLink,6,0,0,0,0,0,0,0,0
838
+ dyneth02/Air-Quality-Trends-Analysis-Project,171,0,0,0,0,0,0,0,0
839
+ eZWALT/eZAutoML,1,0,0,0,0,0,0,0,0
840
+ easysql/easy_sql,61,3,3,0,0,31,31,34,22
841
+ ebonnal/streamable,51,13,13,0,0,4,4,5,3
842
+ ec-jrc/SMDRM,23,0,0,0,0,0,0,0,0
843
+ edanalytics/earthmover,142,11,11,0,0,66,66,264,164
844
+ edgBR/delta-lake-polars,43,0,0,0,0,7,7,0,0
845
+ edgarrmondragon/meltano-dogfood,551,1,1,0,0,374,374,283,0
846
+ edkreuk/FMD_FRAMEWORK,165,23,23,0,0,12,12,20,14
847
+ edrewitz/WxData,442,1,1,0,0,0,0,0,0
848
+ elastic/LogstashUI,23,1,1,0,0,0,0,0,0
849
+ elastic/eland,442,114,114,0,0,149,149,999,742
850
+ elastic/logstash,2915,3315,3315,0,0,3122,3122,14579,9351
851
+ elasticlabs/airflow-jupyter-docker-compose,1,0,0,0,0,0,0,0,0
852
+ elastiflow/pipelines,30,1,1,0,0,11,11,109,84
853
+ elementary-data/dbt-data-reliability,961,33,33,0,0,252,252,2341,1802
854
+ elementary-data/elementary,2076,0,0,0,0,348,348,2369,1663
855
+ elixir-europe/plant-brapi-etl-faidare,91,0,0,0,0,13,13,40,27
856
+ elyra-ai/elyra,1258,875,875,0,0,1164,1164,5560,4768
857
+ elyra-ai/pipeline-editor,157,35,35,0,0,150,150,441,350
858
+ emeraldpay/dshackle-archive,16,0,0,0,0,7,7,15,7
859
+ enesgulerdev/hm-fashion-recommender,2,0,0,0,0,0,0,0,0
860
+ enspirit/monolens,2,0,0,0,0,0,0,0,0
861
+ epoch8/airflow-exporter,123,37,37,0,0,37,37,9,2
862
+ ericdaat/data-stack,2,0,0,0,0,0,0,0,0
863
+ erictleung/data-science,2,0,0,0,0,0,0,0,0
864
+ erikhoward/atlas,2,0,0,0,0,0,0,0,0
865
+ erkkah/sslr,5,0,0,0,0,0,0,0,0
866
+ ermshaua/preon,13,2,2,0,0,0,0,5,5
867
+ erogluegemen/Earthquake-Emergency-Response-Robots,13,0,0,0,0,0,0,0,0
868
+ eschizoid/kpipe,86,0,0,0,0,3,3,82,74
869
+ eventvisor/eventvisor,26,0,0,0,0,0,0,1,0
870
+ everycure-org/kedro-argo,81,5,5,0,0,36,36,110,71
871
+ evidence-dev/evidence,2435,494,494,0,0,512,512,1893,1090
872
+ ewc3labs/excel-power-query-editor,3,0,0,0,0,0,0,1,0
873
+ exivity/templates,28,0,0,0,0,3,3,2,0
874
+ exospherehost/runtime,609,27,27,0,0,481,481,720,648
875
+ ez-cdc/dbmazz,80,2,2,0,0,61,61,24,0
876
+ f-lab-edu/league-of-legends-data-solution,20,0,0,0,0,0,0,99,95
877
+ fab2s/YaEtl,2,5,5,0,0,0,0,0,0
878
+ fabioba/mlops-architecture,10,0,0,0,0,0,0,0,0
879
+ fabricks-framework/fabricks,158,31,31,0,0,13,13,43,25
880
+ fairtracks/omnipy,32,36,36,0,0,5,5,4,0
881
+ fblettner/liberty,30,0,0,0,0,0,0,0,0
882
+ fcaylus/airflow-grpc-starter,1,0,0,0,0,0,0,0,0
883
+ fdmorison/tiozin,172,0,0,0,0,0,0,0,0
884
+ feast-dev/feast,3379,1323,1323,0,0,2825,2825,14201,12001
885
+ feathr-ai/feathr,709,102,102,0,0,323,323,3156,3027
886
+ fedspendingtransparency/usaspending-api,6573,25,25,0,0,2122,2122,10567,7426
887
+ feldera/feldera,1863,1118,1118,0,0,580,580,9752,8267
888
+ feluelle/airflint,136,1,1,0,0,113,113,7,6
889
+ feluelle/airflow-diagrams,173,5,5,0,0,122,122,3,0
890
+ feluelle/finance-data-builder,1,0,0,0,0,0,0,0,0
891
+ ferxohn/pyspark_with_databricks,23,0,0,0,0,0,0,0,0
892
+ fhirpack/fhirpack,1,0,0,0,0,1,1,0,0
893
+ fieldryand/goflow,82,7,7,0,0,19,19,1,0
894
+ finloop/airflow-postgres-superset-on-docker,10,2,2,0,0,4,4,7,0
895
+ firebolt-db/dbt-firebolt,144,16,16,0,0,26,26,238,167
896
+ firelink-data/drive,20,0,0,0,0,5,5,0,0
897
+ firelink-sh/evolve-py,11,0,0,0,0,2,2,0,0
898
+ firelink-sh/padder,14,0,0,0,0,4,4,0,0
899
+ fkie-cad/Logprep,701,106,106,0,0,315,315,2355,1821
900
+ flavienbwk/Pandemic-Knowledge,7,0,0,0,0,2,2,8,0
901
+ flipkart-incubator/spark-transformers,20,0,0,0,0,8,8,36,35
902
+ flock-lab/flock,386,1,1,0,0,30,30,40,19
903
+ flowsynx/flowsynx,157,2,2,0,0,100,100,126,25
904
+ fluvio-community/fluvio,778,929,929,0,0,350,350,5168,4028
905
+ flyanakin/CountMoney,41,0,0,0,0,0,0,2,0
906
+ fmelihh/recommendation-engine,6,0,0,0,0,0,0,0,0
907
+ fmind/mlops-python-package,32,4,4,0,0,13,13,19,0
908
+ fonsecagabriella/data_engineering,12,0,0,0,0,1,1,1,0
909
+ fortiql/data-forge,11,0,0,0,0,0,0,2,0
910
+ fpcarneiro/data-engineer-project,3,0,0,0,0,0,0,0,0
911
+ fpgmaas/stream-iot,2,0,0,0,0,0,0,0,0
912
+ frankframework/frankframework,5814,1907,1907,0,0,5311,5311,16193,11112
913
+ franloza/coches-net-dashboard,18,0,0,0,0,0,0,0,0
914
+ franloza/running-races-insights,52,0,0,0,0,51,51,28,0
915
+ fremantle-industries/slurpee,8,0,0,0,0,316,316,0,0
916
+ frieds/horsing_around_etl,0,0,0,0,0,0,0,0,0
917
+ fristonio/xene,4,0,0,0,0,0,0,0,0
918
+ froukje/de-zoomcamp,1,0,0,0,0,0,0,0,0
919
+ fulldecent/google-sheets-etl,10,0,0,0,0,0,0,0,0
920
+ fzliu/radient,0,0,0,0,0,0,0,0,0
921
+ gabapcia/aletheia,1,0,0,0,0,0,0,0,0
922
+ gabledata/recap,59,13,13,0,0,19,19,106,95
923
+ gabriel-ballesteros/mtg-metagame-scraper,12,1,1,0,0,0,0,0,0
924
+ gacarrillor/AppendFeaturesToLayer,30,7,7,0,0,5,5,4,0
925
+ galliaproject/gallia-core,2,1,1,0,0,0,0,0,0
926
+ garretthoffman/deploying_data_science_apps,0,0,0,0,0,0,0,0,0
927
+ garystafford/aws-airflow-demo,11,0,0,0,0,0,0,0,0
928
+ garystafford/tickit-data-lake-demo,23,0,0,0,0,8,8,0,0
929
+ gbazad93/AirFlow-ML-Data-Integration,65,0,0,0,0,0,0,0,0
930
+ gdoumenc/coworks,13,1,1,0,0,4,4,6,0
931
+ geeknam/aws-neptune-aml,0,0,0,0,0,0,0,0,0
932
+ genular/pandora,87,8,8,0,0,1,1,0,0
933
+ geopython/stetl,48,14,14,0,0,44,44,19,5
934
+ george0st/Ff2Cql,132,1,1,0,0,0,0,2,0
935
+ gestaogovbr/FastETL,123,9,9,0,0,33,33,71,18
936
+ getdozer/dozer,1465,247,247,0,0,810,810,2498,1177
937
+ getindata/kedro-airflow-k8s,95,15,15,0,0,41,41,186,118
938
+ getnao/nao,290,136,136,0,0,114,114,824,621
939
+ giacbrd/SmartPipeline,7,0,0,0,0,1,1,0,0
940
+ ginkgobioworks/geckopy,0,2,2,0,0,0,0,0,0
941
+ gird-dev/gird,0,0,0,0,0,0,0,0,0
942
+ giros-dit/semantic-data-aggregator,141,9,9,0,0,13,13,77,18
943
+ giucris/yasp,29,1,1,0,0,2,2,2,2
944
+ gizm00/oreilly_dataeng_book,1,0,0,0,0,0,0,0,0
945
+ glasgowcompbio/pyMultiOmics,9,1,1,0,0,3,3,2,2
946
+ glassflow/cli,17,0,0,0,0,3,3,8,0
947
+ glesica/pkgraph,4,1,1,0,0,1,1,0,0
948
+ globalbioticinteractions/globalbioticinteractions,26,158,158,0,0,18,18,1,0
949
+ gmyrianthous/dbt-airflow,108,1,1,0,0,23,23,33,8
950
+ gmyrianthous/dbt-dummy,2,0,0,0,0,0,0,0,0
951
+ go-pkgz/flow,3,0,0,0,0,1,1,0,0
952
+ goamegah/flowstate,9,0,0,0,0,4,4,0,0
953
+ godatadriven/whirl,79,20,20,0,0,35,35,85,65
954
+ gonwi/celo-etl,2,0,0,0,0,0,0,0,0
955
+ google/grizzly,8,0,0,0,0,1,1,0,0
956
+ gorango/flowcraft,6,9,9,0,0,5,5,0,0
957
+ gouline/dbt-metabase,194,106,106,0,0,69,69,262,212
958
+ grailbio/bigslice,164,8,8,0,0,12,12,226,154
959
+ granthjoshi01/AQI-Analysis-Project,129,0,0,0,0,0,0,0,0
960
+ great-expectations/airflow-provider-great-expectations,154,55,55,0,0,88,88,394,291
961
+ great-expectations/great_expectations,6886,1689,1689,0,0,1819,1819,28652,23356
962
+ grofit/persistity,3,0,0,0,0,1,1,0,0
963
+ growthbook/growthbook,3544,372,372,0,0,382,382,9106,7121
964
+ guidok91/spark-movies-etl,113,0,0,0,0,2,2,0,0
965
+ guidok91/spark-structured-streaming-kafka,32,1,1,0,0,4,4,0,0
966
+ gurmeetsaran/sqltesting,115,0,0,0,0,12,12,46,0
967
+ gustavoeenriquez/MakerAi,5,54,54,0,0,6,6,0,0
968
+ gzilles/airflow_etl,18,0,0,0,0,0,0,0,0
969
+ hackersandslackers/bigquery-sqlalchemy-tutorial,18,0,0,0,0,5,5,0,0
970
+ hadron-project/hadron,23,0,0,0,0,0,0,0,0
971
+ halestudio/hale,1190,217,217,0,0,538,538,1517,1008
972
+ hankehly/deploy-airflow-on-ecs-fargate,28,0,0,0,0,0,0,0,0
973
+ harrydevforlife/building-lakehouse,33,0,0,0,0,0,0,0,0
974
+ harshadmanglani/polaris,12,1,1,0,0,1,1,0,0
975
+ hawkirk/scorecard_pipeline,16,0,0,0,0,0,0,0,0
976
+ hbz/lobid-resources,384,552,552,0,0,524,524,1247,792
977
+ hellomaxime/data-platform-on-kubernetes,2,0,0,0,0,0,0,0,0
978
+ hemansnation/AI-Engineer-Headquarters,95,0,0,0,0,2,2,0,0
979
+ heumsi/apache-airflow-tutorials-for-beginner,1,0,0,0,0,0,0,0,0
980
+ hexnn/Stark,111,0,0,0,0,0,0,0,0
981
+ hgrif/airflow-tutorial,12,0,0,0,0,5,5,1,0
982
+ hhtrieu0108/Ohitv_End_To_End_Project,9,0,0,0,0,0,0,0,0
983
+ hiejulia/Data-pipeline-project,18,0,0,0,0,8,8,0,0
984
+ hifxit/dataligo,44,0,0,0,0,1,1,0,0
985
+ hightouchio/airflow-provider-hightouch,6,2,2,0,0,2,2,10,0
986
+ hoangsonww/Customizable-AI-Chatbot,20,0,0,0,0,0,0,16,4
987
+ hoangsonww/End-to-End-Data-Pipeline,24,0,0,0,0,0,0,13,6
988
+ hocinemahni/ETL_OLAP_REPORTING_BI,13,0,0,0,0,0,0,0,0
989
+ hofstadter-io/cuetils,3,0,0,0,0,1,1,0,0
990
+ hooopo/kiba-plus,9,4,4,0,0,11,11,1,0
991
+ hooopo/oh-my-github-pipeline,26,0,0,0,0,0,0,0,0
992
+ hooopo/repo-track-pipeline,47,1,1,0,0,1,1,0,0
993
+ hpcflow/matflow,390,18,18,0,0,134,134,265,65
994
+ hukenovs/coursera_ml_da_specialization,4,0,0,0,0,0,0,0,0
995
+ husnusensoy/tt-bootcamp,18,1,1,0,0,6,6,0,0
996
+ hussein-awala/spark-on-k8s,123,1,1,0,0,1,1,7,6
997
+ hyparam/icebird,12,1,1,0,0,0,0,1,0
998
+ iBridges-for-iRODS/iBridges,342,59,59,0,0,95,95,509,400
999
+ ibrahim-Sobh/heart_stroke_prediction,5,1,1,0,0,0,0,0,0
1000
+ icoxfog417/airflow-ml-pipeline,2,0,0,0,0,0,0,0,0
1001
+ ictchenbo/SmartETL,16,1,1,0,0,2,2,0,0
1002
+ idealista/airflow-role,57,15,15,0,0,17,17,127,116
1003
+ iepathos/prodigy,58,0,0,0,0,58,58,0,0
1004
+ iesahin/xvc,139,1,1,0,0,20,20,43,5
1005
+ ihnokim/codepack,99,5,5,0,0,0,0,0,0
1006
+ ikama-innovation/Bauta,72,3,3,0,0,4,4,0,0
1007
+ ilia-khaustov/batchout,0,0,0,0,0,0,0,0,0
1008
+ ilichDataEngineer/DigitalMarketingAnalysis-DataEngineerIO-CapstoneProject-DE-BTC2024,17,0,0,0,0,6,6,0,0
1009
+ illuin-tech/data-pipeline,176,0,0,0,0,117,117,145,16
1010
+ imadmali/data-engineering,4,0,0,0,0,0,0,0,0
1011
+ immu0001/Udacity-Data-Engineer-nanodegree,57,0,0,0,0,0,0,0,0
1012
+ imsanjoykb/Data-Science-Regular-Bootcamp,30,0,0,0,0,0,0,0,0
1013
+ infOpen/ansible-role-airflow,35,4,4,0,0,27,27,1,0
1014
+ ing-bank/ordeq,455,5,5,0,0,51,51,658,373
1015
+ insitro/redun,382,25,25,0,0,22,22,91,55
1016
+ insolar/block-explorer,172,1,1,0,0,8,8,1104,1097
1017
+ instill-ai/cli,75,0,0,0,0,69,69,62,16
1018
+ instill-ai/console,1463,0,0,0,0,314,314,470,219
1019
+ instill-ai/instill-core,595,274,274,0,0,432,432,342,131
1020
+ internetofwater/scheduler,172,9,9,0,0,34,34,164,89
1021
+ iobruno/data-engineering-labs,66,0,0,0,0,0,0,0,0
1022
+ ipeluffo/airflow-on-kubernetes,1,0,0,0,0,0,0,0,0
1023
+ irajhedayati/data-engineering,138,0,0,0,0,115,115,0,0
1024
+ ismaildawoodjee/GreatEx,10,2,2,0,0,1,1,0,0
1025
+ ismaildawoodjee/aws-data-pipeline,1,1,1,0,0,0,0,0,0
1026
+ itinycheng/flink-platform-backend,179,2,2,0,0,174,174,0,0
1027
+ itpp-labs/sync-addons,45,45,45,0,0,282,282,498,371
1028
+ itsadityagupta/yelposphere,7,0,0,0,0,0,0,0,0
1029
+ iusztinpaul/energy-forecasting,127,12,12,0,0,3,3,0,0
1030
+ jaanli/american-community-survey,8,0,0,0,0,2,2,0,0
1031
+ jackgisby/tfl-bikes-data-pipeline,4,0,0,0,0,0,0,0,0
1032
+ jackmleitch/StravaDataPipline,21,0,0,0,0,0,0,0,0
1033
+ jackv-murray/lastfm-scrobble-analysis,80,0,0,0,0,0,0,0,0
1034
+ jacobwarren/social-media-ai-engineering-etl,1,0,0,0,0,0,0,0,0
1035
+ jamesbyars/apache-spark-etl-pipeline-example,0,0,0,0,0,0,0,0,0
1036
+ jamil-said/code-samples,0,0,0,0,0,0,0,0,0
1037
+ jasondavindev/open-dataplatform,85,0,0,0,0,0,0,0,0
1038
+ jay-johnson/network-pipeline,2,0,0,0,0,0,0,0,0
1039
+ jayamanikharyono/airflow-dag-action,49,3,3,0,0,6,6,0,0
1040
+ jayzern/dagster-mflix-demo,1,0,0,0,0,0,0,0,0
1041
+ jblanco89/MLOps_zoomcamp_course,1,0,0,0,0,0,0,0,0
1042
+ jbogard/bulk-writer,22,22,22,0,0,32,32,79,41
1043
+ jchunk-io/jchunk,115,2,2,0,0,26,26,24,0
1044
+ jean-pasqualini/import,22,1,1,0,0,2,2,16,0
1045
+ jeantardelli/data-engineering-with-python,3,0,0,0,0,0,0,0,0
1046
+ jellyfish-toolkit/pipe-framework,29,0,0,0,0,11,11,18,3
1047
+ jeremylongshore/startaitools.com,3,0,0,0,0,2,2,0,0
1048
+ jf-tech/omniparser,129,38,38,0,0,5,5,81,77
1049
+ jgoerner/beyond-jupyter-mooc,1,0,0,0,0,0,0,0,0
1050
+ jgoerner/data-science-stack-cookiecutter,14,0,0,0,0,0,0,0,0
1051
+ jitsucom/jitsu,158,417,417,0,0,111,111,440,345
1052
+ jjmontesl/cubetl,11,6,6,0,0,5,5,2,2
1053
+ jkminder/data2neo,73,2,2,0,0,0,0,0,0
1054
+ jksinghpro/docker-airflow,0,0,0,0,0,0,0,0,0
1055
+ jl178/airlift,57,0,0,0,0,17,17,1,0
1056
+ jmeisele/ml-ops,61,0,0,0,0,14,14,1,0
1057
+ jmeisele/ml-ops-kafka,6,0,0,0,0,0,0,0,0
1058
+ jmoc3/ETL_with_Airflow,2,0,0,0,0,0,0,0,0
1059
+ jms0522/Medical-project,223,1,1,0,0,1,1,2,0
1060
+ joeyism/jsonl-to-conll,2,1,1,0,0,1,1,0,0
1061
+ jofaval/tfm-iabd,56,0,0,0,0,21,21,9,2
1062
+ johnshiver/plankton,1,0,0,0,0,0,0,0,0
1063
+ jolares/example-gcp-dataform,1,0,0,0,0,0,0,0,0
1064
+ jomariya23156/sales-forecast-mlops-at-scale,0,4,4,0,0,0,0,0,0
1065
+ jonathanbhaskar/dagster-odp,16,2,2,0,0,0,0,0,0
1066
+ joonan-lab/cwas,205,0,0,0,0,23,23,160,7
1067
+ jordanvolz/lolpop,61,0,0,0,0,0,0,1,0
1068
+ jordilin/gitar,324,0,0,0,0,3,3,0,0
1069
+ jorvik-io/jorvik,27,5,5,0,0,0,0,92,73
1070
+ josephmachado/beginner_de_project,17,8,8,0,0,2,2,2,0
1071
+ josephmachado/bitcoinMonitor,8,0,0,0,0,1,1,0,0
1072
+ josephmachado/data_engineering_best_practices,6,0,0,0,0,0,0,0,0
1073
+ josephmachado/data_engineering_for_beginners_code,3,0,0,0,0,0,0,0,0
1074
+ josephmachado/efficient_data_processing_spark,8,0,0,0,0,3,3,1,0
1075
+ josephmachado/online_store,3,1,1,0,0,0,0,0,0
1076
+ jpaulm/fbp-etl,227,0,0,0,0,61,61,0,0
1077
+ judeleonard/Prescriber-ETL-data-pipeline,29,0,0,0,0,0,0,0,0
1078
+ julian-west/e4ds-snippets,12,0,0,0,0,0,0,0,0
1079
+ jumpingchu/Airflow-Course,1,0,0,0,0,0,0,0,0
1080
+ jumpmindinc/metl,78,0,0,0,0,25,25,52,25
1081
+ jvalue/jayvee,479,94,94,0,0,27,27,1567,1276
1082
+ jwhulette/pipes,37,1,1,0,0,7,7,2,0
1083
+ kadnan/Airflow-Tutorial,1,0,0,0,0,0,0,0,0
1084
+ kadnan/airflow-scraping,1,0,0,0,0,0,0,0,0
1085
+ kadreio/relativistic,4,0,0,0,0,0,0,0,0
1086
+ kaiachain/kaia-etl,22,0,0,0,0,3,3,48,30
1087
+ kalisio/krawler,280,9,9,0,0,73,73,0,0
1088
+ kanton-bern/hellodata-be,403,12,12,0,0,167,167,90,30
1089
+ kantord/just-dashboard,133,1,1,0,0,81,81,14,0
1090
+ kaoutaar/end-to-end-etl-pipeline-jcdecaux-API,8,0,0,0,0,0,0,0,0
1091
+ karanpratapsingh/scale-etl,1,0,0,0,0,0,0,0,0
1092
+ kassette-ai/kassette-server,56,0,0,0,0,14,14,17,9
1093
+ kay-ou/SimTradeData,4,4,4,0,0,0,0,0,0
1094
+ keboola/mcp-server,596,6,6,0,0,107,107,2978,2787
1095
+ kellyjadams/spotify-data-analyze,15,0,0,0,0,0,0,0,0
1096
+ kelvins/awesome-dataops,66,0,0,0,0,9,9,12,4
1097
+ kestra-io/examples,55,2,2,0,0,5,5,5,0
1098
+ ketgo/marshmallow-pyspark,13,5,5,0,0,2,2,0,0
1099
+ kevin-hanselman/dud,62,12,12,0,0,38,38,30,17
1100
+ keyhankamyar/TickVault,1,0,0,0,0,0,0,0,0
1101
+ kh4r00n/Engenharia-de-Dados-_Projeto-Final-Soul-Code-Academy,3,0,0,0,0,0,0,0,0
1102
+ khezen/avro,7,0,0,0,0,1,1,0,0
1103
+ khushal2405/ETL-pipeline-using-Airflow-and-AWS-EMR,15,0,0,0,0,0,0,0,0
1104
+ khuyentran1401/prefect-alert,9,1,1,0,0,2,2,0,0
1105
+ khuyentran1401/production-ready-data-science-code,2,0,0,0,0,0,0,0,0
1106
+ kiangkiangkiang/Machine-Learning-Model-Serving,1,0,0,0,0,0,0,0,0
1107
+ kids-first/kf-lib-data-ingest,500,61,61,0,0,39,39,1691,1403
1108
+ kimaina/openmrs-etl,1,0,0,0,0,0,0,0,0
1109
+ kimtth/ds-pyspark-tika-text-extraction,7,0,0,0,0,0,0,0,0
1110
+ kingabzpro/Data-Pipeline-with-Prefect,2,0,0,0,0,0,0,0,0
1111
+ kinto-technologies/SpringBoot3BatchStarter,3,0,0,0,0,0,0,0,0
1112
+ kiwamizamurai/tsumugi,1,0,0,0,0,0,0,0,0
1113
+ kiwicom/terraform-provider-montecarlo,107,0,0,0,0,22,22,7,0
1114
+ kkumyk/server-logs-daily-data-pipeline,2,0,0,0,0,0,0,0,0
1115
+ kkuznets/crypto-sentiment-data-pipeline,0,0,0,0,0,0,0,0,0
1116
+ kmatarese/glide,4,0,0,0,0,0,0,0,0
1117
+ knowsuchagency/docker-compose-airflow,3,0,0,0,0,0,0,0,0
1118
+ kodomonocch1/see_proto,70,2,2,0,0,0,0,0,0
1119
+ kokes/od,114,11,11,0,0,8,8,18,18
1120
+ koksang/social-media-analysis,2,0,0,0,0,2,2,1,0
1121
+ koltyakov/cq-source-sharepoint,13,9,9,0,0,3,3,2,2
1122
+ konosp/dbt-airflow-docker-compose,8,3,3,0,0,1,1,0,0
1123
+ konosp/dbt-on-airflow,4,0,0,0,0,0,0,0,0
1124
+ konturio/geocint-runner,48,9,9,0,0,22,22,266,240
1125
+ koopjs/koop,821,177,177,0,0,471,471,201,28
1126
+ koralium/flowtide,942,2,2,0,0,240,240,1114,832
1127
+ krenalis/krenalis,868,505,505,0,0,3,3,85,72
1128
+ kroudir/Data-Engineer-Nanodegree-Projects-Udacity,7,0,0,0,0,0,0,0,0
1129
+ ksbg/sparklanes,7,0,0,0,0,2,2,0,0
1130
+ kufu-ai/dvs-inbulk,5,0,0,0,0,0,0,0,0
1131
+ kuwala-io/kuwala,10,11,11,0,0,25,25,261,198
1132
+ kyegomez/Athena-for-Search,7,0,0,0,0,2,2,0,0
1133
+ kzaremski/apple-notes-exporter,18,17,17,0,0,2,2,1,0
1134
+ lakehq/sail,1195,27,27,0,0,602,602,2985,2403
1135
+ lancedb/cocoindex-lancedb-demo,8,0,0,0,0,0,0,0,0
1136
+ lapiceroazul4/Ingenieria-Datos-IA-Roadmap-UAO,23,2,2,0,0,4,4,3,0
1137
+ larribas/dagger,38,3,3,0,0,2,2,62,60
1138
+ lealre/etl-airflow,7,0,0,0,0,0,0,0,0
1139
+ leemengtw/awesome-datascience-tw,1,0,0,0,0,0,0,0,0
1140
+ legout/flowerpower,24,6,6,0,0,4,4,21,2
1141
+ lelouvincx/goodreads-elt-pipeline,2,0,0,0,0,0,0,0,0
1142
+ level-vc/useful,2,0,0,0,0,0,0,0,0
1143
+ lexy-ai/lexy,109,1,1,0,0,2,2,39,31
1144
+ lfunderburk/fuel-electric-hybrid-vehicle-ml,37,0,0,0,0,0,0,0,0
1145
+ licaonfee/selina,100,0,0,0,0,66,66,19,0
1146
+ lightfeed/extractor,70,0,0,0,0,1,1,0,0
1147
+ lightfeed/sdk,24,0,0,0,0,0,0,0,0
1148
+ limhaneul12/kafka-gov,16,0,0,0,0,0,0,0,0
1149
+ linkedin/Hoptimator,181,0,0,0,0,12,12,461,319
1150
+ linkedin/data-integration-library,76,0,0,0,0,23,23,92,75
1151
+ linkedpipes/etl,58,215,215,0,0,29,29,0,0
1152
+ linkml/linkml-map,105,31,31,0,0,26,26,539,496
1153
+ linkml/linkml-model,215,9,9,0,0,49,49,206,137
1154
+ lisad/phaser,109,11,11,0,0,3,3,158,75
1155
+ lisallreiber/biketheft_berlin,17,0,0,0,0,0,0,0,0
1156
+ lithops-cloud/airflow-plugin,103,0,0,0,0,35,35,0,0
1157
+ liuzheng/airflow-ansible-provider,1,1,1,0,0,0,0,0,0
1158
+ locnd-172/book-product-data-pipeline-project,1,0,0,0,0,0,0,0,0
1159
+ long2ice/meilisync,77,4,4,0,0,42,42,9,6
1160
+ longNguyen010203/ECommerce-ELT-Pipeline,1,0,0,0,0,0,0,0,0
1161
+ longNguyen010203/Youtube-Recommend-Master-ETL-Pipeline,2,0,0,0,0,0,0,0,0
1162
+ longbuivan/airflow-spark-data-pipeline,4,0,0,0,0,0,0,0,0
1163
+ lsc-project/lsc,111,110,110,0,0,69,69,159,90
1164
+ lsjsj92/airflow_tutorial,1,0,0,0,0,0,0,0,0
1165
+ luatnc87/modern-data-warehouse-modeling-and-data-quality-with-dbt-openmetadata,1,0,0,0,0,0,0,0,0
1166
+ lucaspfigueiredo/elt-pipeline,0,0,0,0,0,0,0,0,0
1167
+ luchonaveiro/dbt-postgres-tutorial,7,0,0,0,0,0,0,0,0
1168
+ luchonaveiro/great-expectations-postgres-tutorial,2,0,0,0,0,0,0,0,0
1169
+ luchonaveiro/open-source-data-stack,3,0,0,0,0,0,0,0,0
1170
+ ludwigm/prefect-demo-flow,1,0,0,0,0,0,0,0,0
1171
+ lynxkite/lynxkite-2000,239,14,14,0,0,14,14,271,227
1172
+ lyrasis/kiba-extend,181,2,2,0,0,8,8,2,0
1173
+ lzjever/routilux,3,1,1,0,0,1,1,0,0
1174
+ m-lab/etl,707,66,66,0,0,6,6,1044,701
1175
+ m-lab/etl-gardener,290,27,27,0,0,3,3,652,505
1176
+ m-lab/etl-schema,137,17,17,0,0,3,3,288,186
1177
+ m1racoli/airflow-memray,4,0,0,0,0,0,0,0,0
1178
+ machphy/Real-Time-Cyber-Incident-Monitoring-and-Analysis-Tool,49,4,4,0,0,5,5,0,0
1179
+ maciejkepa/ai-ml-in-practice,32,0,0,0,0,0,0,0,0
1180
+ mag1cfrog/timeseries-table-format,136,0,0,0,0,6,6,66,0
1181
+ mage-ai/machine_learning,2,0,0,0,0,0,0,0,0
1182
+ mage-ai/mage-ai,5078,483,483,0,0,433,433,3582,2623
1183
+ mahdi-eth/crypto-pipeline-airflow,2,0,0,0,0,0,0,0,0
1184
+ mahmoudparsian/big-data-mapreduce-course,24,0,0,0,0,2,2,1,0
1185
+ mahmoudparsian/data-warehousing,23,0,0,0,0,0,0,0,0
1186
+ manuel-lang/Data-Engineering-Nanodegree,6,0,0,0,0,1,1,0,0
1187
+ mara/mara-etl-tools,3,1,1,0,0,3,3,7,3
1188
+ mara/mara-example-project-2,6,2,2,0,0,5,5,1,0
1189
+ mara/mara-pipelines,55,10,10,0,0,17,17,110,89
1190
+ marcio-azevedo/fsharp-data-processing-pipeline,2,0,0,0,0,1,1,0,0
1191
+ marciok/gust,35,1,1,0,0,4,4,25,3
1192
+ marclamberti/docker-airflow,2,0,0,0,0,0,0,1,0
1193
+ marcosmarxm/airflow-testing-ci-workflow,37,0,0,0,0,2,2,2,0
1194
+ marianamartiyns/ChatBot-MunicipAI,9,0,0,0,0,0,0,0,0
1195
+ marimo-team/examples,28,0,0,0,0,7,7,1,0
1196
+ marklogic-community/pipes,53,103,103,0,0,8,8,6,0
1197
+ markm39/dxsh,4,0,0,0,0,0,0,0,0
1198
+ marsupialtail/quokka,126,4,4,0,0,21,21,0,0
1199
+ martandsingh/ApacheSpark,18,1,1,0,0,0,0,1,0
1200
+ masakhwe/Commitment-of-Traders-COT-Analytics,8,0,0,0,0,0,0,0,0
1201
+ mathewsrc/ETL-Chicago-Cafe-Permits,58,0,0,0,0,0,0,0,0
1202
+ matiuszka/smort-query,315,0,0,0,0,192,192,0,0
1203
+ matsudan/airflow-dag-examples,28,0,0,0,0,2,2,2,0
1204
+ mattiasthalen/adventure-works,30,0,0,0,0,0,0,0,0
1205
+ mattiasthalen/arcane-insight,10,0,0,0,0,0,0,0,0
1206
+ mattiasthalen/obsidian-insights,48,0,0,0,0,0,0,0,0
1207
+ mattlianje/etl4s,364,0,0,0,0,0,0,0,0
1208
+ mattvonrocketstein/airflow-ubuntu-ansible-terraform,2,0,0,0,0,0,0,0,0
1209
+ mayur2810/sope,19,0,0,0,0,2,2,4,4
1210
+ mbari-org/aidata,25,1,1,0,0,4,4,5,2
1211
+ mckraqs/dataride,29,0,0,0,0,0,0,0,0
1212
+ mdh266/AirflowDataPipeline,1,0,0,0,0,0,0,0,0
1213
+ mediative/amadou,12,0,0,0,0,0,0,35,29
1214
+ mehd-io/pypi-duck-flow,54,0,0,0,0,4,4,2,0
1215
+ meltano/meltano,2389,1073,1073,0,0,1416,1416,5270,3156
1216
+ melwinmpk/PizzaOrders_DataPipeline,4,0,0,0,0,0,0,0,0
1217
+ memiiso/opendbt,95,1,1,0,0,19,19,17,16
1218
+ memiiso/pydbzengine,35,5,5,0,0,8,8,2,0
1219
+ mert019/open-ETL,4,0,0,0,0,0,0,0,0
1220
+ meta-pytorch/torchx,823,93,93,0,0,321,321,825,518
1221
+ metafacture/metafacture-core,368,181,181,0,0,62,62,555,471
1222
+ metaheed/kolle,3,0,0,0,0,0,0,0,0
1223
+ metarank/metarank,833,41,41,0,0,405,405,13,0
1224
+ michaldoda/sql-to-redis,17,1,1,0,0,0,0,0,0
1225
+ microsoft/Functional-Validation-Testing-Spark-SQL,14,0,0,0,0,0,0,0,0
1226
+ microsoft/azurekorea,139,0,0,0,0,62,62,43,0
1227
+ microsoft/etl2pcapng,39,26,26,0,0,11,11,132,102
1228
+ microsoft/unified-data-foundation-with-fabric-solution-accelerator,147,3,3,0,0,78,78,179,111
1229
+ mikeghen/airflow-tutorial,2,0,0,0,0,1,1,0,0
1230
+ mikevan666/opendataworks,170,2,2,0,0,0,0,3,0
1231
+ minhadona/data_engineer_interview_challenges,17,0,0,0,0,7,7,2,0
1232
+ ministryofjustice/data-and-analytics-engineering,67,2,2,0,0,43,43,81,35
1233
+ mitdbg/palimpzest,158,31,31,0,0,68,68,351,273
1234
+ mk-hasan/Dockerized-Airflow-Spark,5,0,0,0,0,0,0,0,0
1235
+ ml6team/fondant-usecase-RAG,47,5,5,0,0,22,22,133,102
1236
+ ml6team/fondant-usecase-controlnet,12,3,3,0,0,4,4,39,32
1237
+ ml6team/fondant-usecase-filter-creative-commons,7,1,1,0,0,0,0,9,5
1238
+ mloda-ai/mloda,99,72,72,0,0,79,79,70,31
1239
+ mlrun/mlrun,6880,92,92,0,0,5262,5262,19010,14988
1240
+ mohidex/data-pipeline-on-gcp,6,0,0,0,0,0,0,0,0
1241
+ moj-analytical-services/pydbtools,106,11,11,0,0,11,11,130,49
1242
+ monarch-initiative/koza,88,21,21,0,0,24,24,126,61
1243
+ monarch-initiative/monochrom,17,3,3,0,0,4,4,4,3
1244
+ monikaglazz/Data_Engineering_with_Python,43,0,0,0,0,0,0,0,0
1245
+ montara-io/dbt-command-center,15,2,2,0,0,4,4,10,0
1246
+ morph-kgc/morph-kgc,392,95,95,0,0,45,45,1,0
1247
+ mowbraysuburbs/Spotify_ETL,52,0,0,0,0,0,0,0,0
1248
+ mozilla/python_mozetl,208,21,21,0,0,99,99,765,529
1249
+ mozilla/telemetry-airflow,1406,26,26,0,0,309,309,4040,2412
1250
+ mpolatcan/airflow-docker,2,0,0,0,0,0,0,0,0
1251
+ mprove-io/mprove,3,4,4,0,0,0,0,0,0
1252
+ mrhallak/Coronalytics,144,1,1,0,0,97,97,43,0
1253
+ mrjsj/msfabricutils,16,6,6,0,0,0,0,0,0
1254
+ mrmcmullan/flycatcher,29,0,0,0,0,0,0,0,0
1255
+ mrpaulandrew/procfwk,63,14,14,0,0,9,9,23,2
1256
+ mrpbennett/etl-pipeline,0,0,0,0,0,0,0,0,0
1257
+ mrpbennett/home-ops,95,0,0,0,0,64,64,31,0
1258
+ mrugankray/Big-Data-Cluster,0,0,0,0,0,0,0,0,0
1259
+ msantosjader/rfb-cnpj-etl,17,0,0,0,0,0,0,0,0
1260
+ mta-tech/seeknal,34,7,7,0,0,0,0,7,5
1261
+ muyu42/DataS,68,0,0,0,0,4,4,0,0
1262
+ mxaviersmp/spotify-tracker,10,0,0,0,0,0,0,0,0
1263
+ mycaule/reading-resources,104,0,0,0,0,0,0,0,0
1264
+ mycelial/mycelial,188,2,2,0,0,13,13,166,95
1265
+ mydataharbor/mydataharbor,122,1,1,0,0,0,0,0,0
1266
+ mykkelol/netsuite-data-pipeline,5,0,0,0,0,0,0,0,0
1267
+ n0rdy/pippin,16,0,0,0,0,5,5,3,0
1268
+ naderAsadi/Udacity-Data-Engineering-Projects,3,0,0,0,0,0,0,0,0
1269
+ narayave/Insight-GDELT-Feed,7,0,0,0,0,0,0,0,0
1270
+ nareshk1290/Udacity-Data-Engineering,29,0,0,0,0,0,0,0,0
1271
+ nathadriele/DMS-missing-or-duplicate-data-validation-script,7,0,0,0,0,0,0,0,0
1272
+ nathadriele/airflow-kpi-insertion-pipeline,10,0,0,0,0,0,0,0,0
1273
+ nathadriele/data-engineering-zoomcamp,20,0,0,0,0,0,0,0,0
1274
+ nathadriele/redshift-to-s3-unload-dag,12,0,0,0,0,0,0,0,0
1275
+ nationalarchives/ds-caselaw-ingester,1141,2,2,0,0,516,516,852,205
1276
+ neo-technology-field/python-etl-lib,2,0,0,0,0,0,0,0,0
1277
+ neo4j/neo4j-jdbc,898,148,148,0,0,845,845,589,132
1278
+ nerevu/riko,31,7,7,0,0,10,10,5,4
1279
+ nestauk/ojo_daps_mirror,4,0,0,0,0,0,0,0,0
1280
+ netwerk-digitaal-erfgoed/ld-workbench,66,20,20,0,0,10,10,22,17
1281
+ networktocode/diffsync,226,32,32,0,0,72,72,467,340
1282
+ neuml/paperetl,3,8,8,0,0,3,3,0,0
1283
+ neuroforgede/nfcompose,183,0,0,0,0,25,25,8,0
1284
+ nh43de/DataPowerTools,46,0,0,0,0,0,0,0,0
1285
+ nhl/link-move,6,29,29,0,0,20,20,3,2
1286
+ nhsx/au-azure-databricks,188,2,2,0,0,19,19,108,4
1287
+ nico-corthorn/tba-investments-etl,56,0,0,0,0,18,18,0,0
1288
+ nicor88/aws-ecs-airflow,15,5,5,0,0,5,5,4,2
1289
+ nightscape/spark-excel,625,169,169,0,0,531,531,124,97
1290
+ nikkatalnikov/bigkube,7,0,0,0,0,6,6,0,0
1291
+ nishakanthiA/Airflow-Docker,2,0,0,0,0,0,0,0,0
1292
+ nl2go/hetzner-invoice,0,0,0,0,0,2,2,14,8
1293
+ nnnkkk7/snowflake-emulator,41,0,0,0,0,10,10,0,0
1294
+ nnthanh101/Serverless-DataHub,73,0,0,0,0,1,1,0,0
1295
+ nnthanh101/analytics,49,0,0,0,0,0,0,0,0
1296
+ noahgift/pai-aws,11,0,0,0,0,0,0,0,0
1297
+ nodefluent/bigquery-kafka-connect,34,4,4,0,0,19,19,6,6
1298
+ nodefluent/kafka-connect,23,9,9,0,0,11,11,0,0
1299
+ nodefluent/sequelize-kafka-connect,23,13,13,0,0,14,14,0,0
1300
+ nodestream-proj/nodestream,493,13,13,0,0,76,76,738,457
1301
+ noflo/noflo,203,173,173,0,0,246,246,111,47
1302
+ nogibjj/BallersDash,29,0,0,0,0,0,0,0,0
1303
+ noleme/noleme-flow,162,0,0,0,0,61,61,0,0
1304
+ noleme/noleme-flow-connectors,131,0,0,0,0,58,58,0,0
1305
+ nordquant/complete-dbt-bootcamp-zero-to-hero,73,3,3,0,0,4,4,2,2
1306
+ nownabe/go-bqloader,87,0,0,0,0,68,68,177,0
1307
+ nsphung/pyspark-template,5,0,0,0,0,0,0,0,0
1308
+ obrunodelgado/camelboilerplate,3,0,0,0,0,0,0,0,0
1309
+ ocademy-ai/machine-learning,643,51,51,0,0,304,304,885,542
1310
+ octo-technology/ddui,1,0,0,0,0,0,0,0,0
1311
+ odahu/odahu-airflow-plugin,26,4,4,0,0,2,2,71,68
1312
+ odpi/egeria,8566,877,877,0,0,1433,1433,4279,2882
1313
+ odpi/egeria-docs,928,58,58,0,0,55,55,193,151
1314
+ oeg-upm/github-action-morph-kgc,16,0,0,0,0,0,0,0,0
1315
+ oeg-upm/gtfs-bench,137,31,31,0,0,14,14,5,2
1316
+ oeg-upm/mapeathor,58,30,30,0,0,1,1,2,0
1317
+ ogbinar/DataEngineeringPilipinas,120,0,0,0,0,27,27,11,10
1318
+ ohadmata/simple-dag-editor,2,1,1,0,0,0,0,0,0
1319
+ ohs-foundation/fhir-data-pipes,802,139,139,0,0,601,601,2713,2124
1320
+ olaflaitinen/Promethium,9,0,0,0,0,0,0,0,0
1321
+ olehmberg/winter,22,13,13,0,0,18,18,32,18
1322
+ olirice/flupy,37,16,16,0,0,7,7,12,9
1323
+ oluobiri/nba-hate-tracker,17,0,0,0,0,0,0,0,0
1324
+ omatheussantos/datawarehouse-sql-server,13,0,0,0,0,0,0,0,0
1325
+ ome9ax/target-s3-jsonl,54,1,1,0,0,19,19,31,7
1326
+ omhq/fragments,1,0,0,0,0,0,0,0,0
1327
+ onceiwasadev/aws-mwaa-terraform,0,0,0,0,0,0,0,0,0
1328
+ onepanelio/onepanel,519,180,180,0,0,234,234,464,365
1329
+ ooni/pipeline,123,57,57,0,0,63,63,534,415
1330
+ opencultureconsulting/orcli,71,1,1,0,0,1,1,0,0
1331
+ opendatadiscovery/odd-platform,739,277,277,0,0,191,191,1268,688
1332
+ opendatadiscovery/opendatadiscovery-specification,118,1,1,0,0,24,24,87,65
1333
+ opendatahub-io-contrib/airflow-on-openshift,5,3,3,0,0,3,3,5,4
1334
+ opensanctions/nomenklatura,166,46,46,0,0,76,76,94,56
1335
+ opensnowcat/opensnowcat-collector,385,2,2,0,0,147,147,32,15
1336
+ opensnowcat/opensnowcat-enrich,721,7,7,0,0,175,175,50,26
1337
+ opensnowcat/opensnowcat-rdb-loader,498,0,0,0,0,144,144,0,0
1338
+ oracle-samples/oracle-aidp-samples,51,0,0,0,0,32,32,54,6
1339
+ orbitalapi/orbital,44,2,2,0,0,1,1,15,14
1340
+ oresttokovenko/RetailFlow,1,0,0,0,0,0,0,0,0
1341
+ orientechnologies/teleporter,5,9,9,0,0,0,0,0,0
1342
+ osalvador/ReplicaDB,177,82,82,0,0,78,78,19,0
1343
+ osin-vladimir/architect_big_data_solutions_with_spark,12,0,0,0,0,2,2,0,0
1344
+ ovidiugiorgi/csv2opensearch,1,1,1,0,0,0,0,0,0
1345
+ ozkary/data-engineering-mta-turnstile,7,0,0,0,0,1,1,0,0
1346
+ pChitral/ETL-SEC-EDGAR-10-k-Filings,6,0,0,0,0,0,0,0,0
1347
+ pacuna/airflow-docker,0,0,0,0,0,1,1,0,0
1348
+ paillave/Etl.Net,333,8,8,0,0,34,34,17,0
1349
+ palewire/django-calaccess-raw-data,63,80,80,0,0,304,304,0,0
1350
+ paloaltodatabases/sequor,22,0,0,0,0,0,0,0,0
1351
+ pangeo-forge/pangeo-forge-recipes,474,79,79,0,0,196,196,640,533
1352
+ parmarsuraj99/signalslite,4,0,0,0,0,0,0,0,0
1353
+ pathwaycom/pathway,26,80,80,0,0,21,21,60,40
1354
+ patterns-app/patterns-devkit,162,10,10,0,0,3,3,177,36
1355
+ paulf-999/airflow_templates,8,0,0,0,0,0,0,0,0
1356
+ pavanbadempet/pavanbadempet.github.io,46,0,0,0,0,7,7,0,0
1357
+ pbnjay/grate,6,4,4,0,0,1,1,0,0
1358
+ pboehm/django-data-migration,0,5,5,0,0,1,1,0,0
1359
+ petaly-labs/petaly,26,0,0,0,0,0,0,0,0
1360
+ petedannemann/aws-batch-demo,0,0,0,0,0,0,0,0,0
1361
+ peter115342/soccer-tracker-DE-project,110,0,0,0,0,0,0,0,0
1362
+ phatnguyen080401/real-estate-sale-analytics,6,0,0,0,0,3,3,4,0
1363
+ php-etl/satellite,145,4,4,0,0,74,74,250,166
1364
+ phphoebe/Udacity-Data-Engineering-with-AWS,32,0,0,0,0,0,0,0,0
1365
+ pinsky-three/greenrock,2,0,0,0,0,0,0,14,0
1366
+ pipebase/pipebase,195,0,0,0,0,0,0,0,0
1367
+ pipekit/talk-demos,44,1,1,0,0,12,12,43,21
1368
+ pipeline-tools/gusty,71,16,16,0,0,19,19,9,0
1369
+ piyush-an/NYC-Restaurant-Inspection,2,0,0,0,0,0,0,0,0
1370
+ pjazdzyk/hvac-engine,5,0,0,0,0,0,0,0,0
1371
+ planarnetwork/dtd2mysql,46,33,33,0,0,40,40,52,34
1372
+ pldn/LDWizard,63,40,40,0,0,14,14,43,33
1373
+ pmgraham/datagrunt,40,2,2,0,0,2,2,3,3
1374
+ polakowo/yelp-3nf,21,0,0,0,0,0,0,0,0
1375
+ polo2444172276/Udacity-Data-Engineering-Nanodegree,1,0,0,0,0,0,0,0,0
1376
+ portovep/dbt-testing-examples,10,0,0,0,0,0,0,0,0
1377
+ pr1m8/haive-dataflow,1,0,0,0,0,0,0,0,0
1378
+ pran4ajith/spark-twitter-streaming,13,0,0,0,0,0,0,0,0
1379
+ prantoamt/etl-pipeline-runner,32,1,1,0,0,0,0,1,0
1380
+ prateeksawhney97/Disaster-Response-Pipeline,24,0,0,0,0,0,0,0,0
1381
+ prefeitura-rio/pipelines_rj_smtr,927,146,146,0,0,128,128,2700,2187
1382
+ pregismond/etl-data-pipelines-with-shell-airflow-kafka,5,0,0,0,0,0,0,0,0
1383
+ preprocessy/preprocessy,185,7,7,0,0,75,75,153,113
1384
+ prithvijitguha/flowrunner,55,0,0,0,0,0,0,0,0
1385
+ profcomff/dwh-airflow,29,3,3,0,0,7,7,68,59
1386
+ profcomff/dwh-definitions,106,38,38,0,0,17,17,371,298
1387
+ profcomff/dwh-pipelines,215,66,66,0,0,53,53,520,364
1388
+ projectcontinuum/continuum-platform-core,32,3,3,0,0,0,0,8,4
1389
+ prophecy-io/spark-ai,5,0,0,0,0,0,0,1,0
1390
+ prrao87/pydantic-benchmarks,11,0,0,0,0,1,1,0,0
1391
+ prratek/tap-dbt-artifacts,6,0,0,0,0,1,1,0,0
1392
+ ptariche/airflow-ts,0,0,0,0,0,0,0,0,0
1393
+ puckel/docker-airflow,76,68,68,0,0,47,47,42,26
1394
+ pujansrt/data-genie,2,0,0,0,0,0,0,0,0
1395
+ pwenker/data-engineering,2,0,0,0,0,0,0,0,0
1396
+ pydoit/doit,87,169,169,0,0,64,64,109,84
1397
+ pyjaime/docker-airflow-spark,5,0,0,0,0,0,0,0,0
1398
+ pyjanitor-devs/pyjanitor,1003,314,314,0,0,664,664,1627,1272
1399
+ pyladiesams/data-pipelines-with-dbtcore-snowflake-sep2025,11,0,0,0,0,0,0,8,8
1400
+ pyper-dev/pyper,28,2,2,0,0,5,5,0,0
1401
+ quadbio/cellmapper,49,0,0,0,0,7,7,0,0
1402
+ quadbio/scembed,18,1,1,0,0,7,7,5,3
1403
+ quantscious/finmlkit,12,0,0,0,0,1,1,8,3
1404
+ quarylabs/quary,198,8,8,0,0,140,140,185,18
1405
+ qubole/afctl,11,3,3,0,0,0,0,32,28
1406
+ quiltdata/quilt,4768,69,69,0,0,1369,1369,10047,7297
1407
+ quintoandar/butterfree,216,12,12,0,0,31,31,943,673
1408
+ quintoandar/hive-metastore-client,10,3,3,0,0,2,2,245,212
1409
+ quixio/klaus-kode-agentic-integrator,44,0,0,0,0,1,1,0,0
1410
+ quixio/quix-streams,692,46,46,0,0,127,127,1980,632
1411
+ qunomon/qunomon,10,1,1,0,0,1,1,6,2
1412
+ qwshen/spark-etl-framework,70,0,0,0,0,0,0,0,0
1413
+ r05323028/eyes,52,0,0,0,0,0,0,0,0
1414
+ raamana/pyradigm,51,2,2,0,0,7,7,4,3
1415
+ raelango/EasyETL.Net,545,0,0,0,0,0,0,0,0
1416
+ rafik-rahoui/End-to-end-data-enginnerring-project,15,0,0,0,0,0,0,0,0
1417
+ rahul765/Machine-Learning-Pipelines,10,0,0,0,0,0,0,0,0
1418
+ rajat116/github-anomaly-project,1,0,0,0,0,0,0,0,0
1419
+ ramkumarpj/project-three,33,0,0,0,0,0,0,0,0
1420
+ raphaelberly/journal,4,0,0,0,0,0,0,0,0
1421
+ raptor-ml/raptor,68,122,122,0,0,4,4,18,7
1422
+ rasinmuhammed/misata,3,0,0,0,0,0,0,0,0
1423
+ rat-nick/film-data-ingestion-pipeline,6,0,0,0,0,1,1,0,0
1424
+ raystack/optimus,361,127,127,0,0,201,201,1322,1142
1425
+ rayyan17/jobAnalytics_and_search,1,0,0,0,0,0,0,0,0
1426
+ razevedo1994/razv-data-engineering,30,0,0,0,0,0,0,0,0
1427
+ rdagumampan/yuniql,353,38,38,0,0,26,26,47,39
1428
+ react-csv/react-csv,90,96,96,0,0,49,49,62,38
1429
+ realdatadriven/central-set-go,201,1,1,0,0,0,0,0,0
1430
+ realdatadriven/etlx,107,2,2,0,0,0,0,0,0
1431
+ redis-field-engineering/redis-connect-dist,215,6,6,0,0,5,5,8,0
1432
+ redpanda-data/connect,1851,1037,1037,0,0,1060,1060,4635,3514
1433
+ reductstore/reductstore,932,36,36,0,0,350,350,275,99
1434
+ reljicd/ml-airflow,1,0,0,0,0,0,0,0,0
1435
+ restarone/violet_rails,472,46,46,0,0,306,306,425,315
1436
+ reugn/go-streams,96,19,19,0,0,9,9,29,23
1437
+ rexleimo/agno-Go,1,0,0,0,0,0,0,0,0
1438
+ rgiosa10/crypto-pricing-project,0,0,0,0,0,0,0,0,0
1439
+ rgwood/etl-sheets,3,0,0,0,0,1,1,0,0
1440
+ riccardotommasini/imkg,8,0,0,0,0,0,0,0,0
1441
+ richban/opendata-stack-platform,8,0,0,0,0,3,3,0,0
1442
+ ris-tlp/audiophile-e2e-pipeline,6,0,0,0,0,0,0,0,0
1443
+ risesoft-y9/DataFlow-Engine,2,0,0,0,0,0,0,0,0
1444
+ risg99/tpc-di-benchmark,2,0,0,0,0,0,0,0,0
1445
+ risingwavelabs/risingwave,14024,1788,1788,0,0,5651,5651,51174,43798
1446
+ rjdscott/datatools,23,0,0,0,0,11,11,0,0
1447
+ rjurney/Agile_Data_Code_2,153,77,77,0,0,60,60,6,0
1448
+ robert-koch-institut/mex-common,556,0,0,0,0,396,396,813,346
1449
+ rodmena-limited/stabilize,1,0,0,0,0,1,1,0,0
1450
+ rohitkulkarni08/Azure-ETL-AmazonSalesAnalysis,43,0,0,0,0,0,0,0,0
1451
+ ronaldkanyepi/Log-Realtime-Analysis,2,0,0,0,0,0,0,0,0
1452
+ route1io/route1io-python-connectors,62,2,2,0,0,0,0,3,0
1453
+ royjacobson/nf-python,1,1,1,0,0,0,0,0,0
1454
+ rpj/rpi,19,0,0,0,0,2,2,0,0
1455
+ rpsft/etlbox,93,0,0,0,0,0,0,0,0
1456
+ rsanjabi/short-term-rentals-warehouse,10,0,0,0,0,1,1,19,18
1457
+ rssanders3/airflow-spark-operator-plugin,3,0,0,0,0,2,2,2,0
1458
+ ruc-datalab/DeepAnalyze,69,32,32,0,0,18,18,0,0
1459
+ rudderlabs/rudder-server,4161,91,91,0,0,2316,2316,20299,19505
1460
+ running-elephant/datart,1284,574,574,0,0,904,904,1187,283
1461
+ runprism/prism,36,4,4,0,0,31,31,30,0
1462
+ rupurt/odbc-scanner-duckdb-extension,1,0,0,0,0,1,1,4,0
1463
+ rush-db/rushdb,244,2,2,0,0,102,102,29,7
1464
+ rutgers-db/EntityBlockingBySimilarityJoins,1,0,0,0,0,0,0,0,0
1465
+ rvanasa/pandas-gpt,34,1,1,0,0,2,2,9,7
1466
+ rwynn/monstache,23,143,143,0,0,20,20,24,19
1467
+ ryanchao2012/airfly,9,1,1,0,0,0,0,0,0
1468
+ ryanrozich/snowflake-dbml-generator,11,0,0,0,0,0,0,3,0
1469
+ saeyslab/nichenetr,37,235,235,0,0,6,6,0,0
1470
+ saezlab/cosmosR,81,14,14,0,0,6,6,5,0
1471
+ sairam-s0/ActiveLabelingSystem,11,0,0,0,0,0,0,0,0
1472
+ sakkiii/apache-nifi-helm,9,3,3,0,0,0,0,0,0
1473
+ salimt/Spotify-API-Pipeline,23,0,0,0,0,0,0,0,0
1474
+ salimt/Transfermarkt-ETL-and-LIVE-Scores,18,0,0,0,0,0,0,0,0
1475
+ salimt/football-datasets,1,0,0,0,0,0,0,0,0
1476
+ sam-hatley/real-estate-data,6,0,0,0,0,0,0,0,0
1477
+ samber/awesome-olap,19,0,0,0,0,11,11,7,0
1478
+ samjbobb/mammoth,2,0,0,0,0,1,1,1,0
1479
+ san089/Spark_Packaged_project,2,0,0,0,0,0,0,0,0
1480
+ san089/Udacity-Data-Engineering-Projects,30,0,0,0,0,1,1,0,0
1481
+ san089/goodreads_etl_pipeline,20,0,0,0,0,1,1,0,0
1482
+ sanchitvj/sports_betting_analytics_engine,45,0,0,0,0,0,0,0,0
1483
+ sanjeevai/data-modeling-postgres,0,0,0,0,0,0,0,0,0
1484
+ sanjeevai/disaster-response-pipeline,5,0,0,0,0,0,0,0,0
1485
+ sanspareilsmyn/parqv,10,1,1,0,0,0,0,0,0
1486
+ santoshray02/csv-editor,5,0,0,0,0,3,3,0,0
1487
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,10,0,0,0,0,0,0,0,0
1488
+ sarahkb125/airflow-docker-metrics,0,0,0,0,0,0,0,0,0
1489
+ sarathchandrikak/Data-Projects,65,0,0,0,0,0,0,0,0
1490
+ sarit-si/docker-airflow-pdi-02,0,0,0,0,0,0,0,0,0
1491
+ sartography/spiff-arena,1845,363,363,0,0,1011,1011,3259,2156
1492
+ saturncloud/dask-saturn,62,0,0,0,0,11,11,159,114
1493
+ saturncloud/prefect-saturn,56,0,0,0,0,3,3,139,97
1494
+ scaleway/cq-source-scaleway,47,1,1,0,0,43,43,38,4
1495
+ schemamap/schemamap,25,0,0,0,0,0,0,0,0
1496
+ schic/DQCS,17,0,0,0,0,0,0,0,0
1497
+ scottypate/airflow-aws,0,0,0,0,0,0,0,0,0
1498
+ scrapy-plugins/scrapy-snowflake-stage-exporter,6,0,0,0,0,0,0,0,0
1499
+ scribd/objinsync,12,7,7,0,0,10,10,7,0
1500
+ scribe-org/Scribe-Data,673,92,92,0,0,335,335,786,481
1501
+ scribe-org/Scribe-Server,37,18,18,0,0,23,23,82,69
1502
+ sdam-au/LAGT,24,0,0,0,0,2,2,0,0
1503
+ sdcote/coyote,6,0,0,0,0,0,0,0,0
1504
+ seandavi/awesome-single-cell,703,11,11,0,0,324,324,9,0
1505
+ seattleflu/id3c,220,3,3,0,0,35,35,1200,1028
1506
+ seblum/mlops-engineering-book,42,0,0,0,0,0,0,0,0
1507
+ seehiong/autonomous-hdb-deepagents,1,0,0,0,0,0,0,0,0
1508
+ seehiong/multi-agent-system-using-langgraph,1,0,0,0,0,0,0,0,0
1509
+ selbouhaddani/OmicsPLS,23,11,11,0,0,6,6,0,0
1510
+ senzelden/twitter_data_pipeline,2,0,0,0,0,0,0,0,0
1511
+ sergio11/lyric_wave_architecture,49,0,0,0,0,0,0,0,0
1512
+ seungwubaek/seungwubaek.github.io,6,0,0,0,0,0,0,0,0
1513
+ shahidmalik4/dbt-airflow-data-pipeline,54,0,0,0,0,0,0,0,0
1514
+ shahparth0007/Big-Data-Systems-Intelligence-Analytics-Labs-Summer-2022,10,0,0,0,0,0,0,0,0
1515
+ shankarlohar/dbt-snowflake-data-pipeline,13,0,0,0,0,0,0,0,0
1516
+ shantanukhond/YT-Assets,22,1,1,0,0,1,1,0,0
1517
+ shauryashaurya/learn-data-munging,19,1,1,0,0,5,5,0,0
1518
+ sherlockjjj/T-Watch,3,0,0,0,0,0,0,0,0
1519
+ shouweikun/estuary,27,1,1,0,0,2,2,0,0
1520
+ shravan-kuchkula/udacity-data-eng-proj-1,5,0,0,0,0,0,0,0,0
1521
+ shravan-kuchkula/udacity-data-eng-proj2,2,0,0,0,0,0,0,0,0
1522
+ shravan-kuchkula/udacity-data-eng-proj3,1,0,0,0,0,0,0,0,0
1523
+ shuxiaoc/mario-py,172,1,1,0,0,0,0,0,0
1524
+ siddharth271101/Covid-19-and-Aviation-Industry,29,0,0,0,0,0,0,0,0
1525
+ sidequery/dlt-iceberg,7,1,1,0,0,3,3,3,0
1526
+ sidequery/sidemantic,136,7,7,0,0,0,0,173,0
1527
+ sidhyaashu/MLOps-End-To-End-Project,5,0,0,0,0,0,0,0,0
1528
+ silverton-io/snowflakecli,1,0,0,0,0,1,1,0,0
1529
+ simon-milata/data-tech-stats,16,0,0,0,0,0,0,0,0
1530
+ simovilab/databus-flow,2,0,0,0,0,0,0,0,0
1531
+ sinanazem/data-engineer-roadmap,41,0,0,0,0,0,0,0,0
1532
+ singl3focus/hl7-converter,22,1,1,0,0,0,0,0,0
1533
+ siyul-park/uniflow,180,1,1,0,0,70,70,31,10
1534
+ skhatri/airflow-by-example,4,1,1,0,0,0,0,0,0
1535
+ skyffel/airbyte-connector-generator-poc,11,0,0,0,0,1,1,2,0
1536
+ slalaure/korelate,4,0,0,0,0,0,0,0,0
1537
+ slingdata-io/sling-cli,157,355,355,0,0,28,28,14,11
1538
+ slotix/dbconvert-streams-public,6,10,10,0,0,0,0,0,0
1539
+ slowkow/harmonypy,12,32,32,0,0,6,6,2,0
1540
+ slve/dbt-github-workflow,0,1,1,0,0,0,0,0,0
1541
+ smart-data-lake/smart-data-lake,758,129,129,0,0,107,107,1378,955
1542
+ smartive/proc-that,37,8,8,0,0,17,17,9,3
1543
+ sminerport/sminerport,25,0,0,0,0,0,0,4,0
1544
+ smooks/smooks,624,51,51,0,0,335,335,201,0
1545
+ smortezah/portfolio,31,0,0,0,0,0,0,0,0
1546
+ snithish/tpc-di_benchmark,3,1,1,0,0,1,1,1,0
1547
+ snjypl/airflow-provider-grafana-loki,11,5,5,0,0,0,0,0,0
1548
+ snowflakedb/snowpark-checkpoints,47,0,0,0,0,25,25,684,674
1549
+ snowflakedb/snowpark-python,2935,171,171,0,0,212,212,22215,21724
1550
+ snowplow/dbt-snowplow-web,25,40,40,0,0,13,13,438,350
1551
+ snowplow/enrich,610,136,136,0,0,29,29,893,781
1552
+ snowplow/snowplow,721,1936,1936,0,0,93,93,1130,1024
1553
+ sodadata/soda-core,88,174,174,0,0,529,529,1741,1242
1554
+ sodadata/soda-spark,63,2,2,0,0,4,4,28,23
1555
+ sopho-tech/sopho,89,0,0,0,0,14,14,4,0
1556
+ sorrell/etlyte,3,0,0,0,0,0,0,0,0
1557
+ soyelherein/pyspark-cicd-template,0,0,0,0,0,0,0,0,0
1558
+ sparkdq-community/sparkdq,29,2,2,0,0,6,6,7,4
1559
+ sparkfish/augraphy,364,60,60,0,0,91,91,85,55
1560
+ sparsecode/DaFlow,34,0,0,0,0,1,1,0,0
1561
+ spotify/klio,187,1,1,0,0,14,14,640,505
1562
+ ssheremeta/airflow-cloudera,0,0,0,0,0,0,0,0,0
1563
+ ssp-data/cloud-cost-analyzer,1,0,0,0,0,0,0,0,0
1564
+ ssp-data/practical-data-engineering,7,0,0,0,0,0,0,1,0
1565
+ sspaeti/clickhouse-modeling-rill-example,3,0,0,0,0,2,2,0,0
1566
+ sspaeti/semantic-layer-duckdb,1,0,0,0,0,0,0,0,0
1567
+ star3am/hashiqube,119,6,6,0,0,5,5,2,0
1568
+ starburstdata/dbt-trino,229,97,97,0,0,141,141,960,792
1569
+ starlake-ai/starlake,2996,25,25,0,0,845,845,376,173
1570
+ stateful-y/kedro-dagster,78,4,4,0,0,27,27,34,0
1571
+ stav121/apache-airflow-goodies,4,0,0,0,0,1,1,0,0
1572
+ stellar/stellar-etl,285,30,30,0,0,28,28,774,598
1573
+ stephen29xie/tweet-streaming-data-pipeline,0,0,0,0,0,0,0,0,0
1574
+ stiles/hangarbay,1,0,0,0,0,0,0,0,0
1575
+ stn1slv/awesome-integration,256,0,0,0,0,15,15,14,6
1576
+ stonezhong/DataManager,246,0,0,0,0,0,0,0,0
1577
+ streamthoughts/kafka-connect-file-pulse,250,148,148,0,0,249,249,29,13
1578
+ strmprivacy/cli,89,6,6,0,0,24,24,150,95
1579
+ stwind/airflow-on-kubernetes,5,0,0,0,0,5,5,4,2
1580
+ sudoku-committer/dicom-etl-dagster-snowflake,6,0,0,0,0,0,0,0,0
1581
+ sul-dlss/libsys-airflow,1053,376,376,0,0,608,608,1764,1189
1582
+ sul-dlss/traject_plus,27,5,5,0,0,24,24,20,0
1583
+ sungchun12/airflow-dbt-cloud,9,2,2,0,0,1,1,4,4
1584
+ sungchun12/airflow-toolkit,17,2,2,0,0,2,2,3,0
1585
+ sungchun12/sqlmesh-demos,8,0,0,0,0,2,2,0,0
1586
+ superlinked/sie,6,0,0,0,0,14,14,67,54
1587
+ superstreamlabs/memphis,1787,0,0,0,0,613,613,1169,333
1588
+ sutro-sh/sutro,69,0,0,0,0,3,3,124,88
1589
+ svan0/anime_recommendation_system,1,0,0,0,0,0,0,0,0
1590
+ swoop-inc/spark-alchemy,12,14,14,0,0,4,4,15,7
1591
+ syncmaven/syncmaven,3,0,0,0,0,0,0,0,0
1592
+ synmetrix/synmetrix,91,14,14,0,0,58,58,115,22
1593
+ sysbio-curie/transmorph,11,1,1,0,0,3,3,0,0
1594
+ systamental/cryptodatapy,16,3,3,0,0,4,4,2,0
1595
+ tabsdata/tabsdata,1382,1,1,0,0,0,0,7,2
1596
+ taz4et/bitcoin-etl,28,0,0,0,0,0,0,0,0
1597
+ teamclairvoyant/airflow-plugins,2,0,0,0,0,0,0,1,0
1598
+ teamclairvoyant/apache-airflow-cloudera-csd,6,0,0,0,0,2,2,17,16
1599
+ techascent/tech.ml.dataset,141,256,256,0,0,69,69,68,61
1600
+ techmonad/spark-data-pipeline,4,0,0,0,0,0,0,0,0
1601
+ teckkean/GTFS-Data-Pipeline-TfNSW-Bus,29,0,0,0,0,1,1,0,0
1602
+ tejzpr/ordered-concurrently,27,2,2,0,0,2,2,1,0
1603
+ telekom/wurzel,140,7,7,0,0,83,83,359,299
1604
+ tensor365/AIRFLOW-QLIKSENSE-CLOUD,30,0,0,0,0,0,0,0,0
1605
+ tenzinkabsang/NBatch,8,2,2,0,0,0,0,0,0
1606
+ tenzir/library,132,0,0,0,0,17,17,451,367
1607
+ thadhutch/sports-quant,16,0,0,0,0,3,3,0,0
1608
+ thangbuiq/covid19-etl-pipeline,5,0,0,0,0,0,0,0,0
1609
+ thanhENC/e2e-data-platform,20,0,0,0,0,0,0,0,0
1610
+ tharwaninitin/etlflow,70,2,2,0,0,119,119,2,0
1611
+ thbar/kiba,104,14,14,0,0,6,6,4,2
1612
+ thcidale0808/canarypy,4,0,0,0,0,0,0,0,0
1613
+ thedataengineeringbook/thedataengineeringbook,104,2,2,0,0,46,46,125,91
1614
+ thedataquarry/rustinpieces,199,4,4,0,0,79,79,119,80
1615
+ theeye-io-team/theeye-supervisor,249,0,0,0,0,14,14,7,0
1616
+ theislab/scPoli_legacy,11,3,3,0,0,1,1,0,0
1617
+ theislab/scarches,226,85,85,0,0,43,43,16,13
1618
+ thepipelinetool/thepipelinetool,23,0,0,0,0,7,7,0,0
1619
+ thompson0012/PyEmits,6,0,0,0,0,0,0,0,0
1620
+ thongekchakrit/ChartAI,5,0,0,0,0,0,0,0,0
1621
+ thymeflow/thymeflow-back,13,2,2,0,0,2,2,0,0
1622
+ tianqizzz/Tap-News,10,0,0,0,0,0,0,0,0
1623
+ tikal-fuseday/delta-architecture,19,0,0,0,0,0,0,0,0
1624
+ timeplus-io/proton,23725,244,244,0,0,166,166,1917,1543
1625
+ tkp-archive/paperboy,30,6,6,0,0,5,5,5,0
1626
+ tmoore-prog/stock_market_pipeline,3,0,0,0,0,0,0,0,0
1627
+ toaco/carry,2,1,1,0,0,2,2,0,0
1628
+ toddbirchard/jira-database-etl,18,0,0,0,0,8,8,0,0
1629
+ toddbirchard/tableau-extraction,14,0,0,0,0,1,1,0,0
1630
+ toluaina/pgsync,64,128,128,0,0,38,38,61,28
1631
+ toludaree/dezoomcamp-project,7,0,0,0,0,0,0,0,0
1632
+ tomasfarias/airflow-dbt-python,56,38,38,0,0,16,16,102,83
1633
+ top-guns/etl-gun,111,0,0,0,0,1,1,0,0
1634
+ topher-lo/simple-data-workflow,9,0,0,0,0,0,0,0,0
1635
+ tower/tower-cli,264,6,6,0,0,17,17,650,534
1636
+ townim-faisal/MLOps-Basic-Pipeline,0,0,0,0,0,0,0,0,0
1637
+ tracebloc/data-ingestors,68,0,0,0,0,11,11,44,22
1638
+ trannhatnguyen2/NYC_Taxi_Data_Pipeline,9,0,0,0,0,0,0,50,50
1639
+ trannhatnguyen2/streaming_data_processing,1,0,0,0,0,0,0,0,0
1640
+ transferia/iceberg,4,0,0,0,0,0,0,0,0
1641
+ transferia/transferia,103,31,31,0,0,0,0,78,53
1642
+ treebeardtech/kubeflow-bootstrap,0,0,0,0,0,0,0,0,0
1643
+ treeverse/airflow-provider-lakeFS,50,10,10,0,0,8,8,136,90
1644
+ treeverse/charts,415,23,23,0,0,27,27,474,165
1645
+ treeverse/lakeFS,5313,1740,1740,0,0,592,592,20322,16493
1646
+ trocco-io/embulk-output-bigquery_java,69,0,0,0,0,10,10,60,49
1647
+ trustedshops-public/schema2pyarrow,25,2,2,0,0,16,16,10,3
1648
+ ts7ming/pyqueen,43,1,1,0,0,0,0,0,0
1649
+ tsdat/tsdat,97,15,15,0,0,23,23,147,106
1650
+ tshu-w/ComEM,14,1,1,0,0,0,0,0,0
1651
+ ttariqaziz/data_science_cheat_sheets,8,0,0,0,0,0,0,0,0
1652
+ tteofili/certa,12,0,0,0,0,0,0,0,0
1653
+ tuanai-vireox/dataplatform-stack,0,0,0,0,0,0,0,0,0
1654
+ tulibraries/ansible-role-airflow,155,8,8,0,0,80,80,109,14
1655
+ turbolytics/latte,42,0,0,0,0,0,0,0,0
1656
+ turbot/steampipe,2004,1236,1236,0,0,1225,1225,947,557
1657
+ turbot/steampipe-export,47,13,13,0,0,19,19,7,0
1658
+ turbot/steampipe-plugin-abuseipdb,37,1,1,0,0,9,9,14,0
1659
+ turbot/steampipe-plugin-alicloud,190,154,154,0,0,145,145,599,421
1660
+ turbot/steampipe-plugin-aws,1160,948,948,0,0,946,946,4701,3729
1661
+ turbot/steampipe-plugin-azure,446,355,355,0,0,309,309,1313,927
1662
+ turbot/steampipe-plugin-azuread,126,56,56,0,0,71,71,175,94
1663
+ turbot/steampipe-plugin-bitbucket,68,23,23,0,0,27,27,43,4
1664
+ turbot/steampipe-plugin-chaos,43,26,26,0,0,36,36,14,2
1665
+ turbot/steampipe-plugin-cloudflare,77,20,20,0,0,37,37,186,139
1666
+ turbot/steampipe-plugin-code,50,6,6,0,0,9,9,25,4
1667
+ turbot/steampipe-plugin-config,50,13,13,0,0,20,20,51,17
1668
+ turbot/steampipe-plugin-crowdstrike,31,2,2,0,0,9,9,25,12
1669
+ turbot/steampipe-plugin-crtsh,28,4,4,0,0,9,9,12,0
1670
+ turbot/steampipe-plugin-csv,58,23,23,0,0,25,25,45,13
1671
+ turbot/steampipe-plugin-databricks,24,5,5,0,0,14,14,61,43
1672
+ turbot/steampipe-plugin-datadog,52,8,8,0,0,22,22,71,40
1673
+ turbot/steampipe-plugin-digitalocean,70,23,23,0,0,31,31,68,25
1674
+ turbot/steampipe-plugin-docker,49,10,10,0,0,17,17,30,4
1675
+ turbot/steampipe-plugin-exec,29,9,9,0,0,11,11,18,10
1676
+ turbot/steampipe-plugin-finance,46,6,6,0,0,10,10,23,3
1677
+ turbot/steampipe-plugin-gcp,338,228,228,0,0,239,239,818,598
1678
+ turbot/steampipe-plugin-github,224,144,144,0,0,157,157,402,204
1679
+ turbot/steampipe-plugin-googledirectory,55,12,12,0,0,21,21,51,13
1680
+ turbot/steampipe-plugin-googlesheets,41,9,9,0,0,15,15,36,9
1681
+ turbot/steampipe-plugin-googleworkspace,48,16,16,0,0,18,18,58,19
1682
+ turbot/steampipe-plugin-grafana,40,1,1,0,0,11,11,26,8
1683
+ turbot/steampipe-plugin-hackernews,52,3,3,0,0,11,11,24,0
1684
+ turbot/steampipe-plugin-hibp,36,1,1,0,0,9,9,25,13
1685
+ turbot/steampipe-plugin-hypothesis,37,0,0,0,0,9,9,15,2
1686
+ turbot/steampipe-plugin-ibm,62,28,28,0,0,28,28,68,21
1687
+ turbot/steampipe-plugin-imap,40,5,5,0,0,9,9,19,4
1688
+ turbot/steampipe-plugin-ipinfo,28,0,0,0,0,9,9,12,2
1689
+ turbot/steampipe-plugin-ipstack,50,5,5,0,0,14,14,29,0
1690
+ turbot/steampipe-plugin-jenkins,25,2,2,0,0,11,11,14,7
1691
+ turbot/steampipe-plugin-jira,98,40,40,0,0,52,52,142,78
1692
+ turbot/steampipe-plugin-jumpcloud,36,10,10,0,0,15,15,19,0
1693
+ turbot/steampipe-plugin-kubernetes,146,42,42,0,0,73,73,242,141
1694
+ turbot/steampipe-plugin-ldap,34,5,5,0,0,10,10,17,0
1695
+ turbot/steampipe-plugin-linkedin,29,0,0,0,0,13,13,13,0
1696
+ turbot/steampipe-plugin-linode,44,4,4,0,0,14,14,23,0
1697
+ turbot/steampipe-plugin-mastodon,29,3,3,0,0,14,14,29,13
1698
+ turbot/steampipe-plugin-microsoft365,36,7,7,0,0,16,16,28,12
1699
+ turbot/steampipe-plugin-namecheap,25,0,0,0,0,5,5,5,0
1700
+ turbot/steampipe-plugin-net,57,22,22,0,0,19,19,49,4
1701
+ turbot/steampipe-plugin-oci,282,235,235,0,0,195,195,1050,833
1702
+ turbot/steampipe-plugin-okta,96,31,31,0,0,50,50,141,78
1703
+ turbot/steampipe-plugin-onepassword,27,0,0,0,0,11,11,12,0
1704
+ turbot/steampipe-plugin-openai,30,5,5,0,0,6,6,16,12
1705
+ turbot/steampipe-plugin-openapi,26,3,3,0,0,5,5,13,2
1706
+ turbot/steampipe-plugin-prometheus,39,2,2,0,0,12,12,27,16
1707
+ turbot/steampipe-plugin-reddit,37,4,4,0,0,11,11,15,2
1708
+ turbot/steampipe-plugin-rss,45,5,5,0,0,9,9,32,8
1709
+ turbot/steampipe-plugin-salesforce,38,11,11,0,0,10,10,31,14
1710
+ turbot/steampipe-plugin-scaleway,56,2,2,0,0,23,23,87,64
1711
+ turbot/steampipe-plugin-sdk,327,120,120,0,0,169,169,63,16
1712
+ turbot/steampipe-plugin-shodan,45,3,3,0,0,7,7,16,0
1713
+ turbot/steampipe-plugin-shopify,26,13,13,0,0,8,8,10,5
1714
+ turbot/steampipe-plugin-slack,55,16,16,0,0,18,18,43,11
1715
+ turbot/steampipe-plugin-snowflake,42,4,4,0,0,13,13,79,60
1716
+ turbot/steampipe-plugin-steampipe,46,5,5,0,0,12,12,19,0
1717
+ turbot/steampipe-plugin-stripe,45,2,2,0,0,10,10,18,0
1718
+ turbot/steampipe-plugin-supabase,24,1,1,0,0,3,3,10,7
1719
+ turbot/steampipe-plugin-tailscale,56,3,3,0,0,17,17,30,0
1720
+ turbot/steampipe-plugin-terraform,70,19,19,0,0,21,21,85,56
1721
+ turbot/steampipe-plugin-tfe,44,3,3,0,0,10,10,23,2
1722
+ turbot/steampipe-plugin-trivy,34,2,2,0,0,8,8,14,0
1723
+ turbot/steampipe-plugin-twitter,44,3,3,0,0,10,10,29,5
1724
+ turbot/steampipe-plugin-virustotal,41,0,0,0,0,4,4,13,0
1725
+ turbot/steampipe-plugin-whois,45,8,8,0,0,11,11,24,7
1726
+ turbot/steampipe-plugin-zendesk,50,7,7,0,0,10,10,18,0
1727
+ turbot/steampipe-sqlite,50,15,15,0,0,18,18,10,0
1728
+ turtir-ai/mcp-ecosystem-platform,0,0,0,0,0,0,0,0,0
1729
+ tuva-health/FHIR_inferno,10,0,0,0,0,5,5,27,18
1730
+ tuva-health/demo,33,8,8,0,0,20,20,49,19
1731
+ tuva-health/medicare_cclf_connector,105,10,10,0,0,23,23,72,52
1732
+ tuva-health/medicare_lds_connector,62,3,3,0,0,8,8,16,4
1733
+ tuva-health/provider,6,0,0,0,0,6,6,7,0
1734
+ tuva-health/tuva,643,259,259,0,0,384,384,1199,702
1735
+ tvdboom/ATOM,314,11,11,0,0,1,1,14,14
1736
+ tvs-sde/oxford-omop-data-mapper,447,0,0,0,0,185,185,213,89
1737
+ tweag/lagoon,3,0,0,0,0,0,0,0,0
1738
+ twosigma/uberjob,26,1,1,0,0,8,8,45,37
1739
+ typedef-ai/fenic-examples,4,0,0,0,0,0,0,12,12
1740
+ typhoon-data-org/typhoon-orchestrator,35,1,1,0,0,1,1,1,0
1741
+ uber/storagetapper,3,1,1,0,0,3,3,12,0
1742
+ ubisoft/mobydq,282,44,44,0,0,37,37,169,144
1743
+ ucbepic/docetl,328,47,47,0,0,60,60,44,31
1744
+ umitkacar/awesome-mlops,15,0,0,0,0,0,0,0,0
1745
+ unbody-io/unbody,58,2,2,0,0,16,16,17,6
1746
+ unicef/magasin,394,3,3,0,0,9,9,13,5
1747
+ unioslo/cerebrum,57,0,0,0,0,1,1,0,0
1748
+ unit-mesh/unit-gen,5,5,5,0,0,2,2,0,0
1749
+ unnati-xyz/scalable-data-science-platform,10,0,0,0,0,0,0,0,0
1750
+ unruly/terraform-aws-airflow,3,0,0,0,0,0,0,0,0
1751
+ unytics/airbyte_serverless,94,2,2,0,0,3,3,0,0
1752
+ unytics/bigfunctions,334,26,26,0,0,91,91,21,14
1753
+ uptake/airflow-api,0,1,1,0,0,0,0,0,0
1754
+ uptake/uptasticsearch,140,21,21,0,0,47,47,413,334
1755
+ urbanclimatefr/de-zoomcamp-2025-project,53,0,0,0,0,0,0,0,0
1756
+ usc-isi-i2/kgtk,460,92,92,0,0,42,42,48,29
1757
+ useVenice/venice,92,5,5,0,0,16,16,132,101
1758
+ valeriouberti/rigatoni,13,0,0,0,0,0,0,0,0
1759
+ vandenn/dagster-prio-dynamic-map,2,0,0,0,0,0,0,0,0
1760
+ vectordotdev/vector,11509,4017,4017,0,0,5146,5146,45107,36957
1761
+ vedanthv/data-engineering-portfolio,181,0,0,0,0,0,0,0,0
1762
+ vee-huyvunguyen/airflow-single-server,4,0,0,0,0,0,0,0,0
1763
+ velocitybolt/open-extract,144,0,0,0,0,9,9,14,0
1764
+ vertica/PSTL,0,2,2,0,0,0,0,0,0
1765
+ vesoft-inc/nebula-exchange,290,22,22,0,0,55,55,182,62
1766
+ vibhorkum/pg_background,64,39,39,0,0,16,16,34,18
1767
+ vietvudanh/vietlott-data,9,3,3,0,0,14,14,8,0
1768
+ vigneshSs-07/Google-Cloud-Professional-Data-Engineer-ACompleteGuide,5,0,0,0,0,0,0,0,0
1769
+ vim89/datapipelines-essentials-python,0,0,0,0,0,0,0,0,0
1770
+ vincentclaes/datajob,100,3,3,0,0,11,11,9,2
1771
+ vincentkoc/dexscraper,13,7,7,0,0,1,1,1,0
1772
+ vinitg96/elt-data-lakehouse,20,0,0,0,0,0,0,0,0
1773
+ vishwapardeshi/NL_Parser_using_Spacy,16,0,0,0,0,0,0,0,0
1774
+ vitaliihonta/scala-ql,44,0,0,0,0,0,0,2,2
1775
+ vjgpt/twitter-pipeline,3,0,0,0,0,0,0,0,0
1776
+ vladyslavyaloveha/etl_platform,2,0,0,0,0,0,0,0,0
1777
+ vlm-run/vlmrun-hub,116,7,7,0,0,34,34,94,49
1778
+ vmariiechko/databricks-bundle-template,7,0,0,0,0,0,0,0,0
1779
+ vmware/versatile-data-kit,1961,462,462,0,0,525,525,9678,9011
1780
+ vnvo/deltaforge,37,2,2,0,0,0,0,0,0
1781
+ vojay-dev/sc2-data-pipeline,1,0,0,0,0,0,0,0,0
1782
+ voxmedia/tap-instagram,20,2,2,0,0,2,2,6,3
1783
+ vskaret/yahoo-finance-warehouse,10,0,0,0,0,1,1,0,0
1784
+ vtsaplin/datatalk-cli,0,0,0,0,0,0,0,0,0
1785
+ vuhuusy/data-lakehouse-platform,19,0,0,0,0,0,0,0,0
1786
+ walleXD/ts-dag,5,0,0,0,0,8,8,0,0
1787
+ wbsg-uni-mannheim/PyDI,29,2,2,0,0,1,1,4,0
1788
+ wednesday-solutions/Data-Engineering-Onboarding-Starter,13,0,0,0,0,2,2,3,0
1789
+ wednesday-solutions/aws-glue-jupyter-notebook-starter,1,0,0,0,0,0,0,0,0
1790
+ wednesday-solutions/multi-cloud-etl-pipeline,36,0,0,0,0,9,9,21,11
1791
+ weizhonzhen/FastEtl,220,1,1,0,0,0,0,0,0
1792
+ wenjie2wang/intsurv,0,0,0,0,0,0,0,0,0
1793
+ wesleyolvr/shein_crawler,9,0,0,0,0,0,0,1,0
1794
+ wgzhao/Addax,516,220,220,0,0,227,227,49,19
1795
+ wgzhao/addax-admin,10,4,4,0,0,0,0,1,0
1796
+ wharfie/wharfie,92,0,0,0,0,0,0,0,0
1797
+ whylabs/whylogs,766,275,275,0,0,463,463,3207,2398
1798
+ whythawk/whyqd,10,0,0,0,0,1,1,0,0
1799
+ wilson-mok/demo,19,0,0,0,0,0,0,0,0
1800
+ windsor-ai/dbt-facebook-big_query,5,0,0,0,0,4,4,0,0
1801
+ wingfoil-io/wingfoil,278,3,3,0,0,9,9,29,9
1802
+ wintechis/flex-rml,31,0,0,0,0,0,0,0,0
1803
+ wiredhut/wiredflow,5,0,0,0,0,0,0,0,0
1804
+ withterm/term-guard,3,0,0,0,0,3,3,8,0
1805
+ worldbank/OvertureLink-Data-Pipeline,17,0,0,0,0,4,4,1,0
1806
+ wp-labs/warp-parse,70,8,8,0,0,32,32,3,3
1807
+ wp-labs/wp-editor,21,4,4,0,0,3,3,0,0
1808
+ wri/gfw-data-api,614,0,0,0,0,53,53,1345,1032
1809
+ write4alive/Data-Pipelines-with-Apache-Airflow,14,0,0,0,0,0,0,0,0
1810
+ wujun728/jun_bigdata,0,0,0,0,0,0,0,0,0
1811
+ wx-chevalier/sentinel-crawler,10,0,0,0,0,4,4,0,0
1812
+ xnuinside/airflow_in_docker_compose,30,6,6,0,0,9,9,1,0
1813
+ xonsh/xonsh,2780,1398,1398,0,0,2355,2355,3408,2576
1814
+ xorq-labs/xorq,1329,0,0,0,0,1006,1006,1752,643
1815
+ xuwei95/ezdata,2,13,13,0,0,0,0,0,0
1816
+ xuwenyihust/PawMark,118,0,0,0,0,1,1,0,0
1817
+ xuwenzhe/currency-analysis,1,0,0,0,0,0,0,0,0
1818
+ xzZero/IBM-Data-Engineering-Professional-Specialization-Coursera,3,0,0,0,0,0,0,0,0
1819
+ yahia997/PavementEye,13,0,0,0,0,0,0,0,0
1820
+ yahoo/cubed,5,0,0,0,0,1,1,12,6
1821
+ yamrcraft/etl-light,2,1,1,0,0,0,0,0,0
1822
+ yennanliu/AirflowJob,17,0,0,0,0,0,0,0,0
1823
+ yennanliu/airflow-ubuntu-dev,56,0,0,0,0,22,22,0,0
1824
+ yennanliu/data_infra_repo,24,0,0,0,0,9,9,0,0
1825
+ yennanliu/web_scraping,48,0,0,0,0,9,9,0,0
1826
+ yezhengSTAT/ADTnorm,23,0,0,0,0,5,5,0,0
1827
+ ylem-co/ylem,10,0,0,0,0,1,1,1,0
1828
+ yobix-ai/extractous,21,6,6,0,0,6,6,6,3
1829
+ yobix-ai/extractous-benchmarks,1,0,0,0,0,0,0,0,0
1830
+ yu-iskw/dbt-airflow-macros,24,0,0,0,0,0,0,1,0
1831
+ yuchiu/today-news,11,0,0,0,0,0,0,0,0
1832
+ yxwucq/scExtract,6,6,6,0,0,0,0,0,0
1833
+ zacharyt-cs/reddit-data-engineering,19,0,0,0,0,0,0,0,0
1834
+ zappzerapp/laravel-ingest,9,3,3,0,0,1,1,0,0
1835
+ zazuko/barnard59,453,15,15,0,0,97,97,314,213
1836
+ zazuko/xrm-csvw-workflow,8,1,1,0,0,2,2,7,7
1837
+ zbrookle/avionix_airflow,33,0,0,0,0,1,1,0,0
1838
+ zbrookle/sql_to_ibis,53,4,4,0,0,0,0,0,0
1839
+ zero-one-group/geni,313,4,4,0,0,32,32,35,31
1840
+ zetane/zetaforgedev,208,30,30,0,0,130,130,313,190
1841
+ zeus-fyi/zeus,634,1,1,0,0,4,4,0,0
1842
+ zhaoyachao/zdh_server,0,0,0,0,0,0,0,0,0
1843
+ zhiweio/data-engineer-scripts,2,0,0,0,0,0,0,0,0
1844
+ zhujun98/data-engineering,3,0,0,0,0,0,0,0,0
1845
+ zigflow/zigflow,19,8,8,0,0,18,18,22,16
1846
+ ziggy-data/scraping_zap_imoveis,50,0,0,0,0,0,0,0,0
1847
+ zkan/data-engineering-bootcamp,17,0,0,0,0,8,8,7,0
1848
+ zkan/data-pipelines-with-airflow,4,0,0,0,0,0,0,0,0
1849
+ zkan/dtc-data-engineering-zoomcamp-project,1,0,0,0,0,0,0,0,0
1850
+ zkan/swu-ds525,1,0,0,0,0,0,0,0,0
1851
+ zsvoboda/ngods,0,0,0,0,0,0,0,0,0
1852
+ zzstoatzz/prefect-memory-profiling,5,0,0,0,0,1,1,0,0
Data/DE_repo_metrics.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/DE_user_autonomy.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/filtered_DE_repositories.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/pipeline_artifacts/DE_pipeline_airflow_dag_features.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/pipeline_artifacts/DE_pipeline_beam_pipeline_features.csv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ repo_full_name,file_path,ptransform_count,pardo_count,combinefn_count,runner_type,uses_windowing,uses_side_inputs,uses_state_and_timers,file_lines
2
+ NucleusEngineering/hack-your-pipe,01_ingest_and_transform/11_challenge/beam/beam_processing.py,,,,DataflowRunner,,,,163
3
+ NucleusEngineering/hack-your-pipe,01_ingest_and_transform/12_solution/beam/beam_processing.py,2,5,0,DataflowRunner,1,0,0,166
4
+ apache/airflow,providers/apache/beam/src/airflow/providers/apache/beam/hooks/beam.py,0,0,0,DataflowRunner,0,0,0,672
5
+ rafik-rahoui/End-to-end-data-enginnerring-project,beam/dataflow/transform.py,0,7,0,DataflowRunner,0,0,0,133
Data/pipeline_artifacts/DE_pipeline_dagster_features.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/pipeline_artifacts/DE_pipeline_dbt_model_features.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/pipeline_artifacts/DE_pipeline_dbt_project_summary.csv ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_full_name,dbt_version_required,model_paths,has_tests_dir,has_snapshots,has_seeds,has_analyses,profile_outputs,total_model_files,total_schema_files
2
+ 1ambda/lakehouse,"['>=1.4.0', '<2.0.0']","[""dbt-model""]",1,1,1,1,,,
3
+ AnanthaRajuC/DataPractitioner,,"[""models""]",1,1,1,1,,,
4
+ Arturomtz8/de-zoomcamp-project,,"[""models""]",1,1,1,1,,,
5
+ BayoAdejare/airbyte_dbt_covid19,"['>=1.0.0', '<2.0.0']",[],0,0,0,0,,,
6
+ ChahiriAbderrahmane/modern-data-stack-nyc-taxi,,"[""models""]",1,1,1,1,,,
7
+ DataRecce/recce,,[],0,0,0,0,,,
8
+ DataTalksClub/data-engineering-zoomcamp,"['>=1.7.0', '<3.0.0']","[""models""]",1,1,1,1,,,
9
+ Datavault-UK/automate-dv,"['>=1.0.0', '<3.0.0']","[""models""]",1,0,1,1,,,
10
+ Dorianteffo/modern-data-platform,,"[""models""]",1,1,1,1,,,
11
+ Fozan-Talat/divvy-bikeshare-de-project,,"[""models""]",1,1,1,1,,,
12
+ Geobatpo07/datahut-duckhouse,,"[""models""]",0,0,1,1,,,
13
+ GokuMohandas/data-engineering,,"[""models""]",1,1,1,1,,,
14
+ GovHub-br/data-application-gov-hub,,"[""models""]",1,0,1,1,,,
15
+ Greatdev666/IPEDS-Data-Warehouse,,"[""models""]",1,1,1,1,,,
16
+ GuinsooLab/sheenflow,,"[""models""]",1,1,0,1,,,
17
+ HCA97/Leauge-of-Legends-Challenger-Stats,,"[""models""]",1,1,1,1,,,
18
+ InfuseAI/piperider,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,1,1,,,
19
+ JuanCampbsi/analytics_engineering_airbnb,,"[""models""]",1,1,1,1,,,
20
+ Kushalkhadka7/dagster_clickhouse_dbt,,"[""models""]",1,1,1,1,,,
21
+ MTES-MCT/sparte,,"[""models""]",1,1,1,1,,,
22
+ Mairondc21/dbt_az_usuarios,,"[""models""]",1,1,1,1,,,
23
+ ManuelGuerra1987/data-engineering-zoomcamp-notes,,"[""models""]",1,1,1,1,,,
24
+ MarcosMJD/ghcn-d,,"[""models""]",1,1,1,1,,,
25
+ MattTriano/analytics_data_where_house,,"[""models""]",1,1,1,1,,,
26
+ MinhKhoi3104/aws-end-to-end-data-lakehouse-analytics-platform,,"[""models""]",1,1,1,1,,,
27
+ Mohith-akash/Global-News-Intel-Platform,,"[""models""]",1,1,1,1,,,
28
+ Nathnael12/Datawarehouse,,[],1,1,0,1,,,
29
+ PeteCastle/2023-Data-Engineering-Zoomcamp,,"[""models""]",1,1,1,1,,,
30
+ PeteCastle/League-of-Legends-Analytics,,"[""models""]",1,1,1,1,,,
31
+ PrefectHQ/prefect,,[],0,0,0,0,,,
32
+ SA01/dbt-tutorial,,"[""models""]",1,1,1,1,,,
33
+ SQLMesh/sqlmesh,,"[""models""]",1,1,1,1,,,
34
+ Sonnet-Scripts/sonnet-scripts,,"[""models""]",1,1,1,1,,,
35
+ Teradata/dbt-teradata,,"[""models""]",1,0,1,1,,,
36
+ Toloka/dbt-af,"['>=1.0.0', '<2.0.0']","[""jaffle_shop/dbt/models"", ""advanced_jaffle_shop/dbt/models""]",1,0,1,1,,,
37
+ VICIWUOHA/airflow-dbt-magic,,"[""models""]",1,1,1,1,,,
38
+ VeraZab/nyc-stats,,"[""models""]",1,1,1,1,,,
39
+ VicenteYago/steam-data-engineering,,"[""models""]",1,1,1,1,,,
40
+ aayomide/crypto_analytics_engineering,,"[""models""]",1,1,1,1,,,
41
+ airbytehq/airbyte,,"[""models""]",1,0,1,1,,,
42
+ aivanzhang/panda_patrol,,"[""models""]",1,1,1,1,,,
43
+ andrewcstewart/ds4fnp,,"[""models""]",1,1,0,1,,,
44
+ ankurchavda/data-engineering-zoomcamp,,"[""models""]",1,1,1,1,,,
45
+ ankurchavda/streamify,,"[""models""]",1,1,1,1,,,
46
+ anna-geller/kestra-ci-cd,,"[""models""]",1,1,1,1,,,
47
+ anna-geller/prefect-dataplatform,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,0,1,,,
48
+ apache/doris,,[],0,0,0,0,,,
49
+ apache/hamilton,,"[""models""]",1,1,1,1,,,
50
+ apache/hudi,,"[""models""]",0,0,0,0,,,
51
+ astronomer/astronomer-cosmos,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,1,1,,,
52
+ astronomer/templates,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,1,1,,,
53
+ aws-samples/dataops-platform-airflow-dbt,,"[""models""]",1,1,0,1,,,
54
+ bereketkibru/Data_engineering_sensor_data,,"[""models""]",1,1,0,1,,,
55
+ bitpicky/dbt-sugar,,"[""models""]",1,0,0,1,,,
56
+ blitzkz23/final-project-end-to-end-banking-campaign-pipeline,,"[""models""]",1,1,0,1,,,
57
+ calbergs/spotify-api,,"[""models""]",1,1,1,1,,,
58
+ carteakey/cinemattr-db,,"[""models""]",1,1,1,1,,,
59
+ catalyst-cooperative/pudl,,"[""models""]",1,0,1,0,,,
60
+ ccao-data/data-architecture,,"[""models""]",1,1,1,1,,,
61
+ chayansraj/Data-Pipeline-with-dbt-using-Airflow-on-GCP,,[],0,0,0,0,,,
62
+ chonalchendo/football-data-warehouse,,"[""models""]",1,1,1,1,,,
63
+ claudiocmm/data_engineering_projects,,"[""models""]",1,1,1,1,,,
64
+ cnstlungu/postcard-company-datamart,,"[""models""]",1,1,1,1,,,
65
+ codeforkjeff/dbt-sqlite,,[],0,0,0,0,,,
66
+ coderxio/sagerx,,"[""models""]",1,1,1,1,,,
67
+ cyoung43/airflow-demo,,"[""models""]",1,1,1,1,,,
68
+ dagster-io/dagster,"['>=1.0.0', '<2.0.0']","[""../jaffle_project/models""]",1,0,1,1,,,
69
+ dagster-io/dagster-open-platform,,[],1,0,0,0,,,
70
+ dain55788/ELT-Data-Pipeline,,"[""models""]",1,1,1,1,,,
71
+ danhphan/trusted-data-pipeline,,"[""models""]",1,1,1,1,,,
72
+ databricks/dbt-databricks,,[],0,0,0,0,,,
73
+ datacoves/dbt-coves,,"[""models""]",1,1,1,1,,,
74
+ datafuel/DataPlatform_docker,,"[""models""]",1,1,0,1,,,
75
+ datalakehouse/dlh-salesforce-analytics-dbt,>=1.0.0,"[""models""]",1,1,1,1,,,
76
+ datawaves-xyz/dbt_datawaves,,[],0,0,0,0,,,
77
+ dbt-labs/dbt-core,,[],0,0,0,0,,,
78
+ dbt-labs/jaffle-shop,>=1.5.0,"[""models""]",1,1,1,1,,,
79
+ dbt-labs/jaffle-shop-mesh-finance,>=1.6.0,"[""models""]",1,1,1,1,,,
80
+ dbt-msft/dbt-sqlserver,,[],0,0,0,0,,,
81
+ debussy-labs/debussy_concert,,"[""models""]",1,1,1,1,,,
82
+ degagawolde/data-warehouse-dbt-airflow-postgress,,"[""models""]",1,1,1,1,,,
83
+ dieegogutierrez/Data-Engineering-Capstone-Project,,"[""models""]",1,1,1,1,,,
84
+ digitalghost-dev/poke-cli,,"[""models""]",1,1,1,1,,,
85
+ dinhanhthi/mooc-de,,"[""models""]",1,1,1,1,,,
86
+ dlt-hub/dlt,,"[""models""]",1,1,1,1,,,
87
+ edgarrmondragon/meltano-dogfood,"['>=1.0.0', '<2.0.0']","[""models""]",1,1,1,1,,,
88
+ elementary-data/dbt-data-reliability,,"[""models""]",1,1,1,1,,,
89
+ elementary-data/elementary,,"[""models""]",1,1,1,1,,,
90
+ feast-dev/feast,,"[""models""]",0,0,1,0,,,
91
+ feldera/feldera,,"[""models""]",1,1,1,1,,,
92
+ feluelle/finance-data-builder,,"[""models""]",1,1,0,1,,,
93
+ firebolt-db/dbt-firebolt,,[],0,0,0,0,,,
94
+ flyanakin/CountMoney,,"[""models""]",1,1,1,1,,,
95
+ fonsecagabriella/data_engineering,,"[""models""]",1,1,1,1,,,
96
+ franloza/coches-net-dashboard,,"[""models""]",1,1,1,1,,,
97
+ gmyrianthous/dbt-airflow,,"[""models""]",1,1,1,1,,,
98
+ gmyrianthous/dbt-dummy,,"[""models""]",1,1,1,1,,,
99
+ godatadriven/whirl,,"[""models""]",1,0,1,1,,,
100
+ gouline/dbt-metabase,,"[""models""]",0,0,1,0,,,
101
+ harrydevforlife/building-lakehouse,,"[""models""]",1,1,1,1,,,
102
+ hellomaxime/data-platform-on-kubernetes,,"[""models""]",1,1,1,1,,,
103
+ himewel/covid19retail,,[],1,0,0,0,,,
104
+ ilichDataEngineer/DigitalMarketingAnalysis-DataEngineerIO-CapstoneProject-DE-BTC2024,,"[""models""]",1,1,1,1,,,
105
+ iobruno/data-engineering-labs,,"[""models""]",1,1,1,1,,,
106
+ itsadityagupta/yelposphere,,"[""models""]",1,1,1,1,,,
107
+ jaanli/american-community-survey,,"[""models""]",1,1,1,1,,,
108
+ jackv-murray/lastfm-scrobble-analysis,,"[""models""]",1,1,1,1,,,
109
+ josephmachado/data_engineering_for_beginners_code,,"[""models""]",1,1,1,1,,,
110
+ josephmachado/online_store,,"[""models""]",1,1,0,1,,,
111
+ kanton-bern/hellodata-be,,"[""models""]",1,1,1,1,,,
112
+ kkumyk/server-logs-daily-data-pipeline,,"[""models""]",1,1,1,1,,,
113
+ kkuznets/crypto-sentiment-data-pipeline,,"[""models""]",1,1,1,1,,,
114
+ koksang/social-media-analysis,,"[""models""]",1,1,1,1,,,
115
+ konosp/dbt-airflow-docker-compose,,"[""models""]",1,1,0,1,,,
116
+ kuwala-io/kuwala,,"[""models""]",1,1,1,1,,,
117
+ lelouvincx/goodreads-elt-pipeline,,"[""models""]",1,1,1,1,,,
118
+ lelouvincx/spotify-data-pipeline-ingestion,,"[""models""]",1,1,1,1,,,
119
+ lisallreiber/biketheft_berlin,,"[""models""]",1,1,1,1,,,
120
+ lixx21/airflow-dbt-gcp,,"[""models""]",1,1,1,1,,,
121
+ lixx21/data-engineer-christmas-data,,"[""models""]",1,1,1,1,,,
122
+ longNguyen010203/ECommerce-ELT-Pipeline,,"[""models""]",1,1,1,1,,,
123
+ longNguyen010203/Youtube-Recommend-Master-ETL-Pipeline,,"[""models""]",1,1,1,1,,,
124
+ luatnc87/modern-data-warehouse-modeling-and-data-quality-with-dbt-openmetadata,,"[""models""]",1,1,1,1,,,
125
+ luchonaveiro/dbt-postgres-tutorial,,"[""models""]",1,1,1,1,,,
126
+ luchonaveiro/open-source-data-stack,,"[""models""]",1,1,1,1,,,
127
+ mage-ai/mage-ai,,"[""models""]",1,1,1,1,,,
128
+ mehd-io/pypi-duck-flow,,"[""models""]",1,1,1,1,,,
129
+ memiiso/opendbt,,[],0,0,0,0,,,
130
+ meyerzurheda/analytics-os,,"[""models""]",1,1,1,1,,,
131
+ nathadriele/data-engineering-zoomcamp,,"[""models""]",1,1,1,1,,,
132
+ nordquant/complete-dbt-bootcamp-zero-to-hero,,"[""models""]",1,1,1,1,,,
133
+ oresttokovenko/RetailFlow,,"[""models""]",1,1,1,1,,,
134
+ ozkary/data-engineering-mta-turnstile,,"[""models""]",1,1,1,1,,,
135
+ paulf-999/airflow_templates,,"[""models""]",1,1,0,1,,,
136
+ piyush-an/NYC-Restaurant-Inspection,,"[""models""]",1,1,1,1,,,
137
+ portovep/dbt-testing-examples,>=1.7.0,"[""models""]",1,1,1,1,,,
138
+ prefeitura-rio/pipelines_rj_smtr,,"[""models""]",1,1,1,1,,,
139
+ pyladiesams/data-pipelines-with-dbtcore-snowflake-sep2025,,"[""models""]",1,1,1,1,,,
140
+ quarylabs/quary,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,1,1,,,
141
+ richban/opendata-stack-platform,,"[""models""]",1,1,1,1,,,
142
+ ris-tlp/audiophile-e2e-pipeline,,"[""models""]",1,1,1,1,,,
143
+ rsanjabi/short-term-rentals-warehouse,,"[""models""]",1,1,0,1,,,
144
+ salimt/Transfermarkt-ETL-and-LIVE-Scores,,"[""models""]",1,1,1,1,,,
145
+ sam-hatley/real-estate-data,,"[""models""]",1,1,1,1,,,
146
+ sanchitvj/sports_betting_analytics_engine,"['>=1.0.0', '<2.0.0']","[""models""]",1,0,0,0,,,
147
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,,"[""models""]",1,1,1,1,,,
148
+ sarathchandrikak/Data-Projects,,"[""models""]",1,1,1,1,,,
149
+ shahidmalik4/dbt-airflow-data-pipeline,,"[""models""]",1,1,1,1,,,
150
+ shankarlohar/dbt-snowflake-data-pipeline,,"[""models""]",1,1,1,1,,,
151
+ snowplow/dbt-snowplow-web,,"[""models""]",1,0,1,1,,,
152
+ starburstdata/dbt-trino,,[],0,0,0,0,,,
153
+ sudoku-committer/dicom-etl-dagster-snowflake,,"[""models""]",1,1,1,1,,,
154
+ sungchun12/airflow-toolkit,0.17.0,"[""models""]",1,1,0,1,,,
155
+ thanhENC/e2e-data-platform,,"[""models""]",1,1,1,1,,,
156
+ tmoore-prog/stock_market_pipeline,,"[""models""]",1,1,1,1,,,
157
+ trannhatnguyen2/NYC_Taxi_Data_Pipeline,,"[""models""]",1,1,1,1,,,
158
+ tsffarias/LiftOff_Data,,"[""models""]",1,1,1,1,,,
159
+ tuva-health/demo,,"[""models""]",1,1,1,1,,,
160
+ tuva-health/medicare_cclf_connector,,"[""models""]",1,1,1,1,,,
161
+ tuva-health/medicare_lds_connector,,"[""models""]",1,1,1,1,,,
162
+ tuva-health/provider,,"[""models""]",1,1,1,1,,,
163
+ tuva-health/tuva,,"[""models""]",1,1,1,1,,,
164
+ urbanclimatefr/de-zoomcamp-2025-project,,"[""models""]",1,1,1,1,,,
165
+ vedanthv/data-engineering-portfolio,,"[""models""]",1,1,1,1,,,
166
+ vinitg96/elt-data-lakehouse,,"[""models""]",1,1,1,1,,,
167
+ vskaret/yahoo-finance-warehouse,,"[""models""]",1,1,1,1,,,
168
+ windsor-ai/dbt-facebook-big_query,,"[""models""]",1,0,1,1,,,
169
+ yu-iskw/dbt-airflow-macros,"['>=0.21.0', '<2.0.0']","[""models""]",1,1,1,1,,,
170
+ zkan/data-engineering-bootcamp,,"[""models""]",1,1,1,1,,,
171
+ zkan/dtc-data-engineering-zoomcamp-project,,"[""models""]",1,1,1,1,,,
172
+ zkan/swu-ds525,,"[""models""]",1,1,1,1,,,
Data/pipeline_artifacts/DE_pipeline_dlt_features.csv ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_full_name,file_path,source_count,resource_count,destination_types,uses_incremental,uses_schema_contracts,uses_transformers,file_lines
2
+ dagster-io/dagster-open-platform,dagster_open_platform/defs/dlt/sources/local_github.py,0,0,"[""snowflake""]",0,0,0,41
3
+ dlt-hub/dlt,dlt/sources/__init__.py,0,0,[],0,0,0,19
4
+ dlt-hub/dlt,dlt/sources/config.py,0,0,[],0,0,0,2
5
+ dlt-hub/dlt,dlt/sources/credentials.py,0,0,[],0,0,0,35
6
+ dlt-hub/dlt,docs/examples/archive/sources/google_sheets.py,1,0,[],0,0,0,70
7
+ dlt-hub/dlt,docs/examples/archive/sources/jsonl.py,0,1,[],0,0,0,37
8
+ dlt-hub/dlt,docs/examples/archive/sources/singer_tap.py,1,1,[],0,0,1,119
9
+ dlt-hub/dlt,docs/examples/archive/sources/sql_query.py,0,2,[],0,0,0,98
10
+ dlt-hub/dlt,docs/examples/archive/sources/stdout.py,0,1,[],0,0,0,17
11
+ dlt-hub/dlt,tests/extract/cases/sources/shorthand.py,2,0,[],0,0,0,11
12
+ dlt-hub/dlt,tests/plugins/dlt_example_plugin/dlt_example_plugin/sources/github.py,1,1,[],1,0,0,19
13
+ dlt-hub/dlt,tests/sources/test_minimal_dependencies.py,0,0,[],0,0,0,3
14
+ dlt-hub/verified-sources,sources/airtable_pipeline.py,0,0,"[""duckdb""]",0,0,0,179
15
+ dlt-hub/verified-sources,sources/asana_dlt_pipeline.py,0,0,"[""duckdb""]",0,0,0,50
16
+ dlt-hub/verified-sources,sources/bing_webmaster_pipeline.py,0,0,"[""duckdb""]",0,0,0,55
17
+ dlt-hub/verified-sources,sources/chess_pipeline.py,0,0,"[""duckdb""]",0,0,0,49
18
+ dlt-hub/verified-sources,sources/facebook_ads_pipeline.py,0,0,"[""duckdb""]",0,0,0,146
19
+ dlt-hub/verified-sources,sources/freshdesk_pipeline.py,0,0,"[""duckdb""]",0,0,0,52
20
+ dlt-hub/verified-sources,sources/github_pipeline.py,0,0,"[""duckdb""]",0,0,0,61
21
+ dlt-hub/verified-sources,sources/google_ads_pipeline.py,0,0,"[""duckdb""]",0,0,0,24
22
+ dlt-hub/verified-sources,sources/google_analytics_pipeline.py,0,0,"[""duckdb""]",0,0,0,99
23
+ dlt-hub/verified-sources,sources/google_sheets_pipeline.py,0,0,"[""duckdb""]",0,0,0,137
24
+ dlt-hub/verified-sources,sources/hubspot_pipeline.py,0,0,"[""duckdb""]",0,0,0,161
25
+ dlt-hub/verified-sources,sources/inbox_pipeline.py,0,0,"[""duckdb""]",1,0,1,70
26
+ dlt-hub/verified-sources,sources/jira_pipeline.py,0,0,"[""duckdb""]",0,0,0,53
27
+ dlt-hub/verified-sources,sources/kafka_pipeline.py,0,0,"[""postgres""]",0,0,0,75
28
+ dlt-hub/verified-sources,sources/kinesis_pipeline.py,0,0,"[""duckdb""]",0,0,0,114
29
+ dlt-hub/verified-sources,sources/matomo_pipeline.py,0,0,"[""duckdb"", ""postgres""]",0,0,0,91
30
+ dlt-hub/verified-sources,sources/mongodb_pipeline.py,0,0,"[""duckdb"", ""postgres""]",1,0,0,172
31
+ dlt-hub/verified-sources,sources/mux_pipeline.py,0,0,"[""duckdb""]",0,0,0,14
32
+ dlt-hub/verified-sources,sources/notion_pipeline.py,0,0,"[""duckdb""]",0,0,0,23
33
+ dlt-hub/verified-sources,sources/personio_pipeline.py,0,0,"[""duckdb""]",0,0,0,42
34
+ dlt-hub/verified-sources,sources/pg_replication_pipeline.py,0,0,"[""duckdb""]",0,0,0,353
35
+ dlt-hub/verified-sources,sources/pipedrive_pipeline.py,0,0,"[""duckdb""]",0,0,0,120
36
+ dlt-hub/verified-sources,sources/pokemon_pipeline.py,0,0,"[""duckdb""]",0,0,0,33
37
+ dlt-hub/verified-sources,sources/salesforce_pipeline.py,0,0,"[""duckdb""]",0,0,0,21
38
+ dlt-hub/verified-sources,sources/scraping_pipeline.py,0,0,"[""duckdb""]",0,0,0,106
39
+ dlt-hub/verified-sources,sources/shopify_dlt_pipeline.py,0,0,"[""duckdb""]",0,0,0,116
40
+ dlt-hub/verified-sources,sources/slack_pipeline.py,0,0,"[""duckdb""]",0,0,0,110
41
+ dlt-hub/verified-sources,sources/strapi_pipeline.py,0,0,"[""bigquery""]",0,0,0,21
42
+ dlt-hub/verified-sources,sources/stripe_analytics_pipeline.py,0,0,"[""duckdb""]",0,0,0,103
43
+ dlt-hub/verified-sources,sources/unstructured_data_pipeline.py,0,0,"[""duckdb""]",0,0,0,88
44
+ dlt-hub/verified-sources,sources/workable_pipeline.py,0,0,"[""duckdb""]",0,0,0,71
45
+ dlt-hub/verified-sources,sources/zendesk_pipeline.py,0,0,"[""postgres""]",0,0,0,116
Data/pipeline_artifacts/DE_pipeline_files.csv ADDED
The diff for this file is too large to render. See raw diff
 
Data/pipeline_artifacts/DE_pipeline_kedro_pipeline_features.csv ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_full_name,file_path,node_count,pipeline_count,dataset_types,has_parameters_file,has_catalog_file,uses_versioning,uses_partitioned_ds,file_lines
2
+ Minyus/pipelinex,src/pipelinex/flex_kedro/pipeline/pipeline.py,0,0,[],,,0,0,49
3
+ Minyus/pipelinex,src/pipelinex/flex_kedro/pipeline/sub_pipeline.py,1,0,[],,,0,0,74
4
+ Minyus/pipelinex,src/tests/flex_kedro/pipeline/test_pipeline.py,8,4,[],,,0,0,109
5
+ apache/hamilton,examples/kedro/kedro-code/src/kedro_code/pipelines/data_processing/pipeline.py,3,1,[],,,0,0,45
6
+ apache/hamilton,examples/kedro/kedro-code/src/kedro_code/pipelines/data_science/pipeline.py,3,1,[],,,0,0,45
7
+ chck/ml-management-tools,tools/kedro/tutorial/src/tutorial/pipelines/data_engineering/pipeline.py,2,1,[],,,0,0,59
8
+ chck/ml-management-tools,tools/kedro/tutorial/src/tutorial/pipelines/data_science/pipeline.py,2,1,[],,,0,0,50
9
+ elyra-ai/elyra,elyra/pipeline/component_catalog.py,0,0,[],,,0,0,733
10
+ elyra-ai/elyra,elyra/tests/pipeline/test_handlers.py,0,0,[],,,0,0,341
11
+ everycure-org/kedro-argo,argo-kedro/argo_kedro/pipeline/fused_pipeline.py,0,1,[],,,0,0,111
12
+ everycure-org/kedro-argo,argo-kedro/argo_kedro/pipeline/node.py,0,0,[],,,0,0,53
13
+ everycure-org/kedro-argo,argo-kedro/tests/pipeline/test_fused_pipeline.py,2,1,[],,,0,0,45
14
+ everycure-org/kedro-argo,argo-test/src/argo_test/pipelines/data_processing/pipeline.py,0,1,[],,,0,0,35
15
+ everycure-org/kedro-argo,argo-test/src/argo_test/pipelines/data_science/pipeline.py,0,0,[],,,0,0,30
16
+ everycure-org/kedro-argo,argo-test/src/argo_test/pipelines/reporting/pipeline.py,0,1,[],,,0,0,33
17
+ mta-tech/seeknal,src/seeknal/pipeline/context.py,0,0,[],,,0,0,467
18
+ mta-tech/seeknal,src/seeknal/pipeline/materialization.py,0,0,[],,,0,0,94
19
+ stateful-y/kedro-dagster,src/kedro_dagster/nodes.py,0,2,[],,,0,0,782
Data/pipeline_artifacts/DE_pipeline_luigi_task_features.csv ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_full_name,file_path,task_count,max_requires_depth,uses_local_target,uses_s3_target,uses_gcs_target,uses_hdfs_target,uses_external_task,has_dynamic_requires,has_run_method,has_output_method,antipattern_missing_output,antipattern_hardcoded_path,file_lines
2
+ andreizolotarev/MLOps,pipelines/luigi/volume/pipeline.py,2,,1,0,0,0,0,0,1,1,0,0,121
3
+ miseyu/luigi-etl,etl/tasks/beam.py,1,,0,0,0,0,0,0,1,1,0,0,86
4
+ miseyu/luigi-etl,etl/tasks/bigquery.py,9,,1,0,0,0,0,0,1,1,1,0,432
5
+ miseyu/luigi-etl,etl/tasks/common.py,1,,0,0,0,0,0,0,0,1,0,0,29
6
+ miseyu/luigi-etl,etl/tasks/csv.py,0,,0,0,0,0,0,0,0,0,0,0,106
7
+ miseyu/luigi-etl,etl/tasks/dataflow.py,1,,0,0,0,0,0,0,1,1,0,0,176
8
+ miseyu/luigi-etl,etl/tasks/datastore.py,1,,0,0,0,0,0,0,1,1,0,0,34
9
+ miseyu/luigi-etl,etl/tasks/dmp_meta.py,7,,1,0,0,0,0,0,1,1,1,0,225
10
+ miseyu/luigi-etl,etl/tasks/gcore.py,1,,0,0,0,0,0,0,0,0,0,0,158
11
+ miseyu/luigi-etl,etl/tasks/gstorage.py,1,,0,0,0,0,0,0,1,0,1,0,94
12
+ miseyu/luigi-etl,etl/tasks/td.py,0,,0,0,0,0,0,0,0,0,0,0,24
13
+ miseyu/luigi-etl,etl/tasks/url.py,2,,1,0,0,0,0,0,1,1,0,0,61
14
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/aggregate.py,2,,0,0,0,0,0,1,0,0,0,0,52
15
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/dump.py,2,,0,1,0,0,0,1,1,1,0,0,134
16
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/enrich.py,2,,0,0,0,0,0,1,0,0,0,0,120
17
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/example.py,1,,0,0,0,0,0,0,0,0,0,0,44
18
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/extract.py,3,,0,0,0,0,0,1,1,1,0,0,227
19
+ nestauk/ojo_daps_mirror,ojd_daps/tasks/tests/test_extract.py,0,,0,0,0,0,0,0,0,0,0,0,47
20
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi.py,0,,0,0,0,0,0,0,0,0,0,0,115
21
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/common.py,4,,0,0,0,0,0,0,1,0,1,0,61
22
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/dokku.py,1,,0,0,0,0,0,0,1,0,1,0,26
23
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/nbconvert.py,1,,1,0,0,0,0,0,1,1,0,0,42
24
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/papermill.py,1,,1,0,0,0,0,0,1,1,0,0,32
25
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/post.py,1,,0,0,0,0,0,0,1,0,1,0,29
26
+ tkp-archive/paperboy,paperboy/scheduler/luigi/luigi_tasks/voila.py,1,,0,0,0,0,0,0,1,0,1,0,28
27
+ tkp-archive/paperboy,paperboy/scheduler/luigi/paperboy.luigi.py,0,,0,0,0,0,0,0,0,0,0,0,129
Data/pipeline_artifacts/DE_pipeline_prefect_flow_features.csv ADDED
@@ -0,0 +1,715 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repo_full_name,file_path,prefect_version,flow_count,task_count,has_retries,max_retries,has_schedule,has_timeout,uses_result_caching,uses_state_handler,uses_mapped_tasks,has_deployment_block,antipattern_no_retries,antipattern_no_timeout,file_lines
2
+ Arturomtz8/de-zoomcamp-project,flows/create_plots.py,2.x,1,3,0,,0,0,0,0,0,0,1,1,197
3
+ Arturomtz8/de-zoomcamp-project,flows/gc_funcs/reader_writer.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,31
4
+ Arturomtz8/de-zoomcamp-project,flows/reddit_comments_scraper.py,2.x,1,4,0,,0,0,0,0,0,0,1,1,133
5
+ Arturomtz8/de-zoomcamp-project,flows/reddit_posts_scraper.py,2.x,1,4,0,,0,0,0,0,0,0,1,1,123
6
+ Arturomtz8/de-zoomcamp-project,flows/update_comments_in_bq.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,32
7
+ Arturomtz8/de-zoomcamp-project,flows/update_posts_in_bq.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,32
8
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.2/cat_dog_facts.py,2.x,3,0,0,,0,0,0,0,0,0,1,1,24
9
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.2/cat_facts.py,2.x,1,1,1,4,0,0,0,0,0,0,0,1,20
10
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.3/orchestrate.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,135
11
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.3/orchestrate_pre_prefect.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,131
12
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.4/orchestrate.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,135
13
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.5/create_s3_bucket_block.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,23
14
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.5/orchestrate.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,135
15
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.5/orchestrate_s3.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,159
16
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.6/create_s3_bucket_block.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,23
17
+ DataTalksClub/mlops-zoomcamp,cohorts/2023/03-orchestration/prefect/3.6/orchestrate_s3.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,159
18
+ Fozan-Talat/divvy-bikeshare-de-project,prefect/prefect_blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,41
19
+ Fozan-Talat/divvy-bikeshare-de-project,prefect/web_to_gcs_to_bq.py,2.x,1,6,1,3,0,0,0,0,0,0,0,1,141
20
+ HCA97/Leauge-of-Legends-Challenger-Stats,prefect/blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,32
21
+ HCA97/Leauge-of-Legends-Challenger-Stats,prefect/config.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
22
+ HCA97/Leauge-of-Legends-Challenger-Stats,prefect/deployment.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,21
23
+ HCA97/Leauge-of-Legends-Challenger-Stats,prefect/main_high_elo.py,2.x,3,6,0,,0,0,1,0,0,0,1,1,193
24
+ HCA97/Leauge-of-Legends-Challenger-Stats,prefect/utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,236
25
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/DEFUNCT_azblob_to_synapse.py,2.x,2,2,0,,0,0,0,0,0,0,1,1,75
26
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/DEFUNCT_etl_web_to_azblob.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
27
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/docker_deploy.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,15
28
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/ingest_data.py,2.x,1,4,0,,0,0,1,0,0,0,1,1,93
29
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/parameterized_flow.py,2.x,3,3,1,3,0,0,0,0,0,0,0,1,106
30
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/parameterized_local_flow.py,2.x,2,1,0,,0,0,0,0,0,0,1,1,70
31
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/parameterized_synapse.py,2.x,3,2,0,,0,0,0,0,0,0,1,1,94
32
+ PeteCastle/2023-Data-Engineering-Zoomcamp,flows/parameterized_yearly_flow.py,2.x,1,2,1,3,0,0,0,0,0,0,0,1,56
33
+ PeteCastle/League-of-Legends-Analytics,flows/all_flows.py,2.x,2,0,0,,0,0,0,0,1,0,1,1,135
34
+ PeteCastle/League-of-Legends-Analytics,flows/dependencies/dataframe_extras.py,2.x,0,1,0,,0,0,0,0,0,0,1,1,48
35
+ PeteCastle/League-of-Legends-Analytics,flows/dependencies/league_entries.py,2.x,3,0,0,,0,0,0,0,0,0,1,1,100
36
+ PeteCastle/League-of-Legends-Analytics,flows/dependencies/match_entries.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,134
37
+ PeteCastle/League-of-Legends-Analytics,flows/dependencies/method_ingestion.py,2.x,3,3,0,,0,0,0,0,0,0,1,1,54
38
+ PeteCastle/League-of-Legends-Analytics,flows/league_assets.py,2.x,1,7,0,,0,0,0,0,0,0,1,1,278
39
+ PrefectHQ/prefect,src/prefect/__init__.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,221
40
+ PrefectHQ/prefect,src/prefect/__main__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,4
41
+ PrefectHQ/prefect,src/prefect/_experimental/_launchers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,31
42
+ PrefectHQ/prefect,src/prefect/_experimental/bundles/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,68
43
+ PrefectHQ/prefect,src/prefect/_experimental/bundles/execute.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,46
44
+ PrefectHQ/prefect,src/prefect/_experimental/plugins/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,16
45
+ PrefectHQ/prefect,src/prefect/_experimental/plugins/apply.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,5
46
+ PrefectHQ/prefect,src/prefect/_experimental/plugins/diagnostics.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,7
47
+ PrefectHQ/prefect,src/prefect/_experimental/plugins/manager.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,7
48
+ PrefectHQ/prefect,src/prefect/_experimental/plugins/spec.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,7
49
+ PrefectHQ/prefect,src/prefect/_experimental/sla/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,92
50
+ PrefectHQ/prefect,src/prefect/_experimental/sla/objects.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,89
51
+ PrefectHQ/prefect,src/prefect/_flow_run_suspension.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,136
52
+ PrefectHQ/prefect,src/prefect/_internal/_logging.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,38
53
+ PrefectHQ/prefect,src/prefect/_internal/analytics/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,80
54
+ PrefectHQ/prefect,src/prefect/_internal/analytics/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,132
55
+ PrefectHQ/prefect,src/prefect/_internal/analytics/device_id.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,55
56
+ PrefectHQ/prefect,src/prefect/_internal/analytics/emit.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,90
57
+ PrefectHQ/prefect,src/prefect/_internal/analytics/enabled.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,33
58
+ PrefectHQ/prefect,src/prefect/_internal/analytics/milestones.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,177
59
+ PrefectHQ/prefect,src/prefect/_internal/analytics/notice.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
60
+ PrefectHQ/prefect,src/prefect/_internal/analytics/service.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,238
61
+ PrefectHQ/prefect,src/prefect/_internal/ast_utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,117
62
+ PrefectHQ/prefect,src/prefect/_internal/buildx.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,217
63
+ PrefectHQ/prefect,src/prefect/_internal/compatibility/async_dispatch.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,101
64
+ PrefectHQ/prefect,src/prefect/_internal/compatibility/blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,45
65
+ PrefectHQ/prefect,src/prefect/_internal/compatibility/deprecated.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,326
66
+ PrefectHQ/prefect,src/prefect/_internal/compatibility/deprecated_paths.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
67
+ PrefectHQ/prefect,src/prefect/_internal/compatibility/migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,166
68
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,42
69
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/api.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,234
70
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/calls.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,522
71
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/cancellation.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,601
72
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/primitives.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
73
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,543
74
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/threads.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,379
75
+ PrefectHQ/prefect,src/prefect/_internal/concurrency/waiters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,276
76
+ PrefectHQ/prefect,src/prefect/_internal/control_listener.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,223
77
+ PrefectHQ/prefect,src/prefect/_internal/engine.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,95
78
+ PrefectHQ/prefect,src/prefect/_internal/installation.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,67
79
+ PrefectHQ/prefect,src/prefect/_internal/launchers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,106
80
+ PrefectHQ/prefect,src/prefect/_internal/metrics.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,157
81
+ PrefectHQ/prefect,src/prefect/_internal/observers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,494
82
+ PrefectHQ/prefect,src/prefect/_internal/plugins/apply.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,62
83
+ PrefectHQ/prefect,src/prefect/_internal/plugins/collections.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,74
84
+ PrefectHQ/prefect,src/prefect/_internal/plugins/manager.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,136
85
+ PrefectHQ/prefect,src/prefect/_internal/plugins/startup.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,126
86
+ PrefectHQ/prefect,src/prefect/_internal/pydantic/v2_schema.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,136
87
+ PrefectHQ/prefect,src/prefect/_internal/result_records.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,255
88
+ PrefectHQ/prefect,src/prefect/_internal/retries.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
89
+ PrefectHQ/prefect,src/prefect/_internal/schemas/bases.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,139
90
+ PrefectHQ/prefect,src/prefect/_internal/schemas/validators.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,734
91
+ PrefectHQ/prefect,src/prefect/_internal/send_entrypoint_logs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
92
+ PrefectHQ/prefect,src/prefect/_internal/states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,316
93
+ PrefectHQ/prefect,src/prefect/_internal/testing.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,69
94
+ PrefectHQ/prefect,src/prefect/_internal/version_checking.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,199
95
+ PrefectHQ/prefect,src/prefect/_internal/versioning.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,440
96
+ PrefectHQ/prefect,src/prefect/_internal/waiters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,254
97
+ PrefectHQ/prefect,src/prefect/_internal/websockets.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,88
98
+ PrefectHQ/prefect,src/prefect/_sdk/fetcher.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,473
99
+ PrefectHQ/prefect,src/prefect/_sdk/generator.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,143
100
+ PrefectHQ/prefect,src/prefect/_sdk/models.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,139
101
+ PrefectHQ/prefect,src/prefect/_sdk/renderer.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,513
102
+ PrefectHQ/prefect,src/prefect/_sdk/schema_converter.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,436
103
+ PrefectHQ/prefect,src/prefect/agent.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,9
104
+ PrefectHQ/prefect,src/prefect/analytics/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,67
105
+ PrefectHQ/prefect,src/prefect/artifacts.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,795
106
+ PrefectHQ/prefect,src/prefect/assets/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,4
107
+ PrefectHQ/prefect,src/prefect/assets/core.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
108
+ PrefectHQ/prefect,src/prefect/assets/materialize.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,42
109
+ PrefectHQ/prefect,src/prefect/automations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,427
110
+ PrefectHQ/prefect,src/prefect/blocks/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,7
111
+ PrefectHQ/prefect,src/prefect/blocks/abstract.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,534
112
+ PrefectHQ/prefect,src/prefect/blocks/core.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,2121
113
+ PrefectHQ/prefect,src/prefect/blocks/fields.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,3
114
+ PrefectHQ/prefect,src/prefect/blocks/notifications.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1136
115
+ PrefectHQ/prefect,src/prefect/blocks/redis.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,229
116
+ PrefectHQ/prefect,src/prefect/blocks/system.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
117
+ PrefectHQ/prefect,src/prefect/blocks/webhook.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,97
118
+ PrefectHQ/prefect,src/prefect/bundles/__init__.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,908
119
+ PrefectHQ/prefect,src/prefect/bundles/execute.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,53
120
+ PrefectHQ/prefect,src/prefect/cache_policies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,412
121
+ PrefectHQ/prefect,src/prefect/cli/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,21
122
+ PrefectHQ/prefect,src/prefect/cli/_app.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,338
123
+ PrefectHQ/prefect,src/prefect/cli/_cloud_utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,431
124
+ PrefectHQ/prefect,src/prefect/cli/_prompts.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,886
125
+ PrefectHQ/prefect,src/prefect/cli/_server_utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,411
126
+ PrefectHQ/prefect,src/prefect/cli/_transfer_utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,121
127
+ PrefectHQ/prefect,src/prefect/cli/_utilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,106
128
+ PrefectHQ/prefect,src/prefect/cli/_worker_utils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,133
129
+ PrefectHQ/prefect,src/prefect/cli/api.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,266
130
+ PrefectHQ/prefect,src/prefect/cli/artifact.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,222
131
+ PrefectHQ/prefect,src/prefect/cli/automation.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,547
132
+ PrefectHQ/prefect,src/prefect/cli/block.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,612
133
+ PrefectHQ/prefect,src/prefect/cli/cloud/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,449
134
+ PrefectHQ/prefect,src/prefect/cli/cloud/asset.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,149
135
+ PrefectHQ/prefect,src/prefect/cli/cloud/ip_allowlist.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,308
136
+ PrefectHQ/prefect,src/prefect/cli/cloud/webhook.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,253
137
+ PrefectHQ/prefect,src/prefect/cli/concurrency_limit.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,229
138
+ PrefectHQ/prefect,src/prefect/cli/config.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,362
139
+ PrefectHQ/prefect,src/prefect/cli/dashboard.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,39
140
+ PrefectHQ/prefect,src/prefect/cli/deploy/_actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,294
141
+ PrefectHQ/prefect,src/prefect/cli/deploy/_commands.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,490
142
+ PrefectHQ/prefect,src/prefect/cli/deploy/_config.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,550
143
+ PrefectHQ/prefect,src/prefect/cli/deploy/_core.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,532
144
+ PrefectHQ/prefect,src/prefect/cli/deploy/_models.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,145
145
+ PrefectHQ/prefect,src/prefect/cli/deploy/_schedules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,94
146
+ PrefectHQ/prefect,src/prefect/cli/deploy/_sla.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,62
147
+ PrefectHQ/prefect,src/prefect/cli/deploy/_triggers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,68
148
+ PrefectHQ/prefect,src/prefect/cli/deployment.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1149
149
+ PrefectHQ/prefect,src/prefect/cli/dev.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,497
150
+ PrefectHQ/prefect,src/prefect/cli/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,205
151
+ PrefectHQ/prefect,src/prefect/cli/experimental.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,42
152
+ PrefectHQ/prefect,src/prefect/cli/flow.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,247
153
+ PrefectHQ/prefect,src/prefect/cli/flow_run.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,749
154
+ PrefectHQ/prefect,src/prefect/cli/flow_runs_watching.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,191
155
+ PrefectHQ/prefect,src/prefect/cli/global_concurrency_limit.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,383
156
+ PrefectHQ/prefect,src/prefect/cli/plugins.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,135
157
+ PrefectHQ/prefect,src/prefect/cli/profile.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,468
158
+ PrefectHQ/prefect,src/prefect/cli/result_storage.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,172
159
+ PrefectHQ/prefect,src/prefect/cli/sdk.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,148
160
+ PrefectHQ/prefect,src/prefect/cli/server.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,736
161
+ PrefectHQ/prefect,src/prefect/cli/shell.py,unknown,1,0,0,,0,0,0,0,0,0,1,1,245
162
+ PrefectHQ/prefect,src/prefect/cli/task.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,123
163
+ PrefectHQ/prefect,src/prefect/cli/task_run.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,358
164
+ PrefectHQ/prefect,src/prefect/cli/transfer/_commands.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,248
165
+ PrefectHQ/prefect,src/prefect/cli/transfer/_dag.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,357
166
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/__init__.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,135
167
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/automations.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,257
168
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,75
169
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,396
170
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/concurrency_limits.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,88
171
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/deployments.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,222
172
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/flows.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,77
173
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
174
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/work_pools.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,141
175
+ PrefectHQ/prefect,src/prefect/cli/transfer/_migratable_resources/work_queues.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,112
176
+ PrefectHQ/prefect,src/prefect/cli/variable.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,212
177
+ PrefectHQ/prefect,src/prefect/cli/version.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,116
178
+ PrefectHQ/prefect,src/prefect/cli/work_pool.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1707
179
+ PrefectHQ/prefect,src/prefect/cli/work_queue.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,848
180
+ PrefectHQ/prefect,src/prefect/cli/worker.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,238
181
+ PrefectHQ/prefect,src/prefect/client/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,23
182
+ PrefectHQ/prefect,src/prefect/client/attribution.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
183
+ PrefectHQ/prefect,src/prefect/client/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,747
184
+ PrefectHQ/prefect,src/prefect/client/cloud.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,238
185
+ PrefectHQ/prefect,src/prefect/client/collections.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,31
186
+ PrefectHQ/prefect,src/prefect/client/orchestration/__init__.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,2114
187
+ PrefectHQ/prefect,src/prefect/client/orchestration/_artifacts/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,314
188
+ PrefectHQ/prefect,src/prefect/client/orchestration/_automations/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,333
189
+ PrefectHQ/prefect,src/prefect/client/orchestration/_blocks_documents/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,334
190
+ PrefectHQ/prefect,src/prefect/client/orchestration/_blocks_schemas/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,200
191
+ PrefectHQ/prefect,src/prefect/client/orchestration/_blocks_types/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,380
192
+ PrefectHQ/prefect,src/prefect/client/orchestration/_concurrency_limits/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,943
193
+ PrefectHQ/prefect,src/prefect/client/orchestration/_deployments/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1466
194
+ PrefectHQ/prefect,src/prefect/client/orchestration/_events/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,3
195
+ PrefectHQ/prefect,src/prefect/client/orchestration/_events/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,89
196
+ PrefectHQ/prefect,src/prefect/client/orchestration/_flow_runs/client.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1036
197
+ PrefectHQ/prefect,src/prefect/client/orchestration/_flows/client.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,345
198
+ PrefectHQ/prefect,src/prefect/client/orchestration/_logs/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,97
199
+ PrefectHQ/prefect,src/prefect/client/orchestration/_variables/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,173
200
+ PrefectHQ/prefect,src/prefect/client/orchestration/_work_pools/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,686
201
+ PrefectHQ/prefect,src/prefect/client/orchestration/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,53
202
+ PrefectHQ/prefect,src/prefect/client/schemas/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,943
203
+ PrefectHQ/prefect,src/prefect/client/schemas/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,47
204
+ PrefectHQ/prefect,src/prefect/client/schemas/filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1225
205
+ PrefectHQ/prefect,src/prefect/client/schemas/objects.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1835
206
+ PrefectHQ/prefect,src/prefect/client/schemas/responses.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,565
207
+ PrefectHQ/prefect,src/prefect/client/schemas/schedules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,386
208
+ PrefectHQ/prefect,src/prefect/client/schemas/sorting.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,100
209
+ PrefectHQ/prefect,src/prefect/client/schemas/worker_channel.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,590
210
+ PrefectHQ/prefect,src/prefect/client/subscriptions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,129
211
+ PrefectHQ/prefect,src/prefect/client/types/flexible_schedule_list.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,12
212
+ PrefectHQ/prefect,src/prefect/client/utilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,101
213
+ PrefectHQ/prefect,src/prefect/concurrency/_asyncio.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,254
214
+ PrefectHQ/prefect,src/prefect/concurrency/_events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,59
215
+ PrefectHQ/prefect,src/prefect/concurrency/_leases.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,238
216
+ PrefectHQ/prefect,src/prefect/concurrency/_sync.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,170
217
+ PrefectHQ/prefect,src/prefect/concurrency/asyncio.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,122
218
+ PrefectHQ/prefect,src/prefect/concurrency/context.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,25
219
+ PrefectHQ/prefect,src/prefect/concurrency/services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,218
220
+ PrefectHQ/prefect,src/prefect/concurrency/sync.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,117
221
+ PrefectHQ/prefect,src/prefect/concurrency/v1/_asyncio.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,152
222
+ PrefectHQ/prefect,src/prefect/concurrency/v1/_events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,59
223
+ PrefectHQ/prefect,src/prefect/concurrency/v1/asyncio.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,93
224
+ PrefectHQ/prefect,src/prefect/concurrency/v1/context.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,29
225
+ PrefectHQ/prefect,src/prefect/concurrency/v1/services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
226
+ PrefectHQ/prefect,src/prefect/concurrency/v1/sync.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,72
227
+ PrefectHQ/prefect,src/prefect/context.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1085
228
+ PrefectHQ/prefect,src/prefect/deployments/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
229
+ PrefectHQ/prefect,src/prefect/deployments/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,354
230
+ PrefectHQ/prefect,src/prefect/deployments/deployments.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,5
231
+ PrefectHQ/prefect,src/prefect/deployments/flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,443
232
+ PrefectHQ/prefect,src/prefect/deployments/recipes/azure/prefect.yaml,,,,,,,,,,,,,,37
233
+ PrefectHQ/prefect,src/prefect/deployments/recipes/docker-azure/prefect.yaml,,,,,,,,,,,,,,56
234
+ PrefectHQ/prefect,src/prefect/deployments/recipes/docker-gcs/prefect.yaml,,,,,,,,,,,,,,55
235
+ PrefectHQ/prefect,src/prefect/deployments/recipes/docker-git/prefect.yaml,,,,,,,,,,,,,,48
236
+ PrefectHQ/prefect,src/prefect/deployments/recipes/docker-s3/prefect.yaml,,,,,,,,,,,,,,55
237
+ PrefectHQ/prefect,src/prefect/deployments/recipes/docker/prefect.yaml,,,,,,,,,,,,,,47
238
+ PrefectHQ/prefect,src/prefect/deployments/recipes/gcs/prefect.yaml,,,,,,,,,,,,,,37
239
+ PrefectHQ/prefect,src/prefect/deployments/recipes/git/prefect.yaml,,,,,,,,,,,,,,26
240
+ PrefectHQ/prefect,src/prefect/deployments/recipes/local/prefect.yaml,,,,,,,,,,,,,,24
241
+ PrefectHQ/prefect,src/prefect/deployments/recipes/s3/prefect.yaml,,,,,,,,,,,,,,37
242
+ PrefectHQ/prefect,src/prefect/deployments/runner.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1900
243
+ PrefectHQ/prefect,src/prefect/deployments/schedules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,63
244
+ PrefectHQ/prefect,src/prefect/deployments/steps/core.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,348
245
+ PrefectHQ/prefect,src/prefect/deployments/steps/pull.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,305
246
+ PrefectHQ/prefect,src/prefect/deployments/steps/utility.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,338
247
+ PrefectHQ/prefect,src/prefect/deployments/templates/prefect.yaml,,,,,,,,,,,,,,27
248
+ PrefectHQ/prefect,src/prefect/docker/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,26
249
+ PrefectHQ/prefect,src/prefect/docker/_buildx.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,18
250
+ PrefectHQ/prefect,src/prefect/docker/docker_image.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,185
251
+ PrefectHQ/prefect,src/prefect/engine.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,184
252
+ PrefectHQ/prefect,src/prefect/events/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,316
253
+ PrefectHQ/prefect,src/prefect/events/clients.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,909
254
+ PrefectHQ/prefect,src/prefect/events/filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,289
255
+ PrefectHQ/prefect,src/prefect/events/related.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,230
256
+ PrefectHQ/prefect,src/prefect/events/schemas/automations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,510
257
+ PrefectHQ/prefect,src/prefect/events/schemas/deployment_triggers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,143
258
+ PrefectHQ/prefect,src/prefect/events/schemas/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,288
259
+ PrefectHQ/prefect,src/prefect/events/subscribers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,186
260
+ PrefectHQ/prefect,src/prefect/events/utilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,112
261
+ PrefectHQ/prefect,src/prefect/events/worker.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,165
262
+ PrefectHQ/prefect,src/prefect/exceptions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,470
263
+ PrefectHQ/prefect,src/prefect/filesystems.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,808
264
+ PrefectHQ/prefect,src/prefect/flow_engine.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,2333
265
+ PrefectHQ/prefect,src/prefect/flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,779
266
+ PrefectHQ/prefect,src/prefect/flows.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,3642
267
+ PrefectHQ/prefect,src/prefect/futures.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,856
268
+ PrefectHQ/prefect,src/prefect/infrastructure/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,9
269
+ PrefectHQ/prefect,src/prefect/infrastructure/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,9
270
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,73
271
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/cloud_run.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,444
272
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/coiled.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,246
273
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/container_instance.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1082
274
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/ecs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1358
275
+ PrefectHQ/prefect,src/prefect/infrastructure/provisioners/modal.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,250
276
+ PrefectHQ/prefect,src/prefect/input/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,295
277
+ PrefectHQ/prefect,src/prefect/input/run_input.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,907
278
+ PrefectHQ/prefect,src/prefect/locking/filesystem.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,246
279
+ PrefectHQ/prefect,src/prefect/locking/memory.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,274
280
+ PrefectHQ/prefect,src/prefect/logging/clients.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,351
281
+ PrefectHQ/prefect,src/prefect/logging/configuration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,138
282
+ PrefectHQ/prefect,src/prefect/logging/filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,41
283
+ PrefectHQ/prefect,src/prefect/logging/formatters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,156
284
+ PrefectHQ/prefect,src/prefect/logging/handlers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,395
285
+ PrefectHQ/prefect,src/prefect/logging/highlighters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,63
286
+ PrefectHQ/prefect,src/prefect/logging/loggers.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,465
287
+ PrefectHQ/prefect,src/prefect/main.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,87
288
+ PrefectHQ/prefect,src/prefect/plugins.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
289
+ PrefectHQ/prefect,src/prefect/results.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1367
290
+ PrefectHQ/prefect,src/prefect/runner/_cancel_finalizer.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,111
291
+ PrefectHQ/prefect,src/prefect/runner/_cancellation_manager.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,231
292
+ PrefectHQ/prefect,src/prefect/runner/_control_channel.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,388
293
+ PrefectHQ/prefect,src/prefect/runner/_deployment_registry.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,84
294
+ PrefectHQ/prefect,src/prefect/runner/_event_emitter.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,185
295
+ PrefectHQ/prefect,src/prefect/runner/_flow_resolver.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,64
296
+ PrefectHQ/prefect,src/prefect/runner/_flow_run_executor.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,352
297
+ PrefectHQ/prefect,src/prefect/runner/_hook_runner.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,94
298
+ PrefectHQ/prefect,src/prefect/runner/_limit_manager.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,103
299
+ PrefectHQ/prefect,src/prefect/runner/_process_manager.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,233
300
+ PrefectHQ/prefect,src/prefect/runner/_scheduled_run_poller.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,244
301
+ PrefectHQ/prefect,src/prefect/runner/_starter_bundle.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,75
302
+ PrefectHQ/prefect,src/prefect/runner/_starter_direct.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,76
303
+ PrefectHQ/prefect,src/prefect/runner/_starter_engine.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,170
304
+ PrefectHQ/prefect,src/prefect/runner/_state_proposer.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,201
305
+ PrefectHQ/prefect,src/prefect/runner/_workspace_resolver.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,360
306
+ PrefectHQ/prefect,src/prefect/runner/_workspace_starter.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,292
307
+ PrefectHQ/prefect,src/prefect/runner/runner.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1873
308
+ PrefectHQ/prefect,src/prefect/runner/server.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,120
309
+ PrefectHQ/prefect,src/prefect/runner/storage.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1118
310
+ PrefectHQ/prefect,src/prefect/runtime/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,14
311
+ PrefectHQ/prefect,src/prefect/runtime/deployment.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,181
312
+ PrefectHQ/prefect,src/prefect/runtime/flow_run.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,353
313
+ PrefectHQ/prefect,src/prefect/runtime/task_run.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,160
314
+ PrefectHQ/prefect,src/prefect/schedules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,231
315
+ PrefectHQ/prefect,src/prefect/serializers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,342
316
+ PrefectHQ/prefect,src/prefect/server/api/admin.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,85
317
+ PrefectHQ/prefect,src/prefect/server/api/artifacts.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,229
318
+ PrefectHQ/prefect,src/prefect/server/api/automations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,245
319
+ PrefectHQ/prefect,src/prefect/server/api/background_workers.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,85
320
+ PrefectHQ/prefect,src/prefect/server/api/block_capabilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,30
321
+ PrefectHQ/prefect,src/prefect/server/api/block_documents.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,172
322
+ PrefectHQ/prefect,src/prefect/server/api/block_schemas.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,158
323
+ PrefectHQ/prefect,src/prefect/server/api/block_types.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,213
324
+ PrefectHQ/prefect,src/prefect/server/api/clients.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,250
325
+ PrefectHQ/prefect,src/prefect/server/api/collections.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,75
326
+ PrefectHQ/prefect,src/prefect/server/api/concurrency_limits.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,652
327
+ PrefectHQ/prefect,src/prefect/server/api/concurrency_limits_v2.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,483
328
+ PrefectHQ/prefect,src/prefect/server/api/csrf_token.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,39
329
+ PrefectHQ/prefect,src/prefect/server/api/dependencies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,205
330
+ PrefectHQ/prefect,src/prefect/server/api/deployments.py,2.x,0,0,0,,0,0,0,0,0,1,1,1,1359
331
+ PrefectHQ/prefect,src/prefect/server/api/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,306
332
+ PrefectHQ/prefect,src/prefect/server/api/flow_run_states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,54
333
+ PrefectHQ/prefect,src/prefect/server/api/flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1076
334
+ PrefectHQ/prefect,src/prefect/server/api/flows.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,260
335
+ PrefectHQ/prefect,src/prefect/server/api/logs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,102
336
+ PrefectHQ/prefect,src/prefect/server/api/middleware.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
337
+ PrefectHQ/prefect,src/prefect/server/api/root.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,52
338
+ PrefectHQ/prefect,src/prefect/server/api/run_history.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,170
339
+ PrefectHQ/prefect,src/prefect/server/api/saved_searches.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,99
340
+ PrefectHQ/prefect,src/prefect/server/api/server.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1220
341
+ PrefectHQ/prefect,src/prefect/server/api/task_run_states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,54
342
+ PrefectHQ/prefect,src/prefect/server/api/task_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,420
343
+ PrefectHQ/prefect,src/prefect/server/api/task_workers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,35
344
+ PrefectHQ/prefect,src/prefect/server/api/templates.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,41
345
+ PrefectHQ/prefect,src/prefect/server/api/ui/flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,128
346
+ PrefectHQ/prefect,src/prefect/server/api/ui/flows.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,178
347
+ PrefectHQ/prefect,src/prefect/server/api/ui/schemas.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,65
348
+ PrefectHQ/prefect,src/prefect/server/api/ui/task_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,196
349
+ PrefectHQ/prefect,src/prefect/server/api/validation.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,383
350
+ PrefectHQ/prefect,src/prefect/server/api/variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,186
351
+ PrefectHQ/prefect,src/prefect/server/api/work_queues.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,348
352
+ PrefectHQ/prefect,src/prefect/server/api/workers.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1200
353
+ PrefectHQ/prefect,src/prefect/server/concurrency/lease_storage/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,93
354
+ PrefectHQ/prefect,src/prefect/server/concurrency/lease_storage/filesystem.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,324
355
+ PrefectHQ/prefect,src/prefect/server/concurrency/lease_storage/memory.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,119
356
+ PrefectHQ/prefect,src/prefect/server/database/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,14
357
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/env.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,201
358
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2021_01_20_122127_25f4b90a7a42_initial_migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,899
359
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_02_13_125213_5f376def75c3_block_data.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,65
360
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_02_13_125213_679e695af6ba_add_configurations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,66
361
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_02_17_140821_5bff7878e700_add_agents_and_work_queue.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,109
362
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_02_20_103844_4799f657a6a1_add_block_spec_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,89
363
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_02_21_150017_b68b3cad6b8a_add_block_spec_id_to_blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
364
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_05_10_145956_1c9390e2f9c6_replace_version_with_checksum_and_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,196
365
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_05_12_202952_dc7a3c6fd3e9_add_flow_run_alerts.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,140
366
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_05_26_135743_724e6dcc6b5d_add_block_schema_capabilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
367
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_05_28_081821_2fe6fe6ca16e_adds_block_schema_references_and_block_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,194
368
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_07_11_170700_112c68143fc3_add_infrastructure_document_id_to_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,68
369
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_07_25_214717_4ff2f2bf81f4_adds_block_type_slug.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,80
370
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_07_25_233637_add97ce1937d_update_deployments_to_include_more_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
371
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_08_06_145817_60e428f92a75_expand_deployment_schema_for_improved_ux.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,51
372
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_10_12_102048_22b7cb02e593_add_state_timestamp.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,88
373
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_10_19_093902_6d548701edef_add_created_by.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,61
374
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_10_20_101423_3ced59d8806b_add_last_polled.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
375
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2022_11_24_143620_f7587d6c5776_add_worker_tables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,246
376
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_01_08_180142_d481d5058a19_rename_worker_pools_to_work_pools.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,462
377
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_01_26_045500_2882cd2df463_implement_artifact_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,173
378
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_01_26_045502_2882cd2df466_cleanup_artifact_migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
379
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_01_26_152801_0a1250a5aa25_expand_work_queue_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,194
380
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_01_31_133052_2a88656f4a23_clean_up_work_queue_migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,91
381
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_03_20_185238_d20618ce678e_add_artifact_collection_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,58
382
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_04_04_172310_6a1eb3d442e4_add_cols_to_artifact_collection.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,78
383
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_04_05_130406_43c94d4c7aa3_add_pull_steps_column_to_deployment.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,33
384
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_04_05_134520_310dda75f561_add_variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,58
385
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_08_02_133838_5f623ddbf7fe_create_concurrency_limit_v2_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
386
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_10_12_224511_bfe653bbf62e_add_last_polled_to_deployment.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
387
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2023_12_07_095320_733ca1903976_create_flow_run_input_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
388
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_01_22_120615_8cf4d4933848_create_deployment_schedule_and_add_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,110
389
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_03_13_111215_7a653837d9ba_create_csrf_token_toble.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,59
390
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_04_03_112409_aeea5ee6f070_automations_models.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,313
391
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_04_09_125658_916718e8330f_automation_event_follower.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,103
392
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_04_09_132036_954db7517015_trigger_in_index.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,67
393
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_04_10_194742_15768c2ec702_add_events_and_event_resources_tables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,174
394
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_04_25_155240_8905262ec07f_worker_status_field.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,44
395
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_05_21_101457_94622c1663e8_json_variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,59
396
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_09_11_090317_555ed31b284d_add_concurrency_options.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
397
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_09_16_152051_eaec5004771f_add_deployment_to_global_concurrency_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,63
398
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2024_11_15_150706_68a44144428d_add_labels_column_to_flow_flowrun_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,59
399
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_02_03_125146_c163acd7e8e3_add_parameters_column_to_deployment_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
400
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_03_19_143502_b5f5644500d2_add_storage_configuration_to_work_pool.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,36
401
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_03_19_145033_06b7c293bc69_create_new_deployment_version_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,172
402
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_04_29_112902_4160a4841eed_remove_flow_run_notifications.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,221
403
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_06_12_144500_add_automation_tags_aa1234567890.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
404
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/postgresql/2025_09_17_091213_9e83011d1f2a_migrate_v1_concurrency_limits_to_v2.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,188
405
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_01_20_115236_9725c1cbee35_initial_migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,924
406
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_02_04_093838_619bea85701a_block_data.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,72
407
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_02_15_211737_28ae48128c75_add_configurations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,73
408
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_02_17_151416_7c91cb86dc4e_add_agents_and_work_queues.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,123
409
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_02_20_103610_e1ff4973a9eb_add_block_spec_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,97
410
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_02_21_145916_c8ff35f94028_add_block_spec_id_to_blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,72
411
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_04_25_135207_b75d279ba985_replace_version_with_checksum.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,211
412
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_05_12_203158_888a0bb0df7b_add_flow_run_alerts.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,154
413
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_05_19_165808_33439667aeea_add_block_schema_capabilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,93
414
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_05_28_081650_e73c6f1fe752_adds_block_schema_referecnes_and_block_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,207
415
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_07_11_113314_638cbcc2a158_add_infrastructure_block_id_to_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,72
416
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_07_25_142515_f335f9633eec_adds_block_type_slug.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,87
417
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_07_25_151028_88c2112b668f_update_deployments_to_include_more_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
418
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_08_06_130009_296e2665785f_expand_deployment_schema_for_improved_ux.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,51
419
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_10_12_102048_22b7cb02e593_add_state_timestamp.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,82
420
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_10_19_093542_fa319f214160_add_created_by.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,66
421
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_10_20_101423_3ced59d8806b_add_last_polled.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
422
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2022_11_24_143302_fe77ad0dda06_add_worker_tables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,284
423
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_01_08_175327_bb38729c471a_rename_worker_pools_to_work_pools.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,528
424
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_01_12_000042_f92143d30c24_implement_artifact_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,185
425
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_01_12_000044_f92143d30c27_cleanup_artifact_migration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,83
426
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_01_25_114348_b9bda9f142f1_expand_work_queue_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,194
427
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_03_20_184534_b9aafc3ab936_add_artifact_collection_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
428
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_04_04_172555_3e1eb8281d5e_add_cols_to_artifact_collection.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,54
429
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_04_05_134301_3d46e23593d6_add_variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,78
430
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_08_02_113813_5b0bd3b41a23_create_concurrency_limit_v2_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
431
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_10_12_175815_f3165ae0a213_add_last_polled_to_deployment.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,42
432
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2023_12_07_095112_a299308852a7_create_flow_run_input_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
433
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_01_22_120214_265eb1a2da4c_create_deployment_schedule_and_add_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,122
434
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_03_05_115258_342220764f0b_add_job_variables_column_to_flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,35
435
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_03_13_111316_bacc60edce16_create_csrf_token_toble.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
436
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_04_03_111618_07ed05dfd4ec_automations_models.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,310
437
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_04_09_125712_cc510aec4689_automation_event_follower.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,94
438
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_04_09_131832_2b6c2b548f95_trigger_in_index.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,62
439
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_04_10_104304_824e9edafa60_adds_events_tables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,172
440
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_04_25_155120_a8e62d4c72cf_worker_status_field.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,47
441
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_05_21_123101_2ac65f1758c2_json_variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,61
442
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_09_11_090106_7d6350aea855_add_concurrency_options.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,35
443
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_09_16_162719_4ad4658cbefe_add_deployment_to_global_concurrency_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,63
444
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2024_11_15_151042_5952a5498b51_add_labels_column_to_flow_flowrun_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,70
445
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_02_03_125228_67f886da208e_add_parameters_column_to_deployment_.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
446
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_03_19_142603_3457c6ca2360_add_storage_configuration_to_work_pool.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,37
447
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_03_19_145018_bbca16f6f218_create_new_deployment_version_table.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,172
448
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_04_28_133722_7655f31c5157_remove_flow_run_notifications.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,234
449
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_06_12_144500_add_automation_tags_bb2345678901.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,34
450
+ PrefectHQ/prefect,src/prefect/server/database/_migrations/versions/sqlite/2025_09_17_091213_9e83011d1f2a_migrate_v1_concurrency_limits_to_v2.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,188
451
+ PrefectHQ/prefect,src/prefect/server/database/alembic_commands.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,120
452
+ PrefectHQ/prefect,src/prefect/server/database/configurations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,623
453
+ PrefectHQ/prefect,src/prefect/server/database/dependencies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,481
454
+ PrefectHQ/prefect,src/prefect/server/database/interface.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,349
455
+ PrefectHQ/prefect,src/prefect/server/database/orm_models.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1624
456
+ PrefectHQ/prefect,src/prefect/server/database/query_components.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1087
457
+ PrefectHQ/prefect,src/prefect/server/events/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1919
458
+ PrefectHQ/prefect,src/prefect/server/events/clients.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,277
459
+ PrefectHQ/prefect,src/prefect/server/events/counting.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,305
460
+ PrefectHQ/prefect,src/prefect/server/events/filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,785
461
+ PrefectHQ/prefect,src/prefect/server/events/jinja_filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,87
462
+ PrefectHQ/prefect,src/prefect/server/events/messaging.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,84
463
+ PrefectHQ/prefect,src/prefect/server/events/models/automations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,438
464
+ PrefectHQ/prefect,src/prefect/server/events/models/composite_trigger_child_firing.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,157
465
+ PrefectHQ/prefect,src/prefect/server/events/ordering/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,99
466
+ PrefectHQ/prefect,src/prefect/server/events/ordering/db.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,183
467
+ PrefectHQ/prefect,src/prefect/server/events/ordering/memory.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,314
468
+ PrefectHQ/prefect,src/prefect/server/events/pipeline.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,38
469
+ PrefectHQ/prefect,src/prefect/server/events/schemas/automations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,818
470
+ PrefectHQ/prefect,src/prefect/server/events/schemas/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,366
471
+ PrefectHQ/prefect,src/prefect/server/events/services/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,56
472
+ PrefectHQ/prefect,src/prefect/server/events/services/event_logger.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,76
473
+ PrefectHQ/prefect,src/prefect/server/events/services/event_persister.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,218
474
+ PrefectHQ/prefect,src/prefect/server/events/services/triggers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,81
475
+ PrefectHQ/prefect,src/prefect/server/events/storage/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,99
476
+ PrefectHQ/prefect,src/prefect/server/events/storage/database.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,328
477
+ PrefectHQ/prefect,src/prefect/server/events/stream.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,179
478
+ PrefectHQ/prefect,src/prefect/server/events/triggers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1386
479
+ PrefectHQ/prefect,src/prefect/server/exceptions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,25
480
+ PrefectHQ/prefect,src/prefect/server/logs/messaging.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,51
481
+ PrefectHQ/prefect,src/prefect/server/logs/stream.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,267
482
+ PrefectHQ/prefect,src/prefect/server/models/artifacts.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,534
483
+ PrefectHQ/prefect,src/prefect/server/models/block_documents.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,737
484
+ PrefectHQ/prefect,src/prefect/server/models/block_registration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,221
485
+ PrefectHQ/prefect,src/prefect/server/models/block_schemas.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,901
486
+ PrefectHQ/prefect,src/prefect/server/models/block_types.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,235
487
+ PrefectHQ/prefect,src/prefect/server/models/concurrency_limits.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,196
488
+ PrefectHQ/prefect,src/prefect/server/models/concurrency_limits_v2.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,306
489
+ PrefectHQ/prefect,src/prefect/server/models/configuration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,58
490
+ PrefectHQ/prefect,src/prefect/server/models/csrf_token.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,105
491
+ PrefectHQ/prefect,src/prefect/server/models/deployments.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1535
492
+ PrefectHQ/prefect,src/prefect/server/models/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,573
493
+ PrefectHQ/prefect,src/prefect/server/models/flow_run_input.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,91
494
+ PrefectHQ/prefect,src/prefect/server/models/flow_run_states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,79
495
+ PrefectHQ/prefect,src/prefect/server/models/flow_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,772
496
+ PrefectHQ/prefect,src/prefect/server/models/flows.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,340
497
+ PrefectHQ/prefect,src/prefect/server/models/logs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,130
498
+ PrefectHQ/prefect,src/prefect/server/models/saved_searches.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,146
499
+ PrefectHQ/prefect,src/prefect/server/models/storage_defaults.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,107
500
+ PrefectHQ/prefect,src/prefect/server/models/task_run_states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,74
501
+ PrefectHQ/prefect,src/prefect/server/models/task_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,588
502
+ PrefectHQ/prefect,src/prefect/server/models/task_workers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,106
503
+ PrefectHQ/prefect,src/prefect/server/models/variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,168
504
+ PrefectHQ/prefect,src/prefect/server/models/work_queues.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,823
505
+ PrefectHQ/prefect,src/prefect/server/models/workers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1347
506
+ PrefectHQ/prefect,src/prefect/server/orchestration/core_policy.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,2045
507
+ PrefectHQ/prefect,src/prefect/server/orchestration/dependencies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,162
508
+ PrefectHQ/prefect,src/prefect/server/orchestration/global_policy.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,467
509
+ PrefectHQ/prefect,src/prefect/server/orchestration/instrumentation_policies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,67
510
+ PrefectHQ/prefect,src/prefect/server/orchestration/policies.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,86
511
+ PrefectHQ/prefect,src/prefect/server/orchestration/rules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1112
512
+ PrefectHQ/prefect,src/prefect/server/schemas/actions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1107
513
+ PrefectHQ/prefect,src/prefect/server/schemas/core.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1340
514
+ PrefectHQ/prefect,src/prefect/server/schemas/filters.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,2565
515
+ PrefectHQ/prefect,src/prefect/server/schemas/graph.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,48
516
+ PrefectHQ/prefect,src/prefect/server/schemas/internal.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,12
517
+ PrefectHQ/prefect,src/prefect/server/schemas/responses.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,806
518
+ PrefectHQ/prefect,src/prefect/server/schemas/schedules.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,753
519
+ PrefectHQ/prefect,src/prefect/server/schemas/sorting.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,241
520
+ PrefectHQ/prefect,src/prefect/server/schemas/states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,527
521
+ PrefectHQ/prefect,src/prefect/server/schemas/statuses.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,40
522
+ PrefectHQ/prefect,src/prefect/server/schemas/ui.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,41
523
+ PrefectHQ/prefect,src/prefect/server/services/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,8
524
+ PrefectHQ/prefect,src/prefect/server/services/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,141
525
+ PrefectHQ/prefect,src/prefect/server/services/cancellation_cleanup.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,181
526
+ PrefectHQ/prefect,src/prefect/server/services/db_vacuum.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,391
527
+ PrefectHQ/prefect,src/prefect/server/services/foreman.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,215
528
+ PrefectHQ/prefect,src/prefect/server/services/late_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,85
529
+ PrefectHQ/prefect,src/prefect/server/services/pause_expirations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,85
530
+ PrefectHQ/prefect,src/prefect/server/services/perpetual_services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,170
531
+ PrefectHQ/prefect,src/prefect/server/services/repossessor.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,80
532
+ PrefectHQ/prefect,src/prefect/server/services/scheduler.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,353
533
+ PrefectHQ/prefect,src/prefect/server/services/task_run_recorder.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,587
534
+ PrefectHQ/prefect,src/prefect/server/services/telemetry.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,114
535
+ PrefectHQ/prefect,src/prefect/server/task_queue.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,103
536
+ PrefectHQ/prefect,src/prefect/server/utilities/database.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,769
537
+ PrefectHQ/prefect,src/prefect/server/utilities/encryption.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,49
538
+ PrefectHQ/prefect,src/prefect/server/utilities/messaging/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,234
539
+ PrefectHQ/prefect,src/prefect/server/utilities/messaging/memory.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,392
540
+ PrefectHQ/prefect,src/prefect/server/utilities/names.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,5
541
+ PrefectHQ/prefect,src/prefect/server/utilities/postgres_listener.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,272
542
+ PrefectHQ/prefect,src/prefect/server/utilities/schemas/bases.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,239
543
+ PrefectHQ/prefect,src/prefect/server/utilities/subscriptions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,140
544
+ PrefectHQ/prefect,src/prefect/server/utilities/user_templates.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,198
545
+ PrefectHQ/prefect,src/prefect/server/utilities/worker_channel.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,336
546
+ PrefectHQ/prefect,src/prefect/settings/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
547
+ PrefectHQ/prefect,src/prefect/settings/base.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,275
548
+ PrefectHQ/prefect,src/prefect/settings/context.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,68
549
+ PrefectHQ/prefect,src/prefect/settings/legacy.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,167
550
+ PrefectHQ/prefect,src/prefect/settings/models/_defaults.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,151
551
+ PrefectHQ/prefect,src/prefect/settings/models/api.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,46
552
+ PrefectHQ/prefect,src/prefect/settings/models/cli.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,32
553
+ PrefectHQ/prefect,src/prefect/settings/models/client.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,114
554
+ PrefectHQ/prefect,src/prefect/settings/models/cloud.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,69
555
+ PrefectHQ/prefect,src/prefect/settings/models/deployments.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,38
556
+ PrefectHQ/prefect,src/prefect/settings/models/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,27
557
+ PrefectHQ/prefect,src/prefect/settings/models/experiments.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,88
558
+ PrefectHQ/prefect,src/prefect/settings/models/flows.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,48
559
+ PrefectHQ/prefect,src/prefect/settings/models/internal.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,21
560
+ PrefectHQ/prefect,src/prefect/settings/models/logging.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,147
561
+ PrefectHQ/prefect,src/prefect/settings/models/plugins.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,191
562
+ PrefectHQ/prefect,src/prefect/settings/models/results.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,49
563
+ PrefectHQ/prefect,src/prefect/settings/models/root.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,461
564
+ PrefectHQ/prefect,src/prefect/settings/models/runner.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,92
565
+ PrefectHQ/prefect,src/prefect/settings/models/server/api.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,151
566
+ PrefectHQ/prefect,src/prefect/settings/models/server/concurrency.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,30
567
+ PrefectHQ/prefect,src/prefect/settings/models/server/database.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,364
568
+ PrefectHQ/prefect,src/prefect/settings/models/server/deployments.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,26
569
+ PrefectHQ/prefect,src/prefect/settings/models/server/docket.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,26
570
+ PrefectHQ/prefect,src/prefect/settings/models/server/ephemeral.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,36
571
+ PrefectHQ/prefect,src/prefect/settings/models/server/events.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,156
572
+ PrefectHQ/prefect,src/prefect/settings/models/server/flow_run_graph.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,36
573
+ PrefectHQ/prefect,src/prefect/settings/models/server/logs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,28
574
+ PrefectHQ/prefect,src/prefect/settings/models/server/root.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,159
575
+ PrefectHQ/prefect,src/prefect/settings/models/server/services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,687
576
+ PrefectHQ/prefect,src/prefect/settings/models/server/tasks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,83
577
+ PrefectHQ/prefect,src/prefect/settings/models/server/ui.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,60
578
+ PrefectHQ/prefect,src/prefect/settings/models/tasks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,112
579
+ PrefectHQ/prefect,src/prefect/settings/models/telemetry.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,25
580
+ PrefectHQ/prefect,src/prefect/settings/models/testing.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,50
581
+ PrefectHQ/prefect,src/prefect/settings/models/worker.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,73
582
+ PrefectHQ/prefect,src/prefect/settings/profiles.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,417
583
+ PrefectHQ/prefect,src/prefect/settings/sources.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,381
584
+ PrefectHQ/prefect,src/prefect/states.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,950
585
+ PrefectHQ/prefect,src/prefect/task_engine.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,1913
586
+ PrefectHQ/prefect,src/prefect/task_runners.py,unknown,0,0,0,,0,0,0,0,1,0,1,1,1382
587
+ PrefectHQ/prefect,src/prefect/task_runs.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,269
588
+ PrefectHQ/prefect,src/prefect/task_worker.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,657
589
+ PrefectHQ/prefect,src/prefect/tasks.py,unknown,0,0,0,,0,0,0,0,1,0,1,1,2267
590
+ PrefectHQ/prefect,src/prefect/telemetry/run_telemetry.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,249
591
+ PrefectHQ/prefect,src/prefect/testing/cli.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,376
592
+ PrefectHQ/prefect,src/prefect/testing/docker.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,20
593
+ PrefectHQ/prefect,src/prefect/testing/fixtures.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,546
594
+ PrefectHQ/prefect,src/prefect/testing/standard_test_suites/blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,74
595
+ PrefectHQ/prefect,src/prefect/testing/utilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,332
596
+ PrefectHQ/prefect,src/prefect/transactions.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,763
597
+ PrefectHQ/prefect,src/prefect/utilities/annotations.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,193
598
+ PrefectHQ/prefect,src/prefect/utilities/asyncutils/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,567
599
+ PrefectHQ/prefect,src/prefect/utilities/callables/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,868
600
+ PrefectHQ/prefect,src/prefect/utilities/collections.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,753
601
+ PrefectHQ/prefect,src/prefect/utilities/context.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,49
602
+ PrefectHQ/prefect,src/prefect/utilities/dockerutils.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,690
603
+ PrefectHQ/prefect,src/prefect/utilities/engine/__init__.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,1059
604
+ PrefectHQ/prefect,src/prefect/utilities/filesystem/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,190
605
+ PrefectHQ/prefect,src/prefect/utilities/hashing.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,91
606
+ PrefectHQ/prefect,src/prefect/utilities/importtools.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,504
607
+ PrefectHQ/prefect,src/prefect/utilities/pydantic.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,393
608
+ PrefectHQ/prefect,src/prefect/utilities/schema_tools/hydration.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,327
609
+ PrefectHQ/prefect,src/prefect/utilities/schema_tools/validation.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,297
610
+ PrefectHQ/prefect,src/prefect/utilities/services.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,185
611
+ PrefectHQ/prefect,src/prefect/utilities/templating/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,547
612
+ PrefectHQ/prefect,src/prefect/utilities/timeout.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,49
613
+ PrefectHQ/prefect,src/prefect/utilities/urls.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,500
614
+ PrefectHQ/prefect,src/prefect/utilities/visualization.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,240
615
+ PrefectHQ/prefect,src/prefect/variables.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,312
616
+ PrefectHQ/prefect,src/prefect/workers/_cleanup.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,660
617
+ PrefectHQ/prefect,src/prefect/workers/_cleanup_handlers.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,142
618
+ PrefectHQ/prefect,src/prefect/workers/_worker_channel/__init__.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,27
619
+ PrefectHQ/prefect,src/prefect/workers/_worker_channel/_protocol.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,403
620
+ PrefectHQ/prefect,src/prefect/workers/_worker_channel/_state.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,187
621
+ PrefectHQ/prefect,src/prefect/workers/_worker_channel/_sync.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,380
622
+ PrefectHQ/prefect,src/prefect/workers/_worker_channel/_transport.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,250
623
+ PrefectHQ/prefect,src/prefect/workers/base.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,2034
624
+ PrefectHQ/prefect,src/prefect/workers/block.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,9
625
+ PrefectHQ/prefect,src/prefect/workers/cloud.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,9
626
+ PrefectHQ/prefect,src/prefect/workers/process.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,345
627
+ PrefectHQ/prefect,src/prefect/workers/server.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,66
628
+ PrefectHQ/prefect,src/prefect/workers/utilities.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,64
629
+ PrefectHQ/prefect,tests/cli/example-project/flows/hello.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,8
630
+ PrefectHQ/prefect,tests/public/flows/test_flow_calls.py,unknown,2,0,0,,0,0,0,0,0,0,1,1,39
631
+ PrefectHQ/prefect,tests/public/flows/test_flow_crashes.py,unknown,11,0,0,,0,1,0,0,0,0,1,0,297
632
+ PrefectHQ/prefect,tests/public/flows/test_flow_timeouts.py,unknown,12,0,0,,0,1,0,0,0,0,1,0,193
633
+ PrefectHQ/prefect,tests/public/flows/test_flow_with_mapped_tasks.py,2.x,1,2,0,,0,0,0,0,1,0,1,1,66
634
+ PrefectHQ/prefect,tests/public/flows/test_previously_awaited_methods.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,34
635
+ PrefectHQ/prefect,tests/test-projects/flows/hello.py,2.x,2,0,0,,0,0,0,0,0,0,1,1,13
636
+ PrefectHQ/prefect,tests/test-projects/flows/uses_block.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,14
637
+ VeraZab/nyc-stats,flows/pipeline.py,2.x,2,4,1,3,0,0,0,0,0,0,0,1,134
638
+ aivanzhang/panda_patrol,examples/prefect/titanic.py,2.x,1,2,1,3,0,0,0,0,1,0,0,1,95
639
+ anna-geller/dataflow-ops,flows/healthcheck.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,25
640
+ anna-geller/dataflow-ops,flows/hello.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,22
641
+ anna-geller/dataflow-ops,flows/parametrized.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,21
642
+ anna-geller/dataflow-ops-aws-eks,flows/healthcheck.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,25
643
+ anna-geller/dataflow-ops-aws-eks,flows/hello.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,23
644
+ anna-geller/dataflow-ops-aws-eks,flows/parametrized.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,18
645
+ anna-geller/prefect-dataplatform,flows/analytics/dashboards.py,2.x,1,5,0,,0,0,0,0,0,0,1,1,54
646
+ anna-geller/prefect-dataplatform,flows/ingestion/ingest_jaffle_shop.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,91
647
+ anna-geller/prefect-dataplatform,flows/ingestion/ingest_jaffle_shop_randomly_failing.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,94
648
+ anna-geller/prefect-dataplatform,flows/ingestion/ingest_marketing_data.py,2.x,3,4,1,3,0,0,0,0,0,0,0,1,112
649
+ anna-geller/prefect-dataplatform,flows/ingestion/ingest_postgres.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,25
650
+ anna-geller/prefect-dataplatform,flows/ml/sales_forecast.py,2.x,1,2,0,,0,0,0,0,0,0,1,1,24
651
+ anna-geller/prefect-dataplatform,flows/orchestration/attribution/ingest_transform.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,20
652
+ anna-geller/prefect-dataplatform,flows/orchestration/jaffle_shop/ingest_transform.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,23
653
+ anna-geller/prefect-dataplatform,flows/orchestration/maintenance.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,16
654
+ anna-geller/prefect-dataplatform,flows/orchestration/run_deployments/attribution.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,23
655
+ anna-geller/prefect-dataplatform,flows/orchestration/run_deployments/parent.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,32
656
+ anna-geller/prefect-dataplatform,flows/syncs_fivetran/block.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,11
657
+ anna-geller/prefect-dataplatform,flows/syncs_fivetran/fivetran.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,16
658
+ anna-geller/prefect-dataplatform,flows/syncs_fivetran/fivetran_wait.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,31
659
+ anna-geller/prefect-dataplatform,flows/transformation/attribution/dbt_build.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,24
660
+ anna-geller/prefect-dataplatform,flows/transformation/attribution/dbt_repo.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,29
661
+ anna-geller/prefect-dataplatform,flows/transformation/attribution/dbt_run_from_manifest.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,14
662
+ anna-geller/prefect-dataplatform,flows/transformation/dbt_cloud.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,14
663
+ anna-geller/prefect-dataplatform,flows/transformation/jaffle_shop/dbt_build.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,24
664
+ anna-geller/prefect-dataplatform,flows/transformation/jaffle_shop/dbt_repo.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,27
665
+ anna-geller/prefect-dataplatform,flows/transformation/jaffle_shop/dbt_run_from_manifest.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,13
666
+ anna-geller/prefect-dataplatform,flows/zoomcamp/create_blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,12
667
+ anna-geller/prefect-dataplatform,flows/zoomcamp/ingestion_bigquery.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,38
668
+ anna-geller/prefect-dataplatform,flows/zoomcamp/ingestion_bigquery_taxi_data.py,2.x,2,3,0,,0,0,0,0,0,0,1,1,119
669
+ anna-geller/prefect-dataplatform,flows/zoomcamp/ingestion_postgres.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,18
670
+ anna-geller/prefect-dataplatform,flows/zoomcamp/ingestion_postgres_taxi_data.py,2.x,2,0,0,,0,0,0,0,0,0,1,1,45
671
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/data_warehouse_refresh.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,21
672
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/healthcheck.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,25
673
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/hello.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,19
674
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/ingestion.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,12
675
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/ml.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,9
676
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/parametrized.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,25
677
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/some/nested/module.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,7
678
+ anna-geller/prefect-deployment-patterns,__create_deployment/flows/transformation.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,9
679
+ anna-geller/prefect-getting-started,flows/healthcheck.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,26
680
+ anna-geller/prefect-getting-started,flows/hello_subflow.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,19
681
+ anna-geller/prefect-getting-started,flows/parametrized.py,2.x,1,1,0,,0,0,0,0,0,0,1,1,21
682
+ anovv/svoe,svoe/featurizer/features/pipelines_DEPRECATED/prefect/l2_deltas_to_snapshots.py,2.x,1,8,0,,0,0,0,0,1,0,1,1,146
683
+ apache/hamilton,examples/prefect/run.py,2.x,1,2,0,,0,0,0,0,0,0,1,1,146
684
+ fairtracks/omnipy,src/omnipy/components/prefect/engine/prefect.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,128
685
+ fairtracks/omnipy,src/omnipy/components/prefect/lazy_import.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,29
686
+ fairtracks/omnipy,tests/components/prefect/test_prefect.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,25
687
+ flavienbwk/Pandemic-Knowledge,flow/scripts/crawl_google_news.py,1.x,1,0,0,,1,0,0,0,0,0,1,1,155
688
+ flavienbwk/Pandemic-Knowledge,flow/scripts/crawl_tweets.py,1.x,1,0,0,,1,0,0,0,0,0,1,1,133
689
+ flavienbwk/Pandemic-Knowledge,flow/scripts/insert_france.py,1.x,1,0,0,,1,0,0,0,0,0,1,1,270
690
+ flavienbwk/Pandemic-Knowledge,flow/scripts/insert_france_virtests.py,1.x,1,0,0,,1,0,0,0,0,0,1,1,266
691
+ flavienbwk/Pandemic-Knowledge,flow/scripts/insert_owid.py,1.x,1,0,0,,1,0,0,0,0,0,1,1,302
692
+ flavienbwk/Pandemic-Knowledge,flow/scripts/parse_insert.py,1.x,1,0,0,,0,0,0,0,0,0,1,1,263
693
+ froukje/de-zoomcamp,week_2_workflow_orchestration/homework/flows/etl_gcs_to_bq.py,2.x,2,3,1,3,0,0,0,0,0,0,0,1,53
694
+ froukje/de-zoomcamp,week_2_workflow_orchestration/homework/flows/etl_web_to_gcs.py,2.x,1,4,1,3,0,0,0,0,0,0,0,1,62
695
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/01_start/ingest_data_flow.py,2.x,2,3,1,3,0,0,1,0,0,0,0,1,81
696
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/01_start/parameterized_flow.py,2.x,2,4,1,3,0,0,1,0,0,0,0,1,67
697
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/02_gcp/etl_gcs_to_bq.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,48
698
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/02_gcp/etl_web_to_gcs.py,2.x,1,4,1,3,0,0,0,0,0,0,0,1,58
699
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/02_gcp/etl_web_to_gcs_github.py,2.x,1,4,1,3,0,0,0,0,0,0,0,1,58
700
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/03_deployments/docker_deploy.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,14
701
+ froukje/de-zoomcamp,week_2_workflow_orchestration/videos/flows/03_deployments/parameterized_flow.py,2.x,2,4,1,3,0,0,1,0,0,0,0,1,76
702
+ iobruno/data-engineering-labs,module2-workflow-orchestration/prefect/flows/sqlalchemy_ingest.py,2.x,1,4,1,3,0,0,0,0,0,0,0,1,107
703
+ iobruno/data-engineering-labs,module2-workflow-orchestration/prefect/flows/web_csv_to_gcs.py,2.x,1,4,1,3,0,0,0,0,0,0,0,1,110
704
+ kkuznets/crypto-sentiment-data-pipeline,prefect/flows/extract_load_data.py,2.x,3,3,1,3,0,0,0,0,0,0,0,1,375
705
+ kkuznets/crypto-sentiment-data-pipeline,prefect/flows/main.py,2.x,1,0,0,,0,0,0,0,0,0,1,1,57
706
+ kkuznets/crypto-sentiment-data-pipeline,prefect/flows/transform_data.py,2.x,2,2,1,3,0,0,0,0,0,0,0,1,136
707
+ lisallreiber/biketheft_berlin,flows/extract_web-to-gcs.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,69
708
+ lisallreiber/biketheft_berlin,flows/load_gcs-to-bq.py,2.x,1,3,1,3,0,0,0,0,0,0,0,1,100
709
+ lisallreiber/biketheft_berlin,flows/setup.py,2.x,1,2,0,,0,0,0,0,0,0,1,1,61
710
+ ozkary/data-engineering-mta-turnstile,Step3-Orchestration/flows/etl_web_to_gcs.py,2.x,2,5,0,,0,0,0,0,0,0,1,1,219
711
+ ozkary/data-engineering-mta-turnstile,Step3-Orchestration/flows/main_flow-deployment.yaml,,,,,,,,,,,,,,70
712
+ ozkary/data-engineering-mta-turnstile,Step3-Orchestration/flows/test_deployment.py,2.x,1,1,0,,0,0,0,0,0,1,1,1,42
713
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,flows/create_prefect_blocks.py,unknown,0,0,0,,0,0,0,0,0,0,1,1,119
714
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,flows/deploy_ingest.py,2.x,0,0,0,,0,0,0,0,0,0,1,1,29
715
+ sanyassyed/DataEngineering_SFO_Eviction_Data_ETL_Pipeline,flows/ingest.py,2.x,2,6,1,3,0,0,0,0,0,0,0,1,290
README.md ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: DEPosit
6
+
7
+ configs:
8
+ - config_name: repositories
9
+ data_files:
10
+ - split: train
11
+ path: Data/filtered_DE_repositories.csv
12
+
13
+ - config_name: commits
14
+ data_files:
15
+ - split: train
16
+ path: Data/DE_all_commits_details.csv
17
+
18
+ - config_name: pull_requests
19
+ data_files:
20
+ - split: train
21
+ path: Data/DE_all_pr_details.csv
22
+
23
+ - config_name: issues
24
+ data_files:
25
+ - split: train
26
+ path: Data/DE_all_issue_details.csv
27
+
28
+ - config_name: issue_closers
29
+ data_files:
30
+ - split: train
31
+ path: Data/DE_all_issue_closers.csv
32
+
33
+ - config_name: pr_reviews
34
+ data_files:
35
+ - split: train
36
+ path: Data/DE_all_pr_reviews_graphql.csv
37
+
38
+ - config_name: ci_services
39
+ data_files:
40
+ - split: train
41
+ path: Data/DE_ci_services.csv
42
+
43
+ - config_name: ci_file_commits
44
+ data_files:
45
+ - split: train
46
+ path: Data/DE_commits_per_ci_files.csv
47
+
48
+ - config_name: github_actions_runs
49
+ data_files:
50
+ - split: train
51
+ path: Data/DE_repo_gha_runs_counts.csv
52
+
53
+ - config_name: repo_interactions
54
+ data_files:
55
+ - split: train
56
+ path: Data/DE_repo_interactions.csv
57
+
58
+ - config_name: repo_metrics
59
+ data_files:
60
+ - split: train
61
+ path: Data/DE_repo_metrics.csv
62
+
63
+ - config_name: user_autonomy
64
+ data_files:
65
+ - split: train
66
+ path: Data/DE_user_autonomy.csv
67
+
68
+ - config_name: pipeline_airflow
69
+ data_files:
70
+ - split: train
71
+ path: Data/pipeline_artifacts/DE_pipeline_airflow_dag_features.csv
72
+
73
+ - config_name: pipeline_beam
74
+ data_files:
75
+ - split: train
76
+ path: Data/pipeline_artifacts/DE_pipeline_beam_pipeline_features.csv
77
+
78
+ - config_name: pipeline_dagster
79
+ data_files:
80
+ - split: train
81
+ path: Data/pipeline_artifacts/DE_pipeline_dagster_features.csv
82
+
83
+ - config_name: pipeline_dbt_model
84
+ data_files:
85
+ - split: train
86
+ path: Data/pipeline_artifacts/DE_pipeline_dbt_model_features.csv
87
+
88
+ - config_name: pipeline_dbt_project_summary
89
+ data_files:
90
+ - split: train
91
+ path: Data/pipeline_artifacts/DE_pipeline_dbt_project_summary.csv
92
+
93
+ - config_name: pipeline_dlt
94
+ data_files:
95
+ - split: train
96
+ path: Data/pipeline_artifacts/DE_pipeline_dlt_features.csv
97
+
98
+ - config_name: pipeline_files
99
+ data_files:
100
+ - split: train
101
+ path: Data/pipeline_artifacts/DE_pipeline_files.csv
102
+
103
+ - config_name: pipeline_kedro
104
+ data_files:
105
+ - split: train
106
+ path: Data/pipeline_artifacts/DE_pipeline_kedro_pipeline_features.csv
107
+
108
+ - config_name: pipeline_luigi
109
+ data_files:
110
+ - split: train
111
+ path: Data/pipeline_artifacts/DE_pipeline_luigi_task_features.csv
112
+
113
+ - config_name: pipeline_prefect
114
+ data_files:
115
+ - split: train
116
+ path: Data/pipeline_artifacts/DE_pipeline_prefect_flow_features.csv
117
+ ---
118
+
119
+ # DEPosit — Replication Package
120
+
121
+ **DEPosit** (Data Engineering Pipeline Repositories) is a dataset of open-source GitHub repositories in the data-engineering pipeline ecosystem.
122
+
123
+ The dataset contains a master cohort of **1,952 repositories** together with repository activity, commits, pull requests, issues, CI-service information, contributor metrics, and pipeline discovery and feature data.
124
+
125
+ ## Dataset (`Data/`)
126
+
127
+ The Hugging Face Hub exposes each heterogeneous CSV table as a separate **configuration**. This prevents tables with different schemas from being incorrectly concatenated by the Dataset Viewer.
128
+
129
+ | Configuration | File | Description |
130
+ |---------------|------|-------------|
131
+ | `repositories` | `filtered_DE_repositories.csv` | Master cohort (**1,952** repos) |
132
+ | `commits` | `DE_all_commits_details.csv` | Commits per repository |
133
+ | `pull_requests` | `DE_all_pr_details.csv` | Pull requests |
134
+ | `issues` | `DE_all_issue_details.csv` | Issues |
135
+ | `issue_closers` | `DE_all_issue_closers.csv` | Issue closer logins |
136
+ | `pr_reviews` | `DE_all_pr_reviews_graphql.csv` | PR review / merge metadata (GraphQL) |
137
+ | `ci_services` | `DE_ci_services.csv` | Detected CI services per repo |
138
+ | `ci_file_commits` | `DE_commits_per_ci_files.csv` | Commits touching CI config paths |
139
+ | `github_actions_runs` | `DE_repo_gha_runs_counts.csv` | GitHub Actions run counts |
140
+ | `repo_interactions` | `DE_repo_interactions.csv` | Precomputed interaction-type metrics |
141
+ | `repo_metrics` | `DE_repo_metrics.csv` | Repo-level activity aggregates |
142
+ | `user_autonomy` | `DE_user_autonomy.csv` | Contributor autonomy per repo |
143
+ | `pipeline_airflow` | `pipeline_artifacts/DE_pipeline_airflow_dag_features.csv` | Airflow pipeline features |
144
+ | `pipeline_beam` | `pipeline_artifacts/DE_pipeline_beam_pipeline_features.csv` | Apache Beam pipeline features |
145
+ | `pipeline_dagster` | `pipeline_artifacts/DE_pipeline_dagster_features.csv` | Dagster pipeline features |
146
+ | `pipeline_dbt_model` | `pipeline_artifacts/DE_pipeline_dbt_model_features.csv` | dbt model features |
147
+ | `pipeline_dbt_project_summary` | `pipeline_artifacts/DE_pipeline_dbt_project_summary.csv` | dbt project-level features |
148
+ | `pipeline_dlt` | `pipeline_artifacts/DE_pipeline_dlt_features.csv` | dlt pipeline features |
149
+ | `pipeline_files` | `pipeline_artifacts/DE_pipeline_files.csv` | Discovered pipeline files |
150
+ | `pipeline_kedro` | `pipeline_artifacts/DE_pipeline_kedro_pipeline_features.csv` | Kedro pipeline features |
151
+ | `pipeline_luigi` | `pipeline_artifacts/DE_pipeline_luigi_task_features.csv` | Luigi task features |
152
+ | `pipeline_prefect` | `pipeline_artifacts/DE_pipeline_prefect_flow_features.csv` | Prefect flow features |
153
+
154
+ The SQLite file `DE_pipeline_artifacts.db` is retained as a downloadable replication artifact and is not used by the Hugging Face Dataset Viewer.
155
+
156
+ ## Join Keys
157
+
158
+ - `full_name` or `repo_name` (`owner/repo`) for repository-level and process tables.
159
+ - `repo_full_name` for tables in `pipeline_artifacts/`.
160
+ - `(repo_full_name, file_path)` links `DE_pipeline_files.csv` to the pipeline feature tables.
161
+
162
+ ## Loading Data from Hugging Face
163
+
164
+ Each table can be loaded independently using its configuration name:
165
+
166
+ ```python
167
+ from datasets import load_dataset
168
+
169
+ repos = load_dataset("taher-ghaleb/DEPosit", "repositories")
170
+ commits = load_dataset("taher-ghaleb/DEPosit", "commits")
171
+ issues = load_dataset("taher-ghaleb/DEPosit", "issues")
172
+ ci = load_dataset("taher-ghaleb/DEPosit", "ci_services")
173
+ ```
174
+
175
+ To load pipeline feature tables:
176
+
177
+ ```python
178
+ from datasets import load_dataset
179
+
180
+ airflow = load_dataset("taher-ghaleb/DEPosit", "pipeline_airflow")
181
+ dbt = load_dataset("taher-ghaleb/DEPosit", "pipeline_dbt_model")
182
+ prefect = load_dataset("taher-ghaleb/DEPosit", "pipeline_prefect")
183
+ ```
184
+
185
+ Each configuration represents one logical table with a consistent schema. The tables are intended to be joined for analysis using the keys described above.
186
+
187
+
188
+ ## Scripts (`Scripts/`)
189
+
190
+ | Script | Role |
191
+ |--------|------|
192
+ | `collect_github_repos_for_SE4DE_topics.py` | Topic-based repo discovery → `Data/all_DE_repositories.csv` |
193
+ | `get_repo_commits_pr_issues_contributors_for_SE4DE_repos.py` | Commits, PRs, issues, contributors |
194
+ | `get_issue_closers_for_SE4DE_repos.py` | Issue closer events |
195
+ | `get_pr_reviews_graphql_for_SE4DE_repos.py` | PR reviews / merges (GraphQL) |
196
+ | `get_pr_reviews_rest_for_SE4DE_repos.py` | PR reviews (REST alternative) |
197
+ | `collect_github_repos_commits_per_ci_files.py` | Commits on CI-related paths |
198
+ | `get_gha_workflow_runs_for_SE4DE_repos.py` | GitHub Actions run counts |
199
+ | `compute_interactions_for_SE4DE_repos.py` | `DE_repo_interactions.csv` |
200
+ | `compute_user_autonomy_for_SE4DE_repos.py` | `DE_user_autonomy.csv` |
201
+ | `collect_pipeline_artifacts.py` | Discover and parse pipeline files |
202
+ | `backfill_ci_gha_from_runs.py` | Add GitHub Actions to `DE_ci_services.csv` when runs exist but path detection missed them |
203
+ | `github_api.py`, `github_tokens.py` | Shared API session and token loading |
204
+ | `pipeline_parsers/` | Framework-specific parsers |
205
+ | `pipeline_schema.sql` | SQLite schema for pipeline collection |
206
+
207
+ ## Quick start (analyze the shipped data)
208
+
209
+ ```powershell
210
+ py -m pip install -r requirements.txt
211
+ ```
212
+
213
+ Open `Data/filtered_DE_repositories.csv` and join to other `Data/DE_*.csv` files on `full_name` / `repo_name`.
214
+
215
+ ## GitHub authentication (re-collection only)
216
+
217
+ **Do not commit personal access tokens.** Scripts load credentials from (in order):
218
+
219
+ 1. `--token` / `--tokens` CLI flags (where supported)
220
+ 2. Environment variables: `GITHUB_TOKEN_SE4DE` (preferred) or `GITHUB_TOKEN`
221
+ 3. Optional local `.env` file — copy `.env.example` to `.env` and set your PAT
222
+
223
+ ```powershell
224
+ copy .env.example .env
225
+ # Edit .env and set GITHUB_TOKEN_SE4DE=<your-pat>
226
+
227
+ # Or set for the current shell only:
228
+ $env:GITHUB_TOKEN_SE4DE = "<your-pat>"
229
+ ```
230
+
231
+ For heavy REST collection, rotate rate limits with comma-separated PATs:
232
+
233
+ ```powershell
234
+ $env:GITHUB_TOKENS = "<pat1>,<pat2>"
235
+ ```
236
+
237
+ Example:
238
+
239
+ ```powershell
240
+ py Scripts/collect_pipeline_artifacts.py --token $env:GITHUB_TOKEN_SE4DE
241
+ py Scripts/get_gha_workflow_runs_for_SE4DE_repos.py --token $env:GITHUB_TOKEN_SE4DE
242
+ ```
243
+
244
+ Typical collection order: topic discovery → development history → derived metrics → pipeline artifacts → optional `backfill_ci_gha_from_runs.py`.
245
+
246
+ Historical commit/PR text in `Data/*.csv` may contain third-party leaked tokens from upstream repos; these were redacted where detected. Re-run `Scripts/redact_leaked_tokens_in_data.py` after adding new CSV exports.
247
+
248
+ ## Layout
249
+
250
+ ```text
251
+ ReplicationPackage/
252
+ ├── README.md
253
+ ├── LICENSE
254
+ ├── DATA_LICENSE
255
+ ├── .env.example
256
+ ├── requirements.txt
257
+ ├── Data/
258
+ │ ├── filtered_DE_repositories.csv
259
+ │ ├── DE_*.csv
260
+ │ ├── DE_pipeline_artifacts.db
261
+ │ └── pipeline_artifacts/
262
+ └── Scripts/
263
+ ├── collect_*.py, get_*.py, compute_*.py
264
+ ├── collect_pipeline_artifacts.py
265
+ ├── backfill_ci_gha_from_runs.py
266
+ ├── github_api.py, github_tokens.py
267
+ └── pipeline_parsers/
268
+ ```
269
+
270
+ ## Citation
271
+
272
+ If you use DEPosit, please cite:
273
+
274
+ ```bibtex
275
+ @inproceedings{deposit2026,
276
+ title = {DEPosit: A Dataset of Open-Source Repositories for Data Engineering Pipelines},
277
+ author = {Gorjala, Bhavyalatha and Taher A. Ghaleb},
278
+ booktitle = {Proceedings of the 42nd IEEE International Conference on Software Maintenance and Evolution (ICSME)},
279
+ year = {2026},
280
+ organization={IEEE}
281
+ }
282
+ ```
Scripts/backfill_ci_gha_from_runs.py ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Add GitHub Actions to DE_ci_services when gha_run_count > 0 but commit-path
3
+ detection missed it (dynamic workflows, collection gaps).
4
+
5
+ Does not fabricate DE_commits_per_ci_files rows; only updates ci_services_list.
6
+ """
7
+ from __future__ import annotations
8
+
9
+ import ast
10
+ import csv
11
+ import shutil
12
+ from pathlib import Path
13
+
14
+ ROOT = Path(__file__).resolve().parents[1]
15
+ GHA = "GitHub Actions"
16
+
17
+
18
+ def parse_services(raw: str) -> list[str]:
19
+ raw = (raw or "").strip()
20
+ if not raw:
21
+ return []
22
+ try:
23
+ val = ast.literal_eval(raw)
24
+ if isinstance(val, list):
25
+ return [str(x) for x in val]
26
+ except (SyntaxError, ValueError):
27
+ pass
28
+ return []
29
+
30
+
31
+ def format_services(services: list[str]) -> str:
32
+ return str(services)
33
+
34
+
35
+ def backfill_ci_file(
36
+ ci_path: Path,
37
+ runs_path: Path,
38
+ repos_path: Path,
39
+ cohort: set[str] | None,
40
+ ) -> dict[str, int]:
41
+ lang_by_repo = {}
42
+ if repos_path.is_file():
43
+ for r in csv.DictReader(open(repos_path, encoding="utf-8")):
44
+ lang_by_repo[r["full_name"]] = r.get("language") or ""
45
+
46
+ runs_by_repo = {}
47
+ for r in csv.DictReader(open(runs_path, encoding="utf-8")):
48
+ name = r["full_name"]
49
+ if cohort is not None and name not in cohort:
50
+ continue
51
+ count = int(r.get("gha_run_count") or 0)
52
+ if count > 0:
53
+ runs_by_repo[name] = count
54
+
55
+ fieldnames = None
56
+ rows = []
57
+ by_name = {}
58
+ for r in csv.DictReader(open(ci_path, encoding="utf-8")):
59
+ if fieldnames is None:
60
+ fieldnames = list(r.keys())
61
+ rows.append(r)
62
+ by_name[r["repo_name"]] = r
63
+
64
+ stats = {"updated": 0, "added": 0, "skipped_already": 0, "skipped_no_runs": 0}
65
+ for repo, _runs in sorted(runs_by_repo.items()):
66
+ row = by_name.get(repo)
67
+ if row is not None:
68
+ services = parse_services(row.get("ci_services_list", ""))
69
+ if GHA in services:
70
+ stats["skipped_already"] += 1
71
+ continue
72
+ services.append(GHA)
73
+ row["ci_services_list"] = format_services(services)
74
+ row["ci_services_count"] = str(len(services))
75
+ stats["updated"] += 1
76
+ continue
77
+
78
+ if fieldnames is None:
79
+ raise SystemExit(f"Missing CI header in {ci_path}")
80
+ new_row = {k: "" for k in fieldnames}
81
+ new_row["repo_name"] = repo
82
+ new_row["language"] = lang_by_repo.get(repo, "")
83
+ new_row["ci_services_count"] = "1"
84
+ new_row["ci_services_list"] = format_services([GHA])
85
+ rows.append(new_row)
86
+ by_name[repo] = new_row
87
+ stats["added"] += 1
88
+
89
+ backup = ci_path.with_suffix(ci_path.suffix + ".bak")
90
+ shutil.copy2(ci_path, backup)
91
+ with open(ci_path, "w", newline="", encoding="utf-8") as f:
92
+ w = csv.DictWriter(f, fieldnames=fieldnames, extrasaction="ignore")
93
+ w.writeheader()
94
+ w.writerows(rows)
95
+ return stats
96
+
97
+
98
+ def main() -> None:
99
+ data_dir = ROOT / "Data"
100
+ cohort = {
101
+ r["full_name"]
102
+ for r in csv.DictReader(open(data_dir / "filtered_DE_repositories.csv", encoding="utf-8"))
103
+ }
104
+ targets = [(data_dir, cohort)]
105
+ for base, cohort_set in targets:
106
+ ci_path = base / "DE_ci_services.csv"
107
+ runs_path = base / "DE_repo_gha_runs_counts.csv"
108
+ repos_path = base / "filtered_DE_repositories.csv"
109
+ if not repos_path.is_file():
110
+ repos_path = base / "all_DE_repositories.csv"
111
+ if not ci_path.is_file() or not runs_path.is_file():
112
+ print(f"Skip {base}: missing ci or runs file")
113
+ continue
114
+ stats = backfill_ci_file(ci_path, runs_path, repos_path, cohort_set)
115
+ print(f"{base.name}: {stats} (backup: {ci_path.name}.bak)")
116
+
117
+
118
+ if __name__ == "__main__":
119
+ main()
Scripts/collect_github_repos_commits_per_ci_files.py ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import time
3
+ import csv
4
+ import os
5
+ import sys
6
+ import pandas as pd
7
+
8
+ from github_tokens import init_rest_client_auth
9
+
10
+ tokens: list[str] = []
11
+ authorization_headers: list[dict[str, str]] = []
12
+ token_index = 0
13
+ last_request_time = {} # Tracks last request time per token
14
+
15
+
16
+ def _ensure_auth() -> None:
17
+ global tokens, authorization_headers
18
+ if not tokens:
19
+ tokens, authorization_headers = init_rest_client_auth()
20
+
21
+
22
+ def makeRequest(api_url, params):
23
+ global token_index
24
+ _ensure_auth()
25
+ num_tries = 0
26
+ max_tries = 3
27
+
28
+ while True:
29
+ num_tries += 1
30
+ if num_tries > max_tries:
31
+ print(' -- Max retries reached. Exiting...', end='')
32
+ break
33
+
34
+ # Find the first available token
35
+ available_token = None
36
+ current_time = time.time()
37
+ for i in range(len(authorization_headers)):
38
+ if i not in last_request_time or (current_time - last_request_time[i] >= 1):
39
+ available_token = i
40
+ break
41
+
42
+ if available_token is None:
43
+ min_wait = min(last_request_time.values()) + 1 - current_time
44
+ time.sleep(max(min_wait, 1))
45
+ continue
46
+
47
+ token_index = available_token
48
+ headers = authorization_headers[token_index]
49
+ last_request_time[token_index] = time.time()
50
+
51
+ while True:
52
+ try:
53
+ response = requests.get(api_url, headers=headers, params=params, timeout=30)
54
+ break
55
+ except requests.exceptions.RequestException as e:
56
+ print(f' -- Request error: {e}. Retrying in 60 seconds...', end='')
57
+ time.sleep(60)
58
+ except Exception as e:
59
+ print(f' -- Another request error: {e}. Retrying in 60 seconds...', end='')
60
+ time.sleep(60)
61
+
62
+ if response.status_code == 200:
63
+ return response.json()
64
+ elif response.status_code == 403 and ('message' in response.json() and 'rate limit' in response.json()['message'].lower()):
65
+ last_request_time[token_index] = time.time()
66
+ elif response.status_code == 422 or response.status_code == 401:
67
+ return None
68
+ else:
69
+ print(f' -- Request failed with status code {response.status_code}. Retrying... ' + api_url, end='')
70
+ time.sleep(1)
71
+
72
+ def search_repo_commits_by_ci_file_path(repo_name, ci_file_path, csv_file, csv_writer):
73
+ '''
74
+ Perform a GitHub Search API query for commits per repository based on the path to a CI configuration file.
75
+ Write results directly to a file.
76
+ '''
77
+ GITHUB_API_URL = f'https://api.github.com/repos/{repo_name}/commits'
78
+ page = 1
79
+ per_page = 100
80
+ num_commits = 0
81
+ while True:
82
+ params = {
83
+ 'path': ci_file_path,
84
+ 'per_page': per_page,
85
+ 'page': page,
86
+ }
87
+
88
+ data = makeRequest(GITHUB_API_URL, params)
89
+
90
+ if not data or len(data) == 0:
91
+ #print(f'No commits found.')
92
+ return num_commits
93
+
94
+ #print(f' Page {page} for query: {GITHUB_API_URL}?path={ci_file_path}&per_page={per_page}&page={page}')
95
+
96
+ for commit in data:
97
+ num_commits += 1
98
+ commit_info = {
99
+ 'repo_name': repo_name,
100
+ 'configuration_file': ci_file_path,
101
+ 'commit_sha': commit['sha'],
102
+ 'parent_sha': ', '.join([parent['sha'] for parent in commit['parents']]) if commit['parents'] else '',
103
+ 'commit_message': commit['commit']['message'].lstrip().rstrip().replace('\n', '\\n'),
104
+ 'author_login': commit['author']['login'] if commit['author'] else '',
105
+ 'author_name': commit['commit']['author']['name'],
106
+ 'author_email': commit['commit']['author']['email'],
107
+ 'author_date': commit['commit']['author']['date'],
108
+ 'committer_login': commit['committer']['login'] if commit['committer'] else '',
109
+ 'committer_name': commit['commit']['committer']['name'],
110
+ 'committer_email': commit['commit']['committer']['email'],
111
+ 'committer_date': commit['commit']['committer']['date'],
112
+ 'comment_count': commit['commit']['comment_count']
113
+ }
114
+ csv_writer.writerow(commit_info.values())
115
+ csv_file.flush()
116
+
117
+ if len(data) < per_page or page == 10:
118
+ break
119
+
120
+ page += 1
121
+
122
+ if page == 10 and len(data) == 100:
123
+ print('[This request has more than 1000 results]')
124
+
125
+ return num_commits
126
+
127
+ if __name__ == '__main__':
128
+ last_stopped_repo = 'immu0001/Udacity-Data-Engineer-nanodegree' # Last one for all services
129
+
130
+ input_path = f'../Data/all_DE_repositories.csv'
131
+ commits_output_path = f'../Data/DE_commits_per_ci_files.csv'
132
+ repos_ci_output_path = f'../Data/DE_ci_services.csv'
133
+
134
+ ci_file_paths = {
135
+ # Keep in sync with ci-services.tex (ICSME data paper Table).
136
+ '.github/workflows': 'GitHub Actions',
137
+ '.travis.yml': 'Travis CI',
138
+ 'circle.yml': 'CircleCI',
139
+ '.circleci/config.yml': 'CircleCI',
140
+ '.gitlab-ci.yml': 'GitLab',
141
+ '.appveyor.yml': 'AppVeyor',
142
+ 'appveyor.yml': 'AppVeyor',
143
+ 'azure-pipelines.yml': 'Azure Pipelines',
144
+ 'bitbucket-pipelines.yml': 'Bitbucket',
145
+ '.cirrus.yml': 'Cirrus',
146
+ '.scrutinizer.yml': 'Scrutinizer CI',
147
+ 'codeship-services.yml': 'Codeship',
148
+ '.semaphore/semaphore.yml': 'Semaphore',
149
+ 'wercker.yml': 'Wercker',
150
+ 'Jenkinsfile': 'Jenkins',
151
+ 'bitrise.yml': 'Bitrise',
152
+ 'bamboo.yml': 'Bamboo',
153
+ '.gocd.yaml': 'GoCD',
154
+ 'codemagic.yaml': 'Codemagic',
155
+ }
156
+
157
+ first_commits_time_csv = True if not os.path.exists(commits_output_path) else False
158
+ commits_csv_file = open(commits_output_path, 'a', newline='', encoding='utf-8')
159
+ commits_csv_writer = csv.writer(commits_csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
160
+ if first_commits_time_csv:
161
+ commits_csv_writer.writerow(['repo_name', 'language', 'configuration_file', 'commit_sha', 'parent_sha', 'commit_message', 'author_login', 'author_name', 'author_email', 'author_date', 'committer_login', 'committer_name', 'committer_email', 'committer_date', 'comment_count'])
162
+ commits_csv_file.flush()
163
+
164
+ first_time_repos_ci_mapping_csv = True if not os.path.exists(repos_ci_output_path) else False
165
+ repos_ci_csv_file = open(repos_ci_output_path, 'a', newline='', encoding='utf-8')
166
+ repos_ci_csv_writer = csv.writer(repos_ci_csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
167
+ if first_time_repos_ci_mapping_csv:
168
+ repos_ci_csv_writer.writerow(['repo_name', 'language', 'ci_services_count', 'ci_services_list'] + list(ci_file_paths.keys()))
169
+ repos_ci_csv_file.flush()
170
+
171
+ chunksize = 1000
172
+ row_id = -1
173
+ search_started = False
174
+ print('Waiting to reach the last repo we stopped at last run...')
175
+
176
+ for repos_df in pd.read_csv(input_path, chunksize=chunksize):
177
+ for _, repo in repos_df.iterrows():
178
+ row_id += 1
179
+
180
+ if last_stopped_repo == '' or repo['full_name'] == last_stopped_repo: # Last repo we stopped at last run
181
+ search_started = True
182
+
183
+ if not search_started:
184
+ continue
185
+
186
+ print(f'{row_id+1}: {repo['full_name']}')
187
+ ci_services_commit_counts = []
188
+ ci_services_list = []
189
+ for ci_file_path, ci_service_name in ci_file_paths.items():
190
+ print(f' -> {ci_file_path} ', end='')
191
+ num_commits = search_repo_commits_by_ci_file_path(repo['full_name'], ci_file_path, csv_file=commits_csv_file, csv_writer=commits_csv_writer)
192
+ ci_services_commit_counts.append(num_commits if num_commits > 0 else '')
193
+ ci_services_list += [ci_service_name] if num_commits > 0 and ci_service_name not in ci_services_list else []
194
+ print(f'[{num_commits}]' if num_commits > 0 else '')
195
+
196
+ if len(ci_services_list) > 0:
197
+ repos_ci_csv_writer.writerow([repo['full_name'], repo['language'], len(ci_services_list), ci_services_list] + ci_services_commit_counts)
198
+ repos_ci_csv_file.flush()
199
+
200
+
Scripts/collect_github_repos_for_SE4DE_topics.py ADDED
@@ -0,0 +1,301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import time
3
+ import csv
4
+ import os
5
+ from datetime import datetime, timedelta
6
+ import sys
7
+
8
+
9
+ from github_tokens import init_rest_client_auth
10
+
11
+ tokens: list[str] = []
12
+ authorization_headers: list[dict[str, str]] = []
13
+ token_index = 0
14
+
15
+
16
+ def _ensure_auth() -> None:
17
+ global tokens, authorization_headers
18
+ if not tokens:
19
+ tokens, authorization_headers = init_rest_client_auth()
20
+
21
+
22
+ def makeRequest(api_url, params):
23
+ global token_index
24
+ _ensure_auth()
25
+ num_tries = 0
26
+ max_tries = 3
27
+
28
+ headers = authorization_headers[token_index]
29
+
30
+ while True:
31
+ num_tries += 1
32
+ if num_tries > max_tries:
33
+ print(' Max retries reached. Exiting...')
34
+ break
35
+
36
+ while True:
37
+ try:
38
+ response = requests.get(api_url, headers=headers, params=params, timeout=30)
39
+ break
40
+ except requests.exceptions.RequestException as e:
41
+ print(f'Request error: {e}. Retrying in 60 seconds...')
42
+ time.sleep(60)
43
+ except Exception as e:
44
+ print(f'Another request error: {e}. Retrying in 60 seconds...')
45
+ time.sleep(60)
46
+
47
+ if response.status_code == 200:
48
+ return response.json()
49
+ elif response.status_code == 403 and ('message' in response.json() and 'rate limit' in response.json()['message'].lower()):
50
+ token_index += 1
51
+ if token_index < len(authorization_headers):
52
+ print(f"Rate limit exceeded for GitHub token index[{token_index-1}]. Proceeding with index[{token_index}].")
53
+ headers = authorization_headers[token_index]
54
+ else:
55
+ reset_timestamp = int(response.headers.get('X-RateLimit-Reset', time.time() + 60))
56
+ current_timestamp = int(time.time())
57
+ wait_time = reset_timestamp - current_timestamp
58
+ print(f' Rate limit exceeded. Waiting for {wait_time} seconds...')
59
+ time.sleep(wait_time + 1)
60
+ token_index = 0
61
+ elif response.status_code == 422:
62
+ return {'total_count': 0}
63
+ else:
64
+ print(f' Request failed with status code {response.status_code}. Retrying... ' + api_url)
65
+ time.sleep(1)
66
+
67
+ def extract_fields(data):
68
+ # Fields to extract
69
+ fields = [
70
+ 'id', 'full_name', 'language', 'size', 'has_issues', 'open_issues_count', 'has_projects',
71
+ 'created_at', 'updated_at', 'pushed_at', 'watchers_count', 'archived', 'disabled',
72
+ 'allow_forking', 'forks_count', 'is_template', 'visibility', 'default_branch',
73
+ 'stargazers_count', 'owner_type', 'license_key', 'topics', 'description'
74
+ ]
75
+
76
+ flattened_fields = {
77
+ 'owner': {'type': 'owner_type'},
78
+ 'license': {'key': 'license_key'}
79
+ }
80
+
81
+ extracted = {field: data.get(field, '').strip() if isinstance(data.get(field, ''), str) else data.get(field, '') for field in fields if field and field not in ['owner_type', 'license_key']}
82
+
83
+ # Flatten nested fields
84
+ for key, subfields in flattened_fields.items():
85
+ if data.get(key) is not None:
86
+ for subfield, flat_name in subfields.items():
87
+ extracted[flat_name] = data[key].get(subfield, '')
88
+
89
+ # Handle list fields like 'topics' as comma-separated strings
90
+ if isinstance(extracted.get('topics'), list):
91
+ extracted['topics'] = ', '.join(extracted['topics'])
92
+
93
+ row = [extracted.get(field, '') for field in fields]
94
+ return row
95
+
96
+ def search_repositories_by_topic_with_date_range(query, start_date, end_date, interval_days, csv_file, csv_writer, previous_repos):
97
+ GITHUB_API_URL = 'https://api.github.com/search/repositories'
98
+ page = 1
99
+
100
+ current_repos = set()
101
+ while True:
102
+ params = {
103
+ 'q': f'{query} created:{start_date}..{end_date}',
104
+ 'per_page': 100,
105
+ 'page': page,
106
+ }
107
+ data = makeRequest(GITHUB_API_URL, params)
108
+
109
+ if not data:
110
+ break
111
+
112
+ total_count = data.get('total_count', 0)
113
+
114
+ if total_count == 0 and page == 1:
115
+ print(f'Total count {total_count}. No collection for this interval.')
116
+ return total_count
117
+
118
+ if total_count <= 1000 and page == 1:
119
+ print(f'Total count {total_count}. Now collecting pages:')
120
+
121
+ if total_count > 1000 and page == 1:
122
+ print(f'Total count {total_count} (>1000) for interval {interval_days}')
123
+ return total_count
124
+
125
+ print(f' Page {page} for query: {query} from {start_date} to {end_date}')
126
+ items = data.get('items', [])
127
+ for item in items:
128
+ repo_name = item.get('full_name')
129
+ if repo_name not in previous_repos:
130
+ current_repos.add(repo_name)
131
+ data_row = extract_fields(item)
132
+ csv_writer.writerow(data_row)
133
+ csv_file.flush()
134
+
135
+ if len(items) < 100:
136
+ break
137
+
138
+ page += 1
139
+
140
+ previous_repos.clear()
141
+ previous_repos.update(current_repos)
142
+ return total_count
143
+
144
+ def get_hourly_intervals(total_count):
145
+ num_intervals = -(-total_count // 500)
146
+ minutes_per_interval, extra = divmod(24 * 60, num_intervals)
147
+ return [minutes_per_interval + (i < extra) for i in range(num_intervals)]
148
+
149
+ def split_search_by_datetime(query, start_date, end_date, interval_days, csv_file, csv_writer):
150
+ previous_repos = set()
151
+ start = datetime.strptime(start_date, '%Y-%m-%dT%H:%M:%S')
152
+ end = datetime.strptime(end_date, '%Y-%m-%dT%H:%M:%S')
153
+ original_interval = interval_days
154
+
155
+ while start < end:
156
+ next_end = min(start + (timedelta(days=interval_days) - timedelta(seconds=1)), end)
157
+ print(f'Checking repositories from {start.strftime("%Y-%m-%dT%H:%M:%S")} to {next_end.strftime("%Y-%m-%dT%H:%M:%S")}')
158
+ total_count = search_repositories_by_topic_with_date_range(
159
+ query,
160
+ start.strftime('%Y-%m-%dT%H:%M:%S'),
161
+ next_end.strftime('%Y-%m-%dT%H:%M:%S'),
162
+ interval_days,
163
+ csv_file,
164
+ csv_writer,
165
+ previous_repos
166
+ )
167
+
168
+ if total_count and total_count > 1000: # If total_count exceeds 1000, reduce interval
169
+ reduced_interval = interval_days
170
+ while total_count > 1000:
171
+ reduced_interval = max(reduced_interval // 2, 1)
172
+ print(f'Reducing interval to {reduced_interval} day{'s' if reduced_interval > 1 else ''} for query: {query}')
173
+ next_end = min(start + (timedelta(days=reduced_interval) - timedelta(seconds=1)), end)
174
+ print(f'Checking repositories from {start.strftime("%Y-%m-%dT%H:%M:%S")} to {next_end.strftime("%Y-%m-%dT%H:%M:%S")}')
175
+ total_count = search_repositories_by_topic_with_date_range(
176
+ query,
177
+ start.strftime('%Y-%m-%dT%H:%M:%S'),
178
+ next_end.strftime('%Y-%m-%dT%H:%M:%S'),
179
+ interval_days,
180
+ csv_file,
181
+ csv_writer,
182
+ previous_repos
183
+ )
184
+ if reduced_interval == 1:
185
+ if total_count > 1000:
186
+ # Split the day into multiple sub-intervals (every hour)
187
+ sub_intervals = get_hourly_intervals(total_count)
188
+ hour_start = start
189
+ for sub_interval in sub_intervals:
190
+ hour_end = hour_start + (timedelta(minutes=sub_interval) - timedelta(seconds=1))
191
+ print(f'Checking repositories every {sub_interval/60} hours: from {hour_start.strftime("%Y-%m-%dT%H:%M:%S")} to {hour_end.strftime("%Y-%m-%dT%H:%M:%S")}')
192
+ total_count = search_repositories_by_topic_with_date_range(
193
+ query,
194
+ hour_start.strftime('%Y-%m-%dT%H:%M:%S'),
195
+ hour_end.strftime('%Y-%m-%dT%H:%M:%S'),
196
+ interval_days,
197
+ csv_file,
198
+ csv_writer,
199
+ previous_repos
200
+ )
201
+ hour_start = hour_end + timedelta(seconds=1)
202
+
203
+ # Restore the original interval for the next iteration
204
+ interval_days = original_interval
205
+ start = next_end + timedelta(seconds=1)
206
+
207
+ def collect_repos_for_all_topics(data_path, search_criteria, start_year, end_year, interval_days):
208
+ for criterion, criterion_values in search_criteria.items():
209
+ for criterion_value in criterion_values:
210
+ query = f'{criterion}:{criterion_value} stars:>=5 fork:false archived:false'
211
+
212
+ output_file_name = f'{data_path}/{criterion}_{criterion_value}_{csv_file_suffix}'
213
+ csv_output_file_path = output_file_name + '.csv'
214
+ first_time_csv = not os.path.exists(csv_output_file_path)
215
+ csv_file = open(csv_output_file_path, 'a', newline='', encoding='utf-8')
216
+ csv_writer = csv.writer(csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
217
+ if first_time_csv:
218
+ csv_writer.writerow(['id', 'full_name', 'language', 'size', 'has_issues', 'open_issues_count', 'has_projects', 'created_at', 'updated_at', 'pushed_at', 'watchers_count', 'archived', 'disabled', 'allow_forking', 'forks_count', 'is_template', 'visibility', 'default_branch', 'stargazers_count', 'owner_type', 'license_key', 'topics', 'description'])
219
+
220
+ print(f'Starting search for {criterion} "{criterion_value}" from {start_year} to {end_year - 1}.')
221
+ for year in range(start_year, end_year):
222
+ year_start_date = f'{year}-01-01T00:00:00'
223
+ year_end_date = f'{year}-04-30T23:59:59' if year == 2026 else f'{year}-12-31T23:59:59'
224
+
225
+ split_search_by_datetime(
226
+ query,
227
+ year_start_date,
228
+ year_end_date,
229
+ interval_days=interval_days,
230
+ csv_file=csv_file,
231
+ csv_writer=csv_writer
232
+ )
233
+ csv_file.close()
234
+ print(f'Finished search for {criterion} "{criterion_value}". Results saved to {csv_output_file_path}.')
235
+
236
+ def combine_csv_files(input_folder, output_file, deduplicate_by='full_name'):
237
+ """
238
+ Combine all CSV files in a folder into one CSV file.
239
+
240
+ Args:
241
+ input_folder (str): Folder containing CSV files
242
+ output_file (str): Output combined CSV file
243
+ deduplicate_by (str): Column used for deduplication
244
+ """
245
+
246
+ combined_rows = []
247
+ seen = set()
248
+ header = None
249
+
250
+ csv_files = [f for f in os.listdir(input_folder) if f.endswith('.csv')]
251
+
252
+ print(f'\nFound {len(csv_files)} CSV files to combine.')
253
+
254
+ for file_name in csv_files:
255
+ file_path = os.path.join(input_folder, file_name)
256
+
257
+ print(f'Reading: {file_name}')
258
+
259
+ with open(file_path, 'r', encoding='utf-8') as csv_file:
260
+ reader = csv.DictReader(csv_file)
261
+
262
+ # Save header once
263
+ if header is None:
264
+ header = reader.fieldnames
265
+
266
+ for row in reader:
267
+ unique_value = row.get(deduplicate_by)
268
+
269
+ if unique_value not in seen:
270
+ seen.add(unique_value)
271
+ combined_rows.append(row)
272
+
273
+ # Write combined file
274
+ with open(output_file, 'w', newline='', encoding='utf-8') as out_file:
275
+ writer = csv.DictWriter(out_file, fieldnames=header)
276
+ writer.writeheader()
277
+ writer.writerows(combined_rows)
278
+
279
+ print(f'\nCombined CSV saved to: {output_file}')
280
+ print(f'Total unique repositories: {len(combined_rows)}')
281
+
282
+ if __name__ == '__main__':
283
+ # Define your search criteria here
284
+ search_criteria = {
285
+ 'topic': ['etl', 'etl-pipeline', 'etl-framework', 'elt', 'data-engineering', 'data-engineering-pipeline', 'data-integration', 'airflow', 'data-pipeline', 'data-pipelines', 'data-orchestrator', 'workflow-orchestration'], # Add more topics as needed
286
+ }
287
+
288
+ data_path = '../Data'
289
+ if not os.path.exists(data_path):
290
+ os.mkdir(data_path)
291
+
292
+ start_year = 2008
293
+ end_year = 2026
294
+ interval_days = 128 # Starting with 128 days, adjust if needed
295
+ csv_file_suffix = '2008-01-01_2026-04-30'
296
+
297
+ # Start the collection for all topics
298
+ collect_repos_for_all_topics(data_path, search_criteria, start_year, end_year, interval_days)
299
+
300
+ # Combine all generated CSV files
301
+ combine_csv_files(data_path, f'{data_path}/all_DE_repositories.csv', deduplicate_by='full_name')
Scripts/collect_pipeline_artifacts.py ADDED
@@ -0,0 +1,667 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ collect_pipeline_artifacts.py
4
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
+ Discovers and parses data-engineering pipeline artifact files for DEPosit
6
+ repositories listed in Data/all_DE_repositories.csv (or a --repos subset).
7
+
8
+ Usage
9
+ -----
10
+ python collect_pipeline_artifacts.py \\
11
+ --token <GITHUB_PAT> \\
12
+ [--db Data/DE_pipeline_artifacts.db] \\
13
+ [--repos-csv Data/all_DE_repositories.csv] \\
14
+ [--repos owner/repo ...] # optional subset
15
+ [--fresh] # reprocess all repos from scratch
16
+ [--workers 1]
17
+
18
+ Set GITHUB_TOKEN_SE4DE (or use --token / .env); see github_tokens.py and .env.example.
19
+
20
+ Pipeline
21
+ --------
22
+ For each repository:
23
+ 1. Fetch the full git tree (one API call via /git/trees?recursive=1).
24
+ 2. Filter blob paths against the artifact-type patterns in pipeline_parsers.
25
+ 3. Confirm ambiguous path matches with content-level signals.
26
+ 4. Fetch file content (base64-decoded from the Blobs API).
27
+ 5. Route to the appropriate parser and insert features into SQLite.
28
+ 6. Mirror each finished repository to CSV files under Data/pipeline_artifacts/.
29
+
30
+ Rate-limit budget
31
+ -----------------
32
+ - /git/trees: 1 call per repo.
33
+ - /git/blobs: 1 call per matched file.
34
+ - GitHub authenticated REST API: 5,000 req/hr.
35
+ The script sleeps when the remaining budget falls below a configurable
36
+ threshold and retries after the reset window.
37
+ """
38
+
39
+ import argparse
40
+ import base64
41
+ import csv
42
+ import logging
43
+ import os
44
+ import re
45
+ import sqlite3
46
+ import sys
47
+ import threading
48
+ import time
49
+ from datetime import datetime, timezone
50
+ from pathlib import Path
51
+
52
+ import requests
53
+
54
+ SCRIPT_DIR = Path(__file__).resolve().parent
55
+ ROOT_DIR = SCRIPT_DIR.parent
56
+ DEFAULT_DB = ROOT_DIR / "Data" / "DE_pipeline_artifacts.db"
57
+ DEFAULT_REPOS_CSV = ROOT_DIR / "Data" / "filtered_DE_repositories.csv"
58
+ DEFAULT_CSV_DIR = ROOT_DIR / "Data" / "pipeline_artifacts"
59
+
60
+ # SQLite table -> CSV filename (one file per feature table)
61
+ CSV_EXPORT_TABLES: dict[str, str] = {
62
+ "pipeline_files": "DE_pipeline_files.csv",
63
+ "airflow_dag_features": "DE_pipeline_airflow_dag_features.csv",
64
+ "dbt_model_features": "DE_pipeline_dbt_model_features.csv",
65
+ "dbt_project_summary": "DE_pipeline_dbt_project_summary.csv",
66
+ "prefect_flow_features": "DE_pipeline_prefect_flow_features.csv",
67
+ "dagster_features": "DE_pipeline_dagster_features.csv",
68
+ "luigi_task_features": "DE_pipeline_luigi_task_features.csv",
69
+ "kedro_pipeline_features": "DE_pipeline_kedro_pipeline_features.csv",
70
+ "beam_pipeline_features": "DE_pipeline_beam_pipeline_features.csv",
71
+ "dlt_features": "DE_pipeline_dlt_features.csv",
72
+ }
73
+
74
+ # ── Local parsers ─────────────────────────────────────────────────────────────
75
+ sys.path.insert(0, str(SCRIPT_DIR))
76
+
77
+ from pipeline_parsers import ARTIFACT_PATTERNS, CONTENT_SIGNALS
78
+ from pipeline_parsers.airflow_parser import extract as extract_airflow
79
+ from pipeline_parsers.dbt_parser import (extract_model as extract_dbt_model,
80
+ extract_project as extract_dbt_project,
81
+ extract_schema as extract_dbt_schema)
82
+ from pipeline_parsers.prefect_parser import extract as extract_prefect
83
+ from pipeline_parsers.dagster_parser import extract as extract_dagster
84
+ from pipeline_parsers.other_parsers import (extract_luigi, extract_kedro,
85
+ extract_kedro_catalog,
86
+ extract_beam, extract_dlt)
87
+
88
+ logging.basicConfig(
89
+ level=logging.INFO,
90
+ format="%(asctime)s %(levelname)-8s %(message)s",
91
+ datefmt="%H:%M:%S",
92
+ )
93
+ log = logging.getLogger(__name__)
94
+
95
+ # ── Constants ─────────────────────────────────────────────────────────────────
96
+ _MAX_FILE_BYTES = 500_000 # skip files larger than this (likely generated)
97
+ _MAX_FILES_PER_REPO = 2_000 # guard against repos with enormous dags/ dirs
98
+
99
+ # Pre-compile all path patterns
100
+ _COMPILED_PATTERNS: dict[str, list[re.Pattern]] = {
101
+ atype: [re.compile(p) for p in pats]
102
+ for atype, pats in ARTIFACT_PATTERNS.items()
103
+ }
104
+
105
+
106
+ # ── GitHub API helpers ────────────────────────────────────────────────────────
107
+ from github_api import GITHUB_API, GitHubSession # noqa: E402
108
+ from github_tokens import add_github_token_args, resolve_token # noqa: E402
109
+
110
+
111
+ def _fetch_tree(session: GitHubSession, owner: str, repo: str
112
+ ) -> tuple[list[dict] | None, str]:
113
+ """Return (blob entries, tree_status) from the default branch recursive tree."""
114
+ url = f"{GITHUB_API}/repos/{owner}/{repo}/git/trees/HEAD?recursive=1"
115
+ resp = session.get(url)
116
+ if resp.status_code == 404:
117
+ log.warning("%s/%s: 404 on tree fetch", owner, repo)
118
+ return None, "404"
119
+ if resp.status_code == 409:
120
+ log.warning("%s/%s: empty repo", owner, repo)
121
+ return None, "empty"
122
+ if resp.status_code != 200:
123
+ return None, f"http_{resp.status_code}"
124
+ data = resp.json()
125
+ status = "truncated" if data.get("truncated") else "ok"
126
+ if status == "truncated":
127
+ log.warning("%s/%s: tree truncated (very large repo)", owner, repo)
128
+ blobs = [e for e in data.get("tree", []) if e.get("type") == "blob"]
129
+ return blobs, status
130
+
131
+
132
+ def _fetch_blob(session: GitHubSession, owner: str, repo: str,
133
+ sha: str) -> str | None:
134
+ """Return decoded text content of a git blob, or None on failure."""
135
+ url = f"{GITHUB_API}/repos/{owner}/{repo}/git/blobs/{sha}"
136
+ resp = session.get(url)
137
+ if resp.status_code != 200:
138
+ return None
139
+ data = resp.json()
140
+ if data.get("encoding") != "base64":
141
+ return None
142
+ try:
143
+ return base64.b64decode(data["content"]).decode("utf-8", errors="replace")
144
+ except Exception:
145
+ return None
146
+
147
+
148
+ # ── Artifact type detection ───────────────────────────────────────────────────
149
+
150
+ def _classify_path(file_path: str) -> str | None:
151
+ """Return the artifact type for a file path, or None if no match."""
152
+ for atype, patterns in _COMPILED_PATTERNS.items():
153
+ for pat in patterns:
154
+ if pat.search(file_path):
155
+ return atype
156
+ return None
157
+
158
+
159
+ def _confirm_with_content(artifact_type: str, raw_bytes: bytes) -> bool:
160
+ """
161
+ For path-ambiguous types, verify that the file content contains at
162
+ least one expected signal. Types with an empty signal list always pass.
163
+ """
164
+ signals = CONTENT_SIGNALS.get(artifact_type, [])
165
+ if not signals:
166
+ return True
167
+ return any(sig in raw_bytes for sig in signals)
168
+
169
+
170
+ # ── SQLite helpers ────────────────────────────────────────────────────────────
171
+
172
+ def load_repos_from_csv(
173
+ csv_path: Path,
174
+ subset: list[str] | None = None,
175
+ *,
176
+ include_archived: bool = False,
177
+ ) -> list[str]:
178
+ """
179
+ Load owner/repo names from all_DE_repositories.csv.
180
+
181
+ Expects columns: full_name (required), archived, disabled (optional booleans).
182
+ By default skips archived/disabled rows; deduplicates by full_name.
183
+ """
184
+ if not csv_path.is_file():
185
+ raise FileNotFoundError(f"Repository list not found: {csv_path}")
186
+
187
+ def _is_true(value: str | None) -> bool:
188
+ return (value or "").strip().lower() in ("true", "1", "yes")
189
+
190
+ seen: set[str] = set()
191
+ repos: list[str] = []
192
+ with open(csv_path, encoding="utf-8", newline="") as f:
193
+ reader = csv.DictReader(f)
194
+ if not reader.fieldnames or "full_name" not in reader.fieldnames:
195
+ raise ValueError(f"{csv_path} must contain a full_name column")
196
+ for row in reader:
197
+ name = (row.get("full_name") or "").strip()
198
+ if not name or name in seen:
199
+ continue
200
+ if "/" not in name or name.count("/") != 1:
201
+ log.warning("Skipping invalid full_name: %r", name)
202
+ continue
203
+ if not include_archived and (
204
+ _is_true(row.get("archived")) or _is_true(row.get("disabled"))
205
+ ):
206
+ continue
207
+ seen.add(name)
208
+ repos.append(name)
209
+
210
+ repos.sort()
211
+ if subset:
212
+ allowed = {
213
+ r.strip()
214
+ for r in subset
215
+ if r.strip() and "/" in r and r.count("/") == 1
216
+ }
217
+ repos = [r for r in repos if r in allowed]
218
+ extra = sorted(allowed - set(repos))
219
+ if extra:
220
+ log.info("Adding %d repo(s) from --repos not in CSV: %s",
221
+ len(extra), ", ".join(extra[:5]))
222
+ repos = sorted(set(repos) | set(extra))
223
+ return repos
224
+
225
+
226
+ def _migrate_db(conn: sqlite3.Connection) -> None:
227
+ """Apply additive schema changes to existing DE_pipeline_artifacts.db files."""
228
+ cols = {
229
+ row[1]
230
+ for row in conn.execute("PRAGMA table_info(dbt_model_features)").fetchall()
231
+ }
232
+ if cols and "has_tests" not in cols:
233
+ conn.execute("ALTER TABLE dbt_model_features ADD COLUMN has_tests INTEGER")
234
+ log.info("Migrated dbt_model_features: added has_tests column")
235
+ conn.execute(
236
+ """
237
+ CREATE TABLE IF NOT EXISTS repo_scan_status (
238
+ repo_full_name TEXT PRIMARY KEY,
239
+ artifact_file_count INTEGER NOT NULL,
240
+ tree_status TEXT,
241
+ scanned_at TEXT NOT NULL
242
+ )
243
+ """
244
+ )
245
+
246
+
247
+ def _mark_repo_scanned(
248
+ conn: sqlite3.Connection,
249
+ repo: str,
250
+ artifact_count: int,
251
+ tree_status: str,
252
+ ) -> None:
253
+ conn.execute(
254
+ """
255
+ INSERT OR REPLACE INTO repo_scan_status
256
+ (repo_full_name, artifact_file_count, tree_status, scanned_at)
257
+ VALUES (?, ?, ?, ?)
258
+ """,
259
+ (repo, artifact_count, tree_status,
260
+ datetime.now(timezone.utc).isoformat()),
261
+ )
262
+
263
+
264
+ def _init_db(db_path: Path) -> sqlite3.Connection:
265
+ db_path.parent.mkdir(parents=True, exist_ok=True)
266
+ schema = SCRIPT_DIR / "pipeline_schema.sql"
267
+ conn = sqlite3.connect(str(db_path))
268
+ conn.row_factory = sqlite3.Row
269
+ conn.execute("PRAGMA journal_mode=WAL")
270
+ conn.execute("PRAGMA synchronous=NORMAL")
271
+ if schema.exists():
272
+ conn.executescript(schema.read_text())
273
+ _migrate_db(conn)
274
+ conn.commit()
275
+ return conn
276
+
277
+
278
+ class PipelineCsvExporter:
279
+ """Keep per-table CSV files in sync with SQLite (one repo at a time)."""
280
+
281
+ def __init__(self, csv_dir: Path) -> None:
282
+ self.csv_dir = Path(csv_dir)
283
+ self.csv_dir.mkdir(parents=True, exist_ok=True)
284
+ self._lock = threading.Lock()
285
+ self._columns_cache: dict[str, list[str]] = {}
286
+
287
+ def reset_all(self) -> None:
288
+ with self._lock:
289
+ for filename in CSV_EXPORT_TABLES.values():
290
+ path = self.csv_dir / filename
291
+ if path.exists():
292
+ path.unlink()
293
+
294
+ def _columns(self, conn: sqlite3.Connection, table: str) -> list[str]:
295
+ if table not in self._columns_cache:
296
+ rows = conn.execute(f"PRAGMA table_info({table})").fetchall()
297
+ self._columns_cache[table] = [
298
+ r[1] for r in rows if r[1] != "id"
299
+ ]
300
+ return self._columns_cache[table]
301
+
302
+ def _read_rows(self, path: Path) -> list[dict[str, str]]:
303
+ if not path.exists():
304
+ return []
305
+ with open(path, encoding="utf-8", newline="") as f:
306
+ return list(csv.DictReader(f))
307
+
308
+ def sync_repo(self, conn: sqlite3.Connection, repo: str) -> None:
309
+ """Replace all CSV rows for repo with current SQLite contents."""
310
+ with self._lock:
311
+ for table, filename in CSV_EXPORT_TABLES.items():
312
+ cols = self._columns(conn, table)
313
+ if not cols:
314
+ continue
315
+ col_list = ", ".join(cols)
316
+ new_rows = conn.execute(
317
+ f"SELECT {col_list} FROM {table} WHERE repo_full_name = ?",
318
+ (repo,),
319
+ ).fetchall()
320
+ new_dicts = [dict(row) for row in new_rows]
321
+
322
+ out_path = self.csv_dir / filename
323
+ kept = [
324
+ row for row in self._read_rows(out_path)
325
+ if row.get("repo_full_name") != repo
326
+ ]
327
+ if not kept and not new_dicts and not out_path.exists():
328
+ continue
329
+ fieldnames = list(kept[0].keys()) if kept else cols
330
+
331
+ with open(out_path, "w", encoding="utf-8", newline="") as f:
332
+ writer = csv.DictWriter(f, fieldnames=fieldnames, extrasaction="ignore")
333
+ writer.writeheader()
334
+ for row in kept:
335
+ writer.writerow(row)
336
+ for row in new_dicts:
337
+ writer.writerow({k: row.get(k) for k in fieldnames})
338
+
339
+
340
+ def _already_processed(conn: sqlite3.Connection, repo: str) -> bool:
341
+ row = conn.execute(
342
+ "SELECT 1 FROM repo_scan_status WHERE repo_full_name = ? LIMIT 1",
343
+ (repo,),
344
+ ).fetchone()
345
+ if row is not None:
346
+ return True
347
+ # Legacy runs before repo_scan_status: treat repos with pipeline_files as done
348
+ return conn.execute(
349
+ "SELECT 1 FROM pipeline_files WHERE repo_full_name = ? LIMIT 1",
350
+ (repo,),
351
+ ).fetchone() is not None
352
+
353
+
354
+ def _insert_file_record(conn: sqlite3.Connection, repo: str, path: str,
355
+ atype: str, sha: str, size: int) -> None:
356
+ conn.execute(
357
+ """INSERT OR IGNORE INTO pipeline_files
358
+ (repo_full_name, file_path, artifact_type, file_sha,
359
+ file_size_bytes, collected_at)
360
+ VALUES (?, ?, ?, ?, ?, ?)""",
361
+ (repo, path, atype, sha, size,
362
+ datetime.now(timezone.utc).isoformat()),
363
+ )
364
+
365
+
366
+ def _set_parse_error(conn: sqlite3.Connection, repo: str, path: str,
367
+ error: str | None) -> None:
368
+ """parse_error lives on pipeline_files, not on per-artifact feature tables."""
369
+ if not error:
370
+ return
371
+ conn.execute(
372
+ "UPDATE pipeline_files SET parse_error = ? "
373
+ "WHERE repo_full_name = ? AND file_path = ?",
374
+ (error, repo, path),
375
+ )
376
+
377
+
378
+ def _insert_features(conn: sqlite3.Connection, table: str,
379
+ repo: str, path: str, features: dict) -> None:
380
+ parse_error = features.pop("parse_error", None)
381
+ features = {k: v for k, v in features.items() if v is not None}
382
+ if not features:
383
+ _set_parse_error(conn, repo, path, parse_error)
384
+ return
385
+ features["repo_full_name"] = repo
386
+ features["file_path"] = path
387
+ cols = ", ".join(features.keys())
388
+ placeholders = ", ".join("?" * len(features))
389
+ conn.execute(
390
+ f"INSERT OR REPLACE INTO {table} ({cols}) VALUES ({placeholders})",
391
+ list(features.values()),
392
+ )
393
+ _set_parse_error(conn, repo, path, parse_error)
394
+
395
+
396
+ # ── Per-artifact dispatch ─────────────────────────────────────────────────────
397
+
398
+ def _process_file(conn: sqlite3.Connection, session: GitHubSession,
399
+ owner: str, repo: str, repo_full: str,
400
+ entry: dict, artifact_type: str) -> None:
401
+ path = entry["path"]
402
+ sha = entry["sha"]
403
+ size = entry.get("size", 0)
404
+
405
+ if size > _MAX_FILE_BYTES:
406
+ log.debug("%s: %s too large (%d bytes), skipping", repo_full, path, size)
407
+ return
408
+
409
+ content = _fetch_blob(session, owner, repo, sha)
410
+ if content is None:
411
+ return
412
+
413
+ raw = content.encode("utf-8", errors="replace")
414
+ if not _confirm_with_content(artifact_type, raw):
415
+ return # path matched but content signals absent
416
+
417
+ _insert_file_record(conn, repo_full, path, artifact_type, sha, size)
418
+
419
+ try:
420
+ if artifact_type == "airflow_dag":
421
+ for dag_features in extract_airflow(content, path):
422
+ _insert_features(conn, "airflow_dag_features",
423
+ repo_full, path, dag_features)
424
+
425
+ elif artifact_type == "dbt_model":
426
+ f = extract_dbt_model(content, path)
427
+ _insert_features(conn, "dbt_model_features", repo_full, path, f)
428
+
429
+ elif artifact_type == "dbt_schema":
430
+ fname = Path(path).name.lower()
431
+ if fname in ("dbt_project.yml", "dbt_project.yaml"):
432
+ f = extract_dbt_project(content, path)
433
+ parse_error = f.pop("parse_error", None)
434
+ f = {k: v for k, v in f.items() if v is not None}
435
+ if f:
436
+ f["repo_full_name"] = repo_full
437
+ cols = ", ".join(f.keys())
438
+ placeholders = ", ".join("?" * len(f))
439
+ conn.execute(
440
+ f"INSERT OR REPLACE INTO dbt_project_summary "
441
+ f"({cols}) VALUES ({placeholders})",
442
+ list(f.values()),
443
+ )
444
+ _set_parse_error(conn, repo_full, path, parse_error)
445
+ else:
446
+ # schema.yml: per-model test coverage merged into model rows
447
+ coverage = extract_dbt_schema(content, path)
448
+ for model_name, has_tests in coverage.items():
449
+ updated = conn.execute(
450
+ """UPDATE dbt_model_features
451
+ SET has_tests = ?
452
+ WHERE repo_full_name = ? AND model_name = ?""",
453
+ (has_tests, repo_full, model_name),
454
+ ).rowcount
455
+ if updated == 0:
456
+ log.debug(
457
+ "%s schema.yml: no dbt_model_features row for model %s",
458
+ repo_full,
459
+ model_name,
460
+ )
461
+
462
+ elif artifact_type == "prefect_flow":
463
+ f = extract_prefect(content, path)
464
+ _insert_features(conn, "prefect_flow_features", repo_full, path, f)
465
+
466
+ elif artifact_type == "dagster":
467
+ f = extract_dagster(content, path)
468
+ _insert_features(conn, "dagster_features", repo_full, path, f)
469
+
470
+ elif artifact_type == "luigi":
471
+ f = extract_luigi(content, path)
472
+ _insert_features(conn, "luigi_task_features", repo_full, path, f)
473
+
474
+ elif artifact_type == "kedro":
475
+ fname = Path(path).name.lower()
476
+ if "catalog" in fname and fname.endswith((".yml", ".yaml")):
477
+ f = extract_kedro_catalog(content, path)
478
+ else:
479
+ f = extract_kedro(content, path)
480
+ _insert_features(conn, "kedro_pipeline_features", repo_full, path, f)
481
+
482
+ elif artifact_type == "beam":
483
+ f = extract_beam(content, path)
484
+ _insert_features(conn, "beam_pipeline_features", repo_full, path, f)
485
+
486
+ elif artifact_type == "dlt":
487
+ f = extract_dlt(content, path)
488
+ _insert_features(conn, "dlt_features", repo_full, path, f)
489
+
490
+ except Exception as exc: # noqa: BLE001
491
+ log.error("%s %s: feature extraction failed: %s", repo_full, path, exc)
492
+ _set_parse_error(conn, repo_full, path, str(exc))
493
+
494
+
495
+ # ── Main collection loop ──────────────────────────────────────────────────────
496
+
497
+ def collect_repo(conn: sqlite3.Connection, session: GitHubSession,
498
+ repo_full: str,
499
+ csv_exporter: PipelineCsvExporter | None = None,
500
+ *, progress_idx: int | None = None,
501
+ progress_total: int | None = None) -> None:
502
+ owner, repo = repo_full.split("/", 1)
503
+ if progress_idx is not None and progress_total is not None:
504
+ log.info("[%d/%d] Processing %s", progress_idx, progress_total, repo_full)
505
+ else:
506
+ log.info("Processing %s", repo_full)
507
+
508
+ blobs, tree_status = _fetch_tree(session, owner, repo)
509
+ if blobs is None:
510
+ _mark_repo_scanned(conn, repo_full, 0, tree_status)
511
+ conn.commit()
512
+ if csv_exporter is not None:
513
+ csv_exporter.sync_repo(conn, repo_full)
514
+ return
515
+
516
+ matched: list[tuple[dict, str]] = []
517
+ for entry in blobs:
518
+ atype = _classify_path(entry["path"])
519
+ if atype:
520
+ matched.append((entry, atype))
521
+
522
+ if len(matched) > _MAX_FILES_PER_REPO:
523
+ log.warning("%s: %d matched files, capping at %d",
524
+ repo_full, len(matched), _MAX_FILES_PER_REPO)
525
+ matched = matched[:_MAX_FILES_PER_REPO]
526
+
527
+ if progress_idx is not None and progress_total is not None:
528
+ log.info(" [%d/%d] %d pipeline artifact files found",
529
+ progress_idx, progress_total, len(matched))
530
+ else:
531
+ log.info(" %d pipeline artifact files found", len(matched))
532
+ for entry, atype in matched:
533
+ _process_file(conn, session, owner, repo, repo_full, entry, atype)
534
+
535
+ _mark_repo_scanned(conn, repo_full, len(matched), tree_status)
536
+ conn.commit()
537
+ if csv_exporter is not None:
538
+ csv_exporter.sync_repo(conn, repo_full)
539
+
540
+
541
+ def main() -> None:
542
+ ap = argparse.ArgumentParser(
543
+ description="Collect pipeline artifact features for DEPosit repositories."
544
+ )
545
+ ap.add_argument(
546
+ "--db",
547
+ default=str(DEFAULT_DB),
548
+ help=f"SQLite output database (default: {DEFAULT_DB.relative_to(ROOT_DIR)})",
549
+ )
550
+ add_github_token_args(ap)
551
+ ap.add_argument(
552
+ "--repos-csv",
553
+ default=str(DEFAULT_REPOS_CSV),
554
+ help=f"Repository cohort CSV with full_name column (default: {DEFAULT_REPOS_CSV.name})",
555
+ )
556
+ ap.add_argument(
557
+ "--repos",
558
+ nargs="*",
559
+ help="Optional subset of owner/repo names (must appear in --repos-csv unless given alone)",
560
+ )
561
+ ap.add_argument(
562
+ "--include-archived",
563
+ action="store_true",
564
+ help="Also process repositories marked archived or disabled in the CSV",
565
+ )
566
+ ap.add_argument(
567
+ "--fresh",
568
+ action="store_true",
569
+ help="Reprocess every repo from scratch (default: skip repos already in the DB).",
570
+ )
571
+ ap.add_argument("--workers", type=int, default=1,
572
+ help="Parallel worker threads (default 1; each uses its own API session).")
573
+ ap.add_argument(
574
+ "--csv-dir",
575
+ default=str(DEFAULT_CSV_DIR),
576
+ help=f"Directory for pipeline CSV exports (default: {DEFAULT_CSV_DIR.relative_to(ROOT_DIR)})",
577
+ )
578
+ ap.add_argument(
579
+ "--no-csv",
580
+ action="store_true",
581
+ help="Skip CSV export (SQLite only).",
582
+ )
583
+ args = ap.parse_args()
584
+
585
+ token = resolve_token(args.token, args.tokens)
586
+ if not token:
587
+ ap.error(
588
+ "GitHub token required: pass --token, set GITHUB_TOKEN_SE4DE, "
589
+ "or copy .env.example to .env"
590
+ )
591
+
592
+ db_path = Path(args.db)
593
+ csv_path = Path(args.repos_csv)
594
+
595
+ conn = _init_db(db_path)
596
+ repos = load_repos_from_csv(
597
+ csv_path,
598
+ subset=args.repos or None,
599
+ include_archived=args.include_archived,
600
+ )
601
+
602
+ if not repos:
603
+ ap.error(f"No repositories to process from {csv_path}")
604
+
605
+ csv_exporter = None
606
+ if not args.no_csv:
607
+ csv_exporter = PipelineCsvExporter(Path(args.csv_dir))
608
+ if args.fresh:
609
+ csv_exporter.reset_all()
610
+ log.info("CSV export: %s (cleared for --fresh)", args.csv_dir)
611
+ else:
612
+ log.info("CSV export: %s (synced per repo)", args.csv_dir)
613
+
614
+ log.info("Repository list: %s (%d repos)", csv_path, len(repos))
615
+ log.info("Output database: %s", db_path)
616
+ total = len(repos)
617
+ log.info("Total repos in queue: %d", total)
618
+
619
+ if args.workers > 1:
620
+ from concurrent.futures import ThreadPoolExecutor
621
+
622
+ def _worker(item: tuple[int, str]) -> None:
623
+ idx, repo = item
624
+ c = sqlite3.connect(str(db_path))
625
+ c.row_factory = sqlite3.Row
626
+ c.execute("PRAGMA journal_mode=WAL")
627
+ if not args.fresh and _already_processed(c, repo):
628
+ log.info("[%d/%d] Skipping %s (already processed)", idx, total, repo)
629
+ c.close()
630
+ return
631
+ session = GitHubSession(token)
632
+ try:
633
+ collect_repo(
634
+ c, session, repo, csv_exporter,
635
+ progress_idx=idx, progress_total=total,
636
+ )
637
+ except requests.RequestException as exc:
638
+ log.error("[%d/%d] %s: network/API error (retry on next run): %s",
639
+ idx, total, repo, exc)
640
+ finally:
641
+ c.close()
642
+
643
+ work_items = list(enumerate(repos, 1))
644
+ with ThreadPoolExecutor(max_workers=args.workers) as pool:
645
+ pool.map(_worker, work_items)
646
+ else:
647
+ session = GitHubSession(token)
648
+ for idx, repo in enumerate(repos, 1):
649
+ if not args.fresh and _already_processed(conn, repo):
650
+ log.info("[%d/%d] Skipping %s (already processed)", idx, total, repo)
651
+ continue
652
+ try:
653
+ collect_repo(
654
+ conn, session, repo, csv_exporter,
655
+ progress_idx=idx, progress_total=total,
656
+ )
657
+ except requests.RequestException as exc:
658
+ log.error("[%d/%d] %s: network/API error (retry on next run): %s",
659
+ idx, total, repo, exc)
660
+ conn.rollback()
661
+
662
+ conn.close()
663
+ log.info("Done.")
664
+
665
+
666
+ if __name__ == "__main__":
667
+ main()
Scripts/compute_interactions_for_SE4DE_repos.py ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ compute_interactions_for_SE4DE_repos.py
3
+ -----------------------------------------
4
+ Computes the five interaction types from Table 4 of Das et al. (EASE 2022)
5
+ per repo, broken down by artifact type (commits / issues / pull_requests).
6
+
7
+ Interaction types:
8
+ Contribution — author != committer on a commit
9
+ Maintenance — non-creator merged/closed an artifact
10
+ Process — creator interacted with a maintainer (proxy: artifact
11
+ closed/merged by someone else)
12
+ Review — commenter != creator (proxy: review events + inline comments)
13
+ Discussion — two non-creators commented on the same artifact (proxy:
14
+ review activity on PRs with >1 distinct reviewer)
15
+
16
+ Lookup dicts are built from the smaller files (pr_reviews, issue_closers).
17
+ The larger files (commits, prs, issues) are streamed one row at a time.
18
+
19
+ Reads:
20
+ ../Data/DE_all_commits_details.csv
21
+ ../Data/DE_all_pr_details.csv
22
+ ../Data/DE_all_pr_reviews_graphql.csv
23
+ ../Data/DE_all_issue_details.csv
24
+ ../Data/DE_all_issue_closers.csv
25
+
26
+ Writes:
27
+ ../Data/DE_repo_interactions.csv
28
+ """
29
+
30
+ import csv
31
+ import sys
32
+ from collections import defaultdict
33
+
34
+
35
+ def set_csv_field_size_limit():
36
+ csv.field_size_limit(min(sys.maxsize, 10**7))
37
+
38
+
39
+ def count_data_rows(csv_path):
40
+ """Count logical CSV records, not physical newlines."""
41
+ set_csv_field_size_limit()
42
+ with open(csv_path, 'r', encoding='utf-8', newline='') as f:
43
+ return sum(1 for _ in csv.reader(f)) - 1
44
+
45
+
46
+ def load_merger_lookup(pr_reviews_csv):
47
+ """
48
+ Build (full_name, pr_number) -> (merger_login, num_reviewers,
49
+ num_review_events) from pr_reviews. Loaded fully — smaller file.
50
+ """
51
+ set_csv_field_size_limit()
52
+ lookup = {}
53
+ with open(pr_reviews_csv, newline='', encoding='utf-8') as f:
54
+ for row in csv.DictReader(f):
55
+ full_name = row['full_name'].strip()
56
+ try:
57
+ pr_number = int(row['pr_number'])
58
+ except (ValueError, KeyError):
59
+ continue
60
+ try:
61
+ num_reviewers = int(row.get('num_reviewers', 0) or 0)
62
+ num_review_events = int(row.get('num_review_events', 0) or 0)
63
+ except ValueError:
64
+ num_reviewers, num_review_events = 0, 0
65
+ lookup[(full_name, pr_number)] = (
66
+ row.get('merger_login', '').strip(),
67
+ num_reviewers,
68
+ num_review_events,
69
+ )
70
+ return lookup
71
+
72
+
73
+ def load_closer_lookup(issue_closers_csv):
74
+ """
75
+ Build (full_name, issue_number) -> (opener_login, closer_login).
76
+ Loaded fully — lightweight columns.
77
+ """
78
+ set_csv_field_size_limit()
79
+ lookup = {}
80
+ with open(issue_closers_csv, newline='', encoding='utf-8') as f:
81
+ for row in csv.DictReader(f):
82
+ full_name = row['full_name'].strip()
83
+ try:
84
+ issue_number = int(row['issue_number'])
85
+ except (ValueError, KeyError):
86
+ continue
87
+ lookup[(full_name, issue_number)] = (
88
+ row.get('opener_login', '').strip(),
89
+ row.get('closer_login', '').strip(),
90
+ )
91
+ return lookup
92
+
93
+
94
+ def iter_csv(csv_path):
95
+ """Stream rows from a CSV file one at a time."""
96
+ set_csv_field_size_limit()
97
+ with open(csv_path, newline='', encoding='utf-8') as f:
98
+ yield from csv.DictReader(f)
99
+
100
+
101
+ if __name__ == '__main__':
102
+ commits_csv = '../Data/DE_all_commits_details.csv'
103
+ prs_csv = '../Data/DE_all_pr_details.csv'
104
+ pr_reviews_csv = '../Data/DE_all_pr_reviews_graphql.csv'
105
+ issues_csv = '../Data/DE_all_issue_details.csv'
106
+ closers_csv = '../Data/DE_all_issue_closers.csv'
107
+ output_csv = '../Data/DE_repo_interactions.csv'
108
+
109
+ print('Building merger lookup from pr_reviews ...')
110
+ merger_lookup = load_merger_lookup(pr_reviews_csv)
111
+ print(f' {len(merger_lookup):,} PR merger entries loaded.')
112
+
113
+ print('Building closer lookup from issue_closers ...')
114
+ closer_lookup = load_closer_lookup(closers_csv)
115
+ print(f' {len(closer_lookup):,} issue closer entries loaded.')
116
+
117
+ # counts[full_name][interaction_type] = int
118
+ counts = defaultdict(lambda: defaultdict(int))
119
+
120
+ # ------------------------------------------------------------------ Commits
121
+ print('Counting rows in commits file...')
122
+ total_commits = count_data_rows(commits_csv)
123
+ print(f' Streaming {total_commits:,} commit rows ...')
124
+
125
+ for idx, row in enumerate(iter_csv(commits_csv), 1):
126
+ if idx % 100_000 == 0:
127
+ print(f' {idx:,}/{total_commits:,} commits processed ...')
128
+
129
+ full_name = row.get('full_name', '').strip()
130
+ author = row.get('author_login', '').strip()
131
+ committer = row.get('committer_login', '').strip()
132
+
133
+ # Contribution: someone other than author committed the work
134
+ if author and committer and author != committer:
135
+ counts[full_name]['contribution_commits'] += 1
136
+
137
+ # ------------------------------------------------------------------ PRs
138
+ print('Counting rows in pr_details file...')
139
+ total_prs = count_data_rows(prs_csv)
140
+ print(f' Streaming {total_prs:,} PR rows ...')
141
+
142
+ for idx, row in enumerate(iter_csv(prs_csv), 1):
143
+ if idx % 100_000 == 0:
144
+ print(f' {idx:,}/{total_prs:,} PRs processed ...')
145
+
146
+ full_name = row.get('full_name', '').strip()
147
+ try:
148
+ pr_number = int(row.get('pr_number', ''))
149
+ except ValueError:
150
+ continue
151
+ author = row.get('user_login', '').strip()
152
+ merged_at = row.get('merged_at', '').strip()
153
+ is_merged = bool(merged_at)
154
+
155
+ merger, num_reviewers, num_review_events = \
156
+ merger_lookup.get((full_name, pr_number), ('', 0, 0))
157
+
158
+ if is_merged and merger and author and merger != author:
159
+ # Maintenance: non-author merged the PR
160
+ counts[full_name]['maintenance_prs'] += 1
161
+ # Process: author interacted with the maintainer who merged it
162
+ counts[full_name]['process_prs'] += 1
163
+
164
+ # Review: any review activity on the PR
165
+ counts[full_name]['review_prs'] += num_review_events
166
+
167
+ # Discussion: review activity when >1 distinct reviewer
168
+ if num_reviewers >= 2:
169
+ counts[full_name]['discussion_prs'] += num_review_events
170
+
171
+ # ------------------------------------------------------------------ Issues
172
+ print('Counting rows in issue_details file...')
173
+ total_issues = count_data_rows(issues_csv)
174
+ print(f' Streaming {total_issues:,} issue rows ...')
175
+
176
+ for idx, row in enumerate(iter_csv(issues_csv), 1):
177
+ if idx % 100_000 == 0:
178
+ print(f' {idx:,}/{total_issues:,} issues processed ...')
179
+
180
+ full_name = row.get('full_name', '').strip()
181
+ try:
182
+ issue_number = int(row.get('issue_number', ''))
183
+ except ValueError:
184
+ continue
185
+ opener = row.get('user_login', '').strip()
186
+ state = row.get('state', '').strip()
187
+ try:
188
+ comment_count = int(row.get('comments', 0) or 0)
189
+ except ValueError:
190
+ comment_count = 0
191
+
192
+ _, closer = closer_lookup.get((full_name, issue_number), ('', ''))
193
+
194
+ if state == 'closed' and closer and opener and closer != opener:
195
+ # Maintenance: non-creator closed the issue
196
+ counts[full_name]['maintenance_issues'] += 1
197
+ # Process: creator interacted with the maintainer who closed it
198
+ counts[full_name]['process_issues'] += 1
199
+
200
+ # Review proxy: total comments on issues
201
+ counts[full_name]['review_issues'] += comment_count
202
+
203
+ # Discussion proxy: comments on issues involving a non-creator
204
+ if closer and closer != opener and comment_count > 0:
205
+ counts[full_name]['discussion_issues'] += comment_count
206
+
207
+ # ------------------------------------------------------------------ Write
208
+ all_repos = set(counts.keys())
209
+ print(f'Writing {len(all_repos):,} repo records to {output_csv} ...')
210
+
211
+ fieldnames = [
212
+ 'full_name',
213
+ 'contribution_commits',
214
+ 'maintenance_issues', 'process_issues', 'review_issues', 'discussion_issues',
215
+ 'maintenance_prs', 'process_prs', 'review_prs', 'discussion_prs',
216
+ ]
217
+
218
+ with open(output_csv, 'w', newline='', encoding='utf-8') as outfile:
219
+ writer = csv.DictWriter(outfile, fieldnames=fieldnames)
220
+ writer.writeheader()
221
+ for fn in sorted(all_repos):
222
+ c = counts[fn]
223
+ writer.writerow({
224
+ 'full_name': fn,
225
+ 'contribution_commits': c['contribution_commits'],
226
+ 'maintenance_issues': c['maintenance_issues'],
227
+ 'process_issues': c['process_issues'],
228
+ 'review_issues': c['review_issues'],
229
+ 'discussion_issues': c['discussion_issues'],
230
+ 'maintenance_prs': c['maintenance_prs'],
231
+ 'process_prs': c['process_prs'],
232
+ 'review_prs': c['review_prs'],
233
+ 'discussion_prs': c['discussion_prs'],
234
+ })
235
+
236
+ print(f'Done. Output: {output_csv}')
Scripts/compute_user_autonomy_for_SE4DE_repos.py ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ compute_user_autonomy_for_SE4DE_repos.py
3
+ -----------------------------------------
4
+ Classifies each (full_name, user_login) pair as:
5
+ Maintainer — merged/closed at least one artifact opened by another user
6
+ Autonomous — self-committed majority of commits AND/OR self-merged majority of PRs
7
+ Dependent — others committed/merged majority of their work
8
+
9
+ Mirrors Table 5 of Das et al. (EASE 2022).
10
+
11
+ Lookup dicts are built from the smaller files (pr_reviews, issue_closers).
12
+ The larger files (commits, prs, issues) are streamed one row at a time.
13
+
14
+ Reads:
15
+ ../Data/DE_all_commits_details.csv
16
+ ../Data/DE_all_pr_details.csv
17
+ ../Data/DE_all_pr_reviews_graphql.csv
18
+ ../Data/DE_all_issue_details.csv
19
+ ../Data/DE_all_issue_closers.csv
20
+
21
+ Writes:
22
+ ../Data/DE_user_autonomy.csv
23
+ """
24
+
25
+ import csv
26
+ import sys
27
+ from collections import defaultdict
28
+
29
+ MAJORITY = 0.5
30
+
31
+
32
+ def set_csv_field_size_limit():
33
+ csv.field_size_limit(min(sys.maxsize, 10**7))
34
+
35
+
36
+ def count_data_rows(csv_path):
37
+ """Count logical CSV records, not physical newlines."""
38
+ set_csv_field_size_limit()
39
+ with open(csv_path, 'r', encoding='utf-8', newline='') as f:
40
+ return sum(1 for _ in csv.reader(f)) - 1
41
+
42
+
43
+ def load_merger_lookup(pr_reviews_csv):
44
+ """
45
+ Build (full_name, pr_number) -> merger_login from pr_reviews.
46
+ Loaded fully — smaller than the main PR file.
47
+ """
48
+ set_csv_field_size_limit()
49
+ lookup = {}
50
+ with open(pr_reviews_csv, newline='', encoding='utf-8') as f:
51
+ for row in csv.DictReader(f):
52
+ full_name = row['full_name'].strip()
53
+ try:
54
+ pr_number = int(row['pr_number'])
55
+ except (ValueError, KeyError):
56
+ continue
57
+ lookup[(full_name, pr_number)] = row.get('merger_login', '').strip()
58
+ return lookup
59
+
60
+
61
+ def load_closer_lookup(issue_closers_csv):
62
+ """
63
+ Build (full_name, issue_number) -> (opener_login, closer_login) from issue_closers.
64
+ Loaded fully — same row count as issues but lightweight columns.
65
+ """
66
+ set_csv_field_size_limit()
67
+ lookup = {}
68
+ with open(issue_closers_csv, newline='', encoding='utf-8') as f:
69
+ for row in csv.DictReader(f):
70
+ full_name = row['full_name'].strip()
71
+ try:
72
+ issue_number = int(row['issue_number'])
73
+ except (ValueError, KeyError):
74
+ continue
75
+ lookup[(full_name, issue_number)] = (
76
+ row.get('opener_login', '').strip(),
77
+ row.get('closer_login', '').strip(),
78
+ )
79
+ return lookup
80
+
81
+
82
+ def iter_csv(csv_path):
83
+ """Stream rows from a CSV file one at a time."""
84
+ set_csv_field_size_limit()
85
+ with open(csv_path, newline='', encoding='utf-8') as f:
86
+ yield from csv.DictReader(f)
87
+
88
+
89
+ def classify_user(s):
90
+ """
91
+ s: defaultdict(int) of stats for one (full_name, user_login) pair.
92
+
93
+ Maintainer: closed/merged at least one artifact created by someone else.
94
+ Autonomous: self-committed majority of own commits AND/OR
95
+ self-merged majority of own PRs.
96
+ Dependent: others committed/merged majority of their work.
97
+ Unknown: no meaningful activity recorded.
98
+ """
99
+ maintainer_actions = (
100
+ s['prs_merged_by_user']
101
+ + s['issues_closed_by_user']
102
+ + s['commits_committed_others']
103
+ )
104
+ if maintainer_actions > 0:
105
+ return 'Maintainer'
106
+
107
+ commits_authored = s['commits_authored']
108
+ commits_self = s['commits_self_committed']
109
+ prs_opened = s['prs_opened']
110
+ prs_self_merged = s['prs_self_merged']
111
+
112
+ commit_auto = commits_authored > 0 and (commits_self / commits_authored) > MAJORITY
113
+ pr_auto = prs_opened > 0 and (prs_self_merged / prs_opened) > MAJORITY
114
+
115
+ if commit_auto or pr_auto:
116
+ return 'Autonomous'
117
+ if commits_authored > 0 or prs_opened > 0:
118
+ return 'Dependent'
119
+ return 'Unknown'
120
+
121
+
122
+ if __name__ == '__main__':
123
+ commits_csv = '../Data/DE_all_commits_details.csv'
124
+ prs_csv = '../Data/DE_all_pr_details.csv'
125
+ pr_reviews_csv = '../Data/DE_all_pr_reviews_graphql.csv'
126
+ issues_csv = '../Data/DE_all_issue_details.csv'
127
+ closers_csv = '../Data/DE_all_issue_closers.csv'
128
+ output_csv = '../Data/DE_user_autonomy.csv'
129
+
130
+ print('Building merger lookup from pr_reviews ...')
131
+ merger_lookup = load_merger_lookup(pr_reviews_csv)
132
+ print(f' {len(merger_lookup):,} PR merger entries loaded.')
133
+
134
+ print('Building closer lookup from issue_closers ...')
135
+ closer_lookup = load_closer_lookup(closers_csv)
136
+ print(f' {len(closer_lookup):,} issue closer entries loaded.')
137
+
138
+ # stats[(full_name, user_login)] = defaultdict(int)
139
+ stats = defaultdict(lambda: defaultdict(int))
140
+
141
+ # ------------------------------------------------------------------ Commits
142
+ print('Counting rows in commits file...')
143
+ total_commits = count_data_rows(commits_csv)
144
+ print(f' Streaming {total_commits:,} commit rows ...')
145
+
146
+ for idx, row in enumerate(iter_csv(commits_csv), 1):
147
+ if idx % 100_000 == 0:
148
+ print(f' {idx:,}/{total_commits:,} commits processed ...')
149
+
150
+ full_name = row.get('full_name', '').strip()
151
+ author = row.get('author_login', '').strip()
152
+ committer = row.get('committer_login', '').strip()
153
+
154
+ if author:
155
+ stats[(full_name, author)]['commits_authored'] += 1
156
+ if author == committer:
157
+ stats[(full_name, author)]['commits_self_committed'] += 1
158
+ if committer and committer != author and author:
159
+ stats[(full_name, committer)]['commits_committed_others'] += 1
160
+
161
+ # ------------------------------------------------------------------ PRs
162
+ print('Counting rows in pr_details file...')
163
+ total_prs = count_data_rows(prs_csv)
164
+ print(f' Streaming {total_prs:,} PR rows ...')
165
+
166
+ for idx, row in enumerate(iter_csv(prs_csv), 1):
167
+ if idx % 100_000 == 0:
168
+ print(f' {idx:,}/{total_prs:,} PRs processed ...')
169
+
170
+ full_name = row.get('full_name', '').strip()
171
+ try:
172
+ pr_number = int(row.get('pr_number', ''))
173
+ except ValueError:
174
+ continue
175
+ author = row.get('user_login', '').strip()
176
+ merged_at = row.get('merged_at', '').strip()
177
+ is_merged = bool(merged_at)
178
+
179
+ merger = merger_lookup.get((full_name, pr_number), '')
180
+
181
+ if author:
182
+ stats[(full_name, author)]['prs_opened'] += 1
183
+ if is_merged and merger == author:
184
+ stats[(full_name, author)]['prs_self_merged'] += 1
185
+ if merger and is_merged and merger != author:
186
+ stats[(full_name, merger)]['prs_merged_by_user'] += 1
187
+
188
+ # ------------------------------------------------------------------ Issues
189
+ print('Counting rows in issue_details file...')
190
+ total_issues = count_data_rows(issues_csv)
191
+ print(f' Streaming {total_issues:,} issue rows ...')
192
+
193
+ for idx, row in enumerate(iter_csv(issues_csv), 1):
194
+ if idx % 100_000 == 0:
195
+ print(f' {idx:,}/{total_issues:,} issues processed ...')
196
+
197
+ full_name = row.get('full_name', '').strip()
198
+ try:
199
+ issue_number = int(row.get('issue_number', ''))
200
+ except ValueError:
201
+ continue
202
+ opener = row.get('user_login', '').strip()
203
+ state = row.get('state', '').strip()
204
+
205
+ if opener:
206
+ stats[(full_name, opener)]['issues_opened'] += 1
207
+
208
+ if state == 'closed':
209
+ _, closer = closer_lookup.get((full_name, issue_number), ('', ''))
210
+ if closer and closer != opener:
211
+ stats[(full_name, closer)]['issues_closed_by_user'] += 1
212
+
213
+ # ------------------------------------------------------------------ Write
214
+ print(f'Writing {len(stats):,} user-repo records to {output_csv} ...')
215
+
216
+ fieldnames = [
217
+ 'full_name', 'user_login',
218
+ 'commits_authored', 'commits_self_committed',
219
+ 'prs_opened', 'prs_self_merged',
220
+ 'prs_merged_by_user',
221
+ 'issues_opened', 'issues_closed_by_user',
222
+ 'commits_committed_others',
223
+ 'autonomy_class',
224
+ ]
225
+
226
+ with open(output_csv, 'w', newline='', encoding='utf-8') as outfile:
227
+ writer = csv.DictWriter(outfile, fieldnames=fieldnames)
228
+ writer.writeheader()
229
+ for (full_name, user_login), s in sorted(stats.items()):
230
+ writer.writerow({
231
+ 'full_name': full_name,
232
+ 'user_login': user_login,
233
+ 'commits_authored': s['commits_authored'],
234
+ 'commits_self_committed': s['commits_self_committed'],
235
+ 'prs_opened': s['prs_opened'],
236
+ 'prs_self_merged': s['prs_self_merged'],
237
+ 'prs_merged_by_user': s['prs_merged_by_user'],
238
+ 'issues_opened': s['issues_opened'],
239
+ 'issues_closed_by_user': s['issues_closed_by_user'],
240
+ 'commits_committed_others': s['commits_committed_others'],
241
+ 'autonomy_class': classify_user(s),
242
+ })
243
+
244
+ print(f'Done. Output: {output_csv}')
Scripts/get_gha_workflow_runs_for_SE4DE_repos.py ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import time
3
+ from pathlib import Path
4
+
5
+ import pandas as pd
6
+ import requests
7
+
8
+ from github_tokens import add_github_token_args, primary_token
9
+
10
+ SCRIPT_DIR = Path(__file__).resolve().parent
11
+ DATA_DIR = SCRIPT_DIR.parent / "Data"
12
+ OUTPUT_FILE = DATA_DIR / "DE_repo_gha_runs_counts.csv"
13
+ COHORT_CSV = DATA_DIR / "filtered_DE_repositories.csv"
14
+
15
+
16
+ def count_gha_runs(owner: str, repo: str, token: str) -> int | None:
17
+ headers = {"Authorization": f"Bearer {token}"}
18
+ url = f"https://api.github.com/repos/{owner}/{repo}/actions/runs"
19
+ params = {"per_page": 1}
20
+ try:
21
+ response = requests.get(url, headers=headers, params=params, timeout=30)
22
+ if response.status_code != 200:
23
+ return None
24
+ return response.json().get("total_count", 0)
25
+ except requests.RequestException as exc:
26
+ print(f"Error for {owner}/{repo}: {exc}")
27
+ return None
28
+
29
+
30
+ def main() -> None:
31
+ ap = argparse.ArgumentParser(description="Count GitHub Actions runs per repository.")
32
+ add_github_token_args(ap)
33
+ args = ap.parse_args()
34
+ token = primary_token(args.token, args.tokens)
35
+
36
+ df = pd.read_csv(COHORT_CSV)
37
+ processed: set[str] = set()
38
+ if OUTPUT_FILE.is_file():
39
+ processed = set(pd.read_csv(OUTPUT_FILE)["full_name"])
40
+
41
+ for idx, row in df.iterrows():
42
+ repo_name = row["full_name"]
43
+ if repo_name in processed:
44
+ print(f"[{idx + 1}/{len(df)}] Skipping {repo_name}")
45
+ continue
46
+
47
+ owner, repo = repo_name.split("/", 1)
48
+ gha_count = count_gha_runs(owner, repo, token)
49
+ print(f"[{idx + 1}/{len(df)}] {repo_name} GHA: {gha_count}")
50
+
51
+ result = pd.DataFrame(
52
+ [{"full_name": repo_name, "gha_run_count": gha_count, "travis_build_count": None}]
53
+ )
54
+ result.to_csv(
55
+ OUTPUT_FILE,
56
+ mode="a",
57
+ header=not OUTPUT_FILE.exists(),
58
+ index=False,
59
+ )
60
+ time.sleep(1)
61
+
62
+ print("Done!")
63
+
64
+
65
+ if __name__ == "__main__":
66
+ main()
Scripts/get_issue_closers_for_SE4DE_repos.py ADDED
@@ -0,0 +1,229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ get_issue_closers_for_SE4DE_repos.py
3
+ --------------------------------------
4
+ For each closed issue in DE_all_issue_details.csv, fetches the login
5
+ of whoever fired the 'closed' event by paginating issue timeline events.
6
+
7
+ Needed to distinguish self-closed vs. closed-by-another for the
8
+ maintenance/process interaction types and autonomy classification.
9
+
10
+ No batching possible via REST (one API call per issue event page),
11
+ so issues are processed one at a time with the same streaming/resume
12
+ pattern as get_pr_reviews_graphql_for_SE4DE_repos.py.
13
+
14
+ Reads: ../Data/DE_all_issue_details.csv
15
+ Writes: ../Data/DE_all_issue_closers.csv
16
+ """
17
+
18
+ import os
19
+ import csv
20
+ import sys
21
+ import time
22
+ import requests
23
+
24
+ GITHUB_REST_URL = 'https://api.github.com'
25
+
26
+ from github_tokens import init_rest_client_auth
27
+
28
+ tokens: list[str] = []
29
+ authorization_headers: list[dict[str, str]] = []
30
+
31
+
32
+ def _ensure_auth() -> None:
33
+ global tokens, authorization_headers
34
+ if not tokens:
35
+ tokens, authorization_headers = init_rest_client_auth()
36
+
37
+ token_index = 0 # current position in round-robin
38
+ rate_limit_reset = {} # token_index -> unix timestamp when it becomes available again
39
+
40
+
41
+ def get_next_token():
42
+ """
43
+ Round-robin through tokens, skipping any that are currently rate-limited.
44
+ If all tokens are rate-limited, sleeps until the earliest one resets.
45
+ """
46
+ global token_index
47
+ _ensure_auth()
48
+ n = len(authorization_headers)
49
+
50
+ while True:
51
+ now = time.time()
52
+
53
+ # Try each token starting from current position, wrapping around
54
+ for offset in range(n):
55
+ idx = (token_index + offset) % n
56
+ reset_at = rate_limit_reset.get(idx, 0)
57
+ if now >= reset_at:
58
+ token_index = (idx + 1) % n # next call starts after this one
59
+ return idx
60
+
61
+ # All tokens are rate-limited — sleep until the earliest reset
62
+ earliest_reset = min(rate_limit_reset.values())
63
+ wait = max(earliest_reset - now, 1)
64
+ print(f' -- All tokens rate-limited. Sleeping {wait:.0f}s ...')
65
+ time.sleep(wait)
66
+
67
+
68
+ def makeRequest(api_url, params):
69
+ num_tries = 0
70
+ max_tries = 5
71
+
72
+ while True:
73
+ num_tries += 1
74
+ if num_tries > max_tries:
75
+ print(' -- Max retries reached. Exiting...')
76
+ return None
77
+
78
+ idx = get_next_token()
79
+ headers = authorization_headers[idx]
80
+
81
+ try:
82
+ response = requests.get(api_url, headers=headers, params=params, timeout=30)
83
+ except requests.exceptions.RequestException as e:
84
+ print(f' -- Request error: {e}. Retrying in 60 seconds...')
85
+ time.sleep(60)
86
+ continue
87
+
88
+ if response.status_code == 200:
89
+ return response.json()
90
+ elif response.status_code == 403 and 'rate limit' in response.text.lower():
91
+ reset_at = int(response.headers.get('X-RateLimit-Reset', time.time() + 60))
92
+ rate_limit_reset[idx] = reset_at
93
+ print(f' -- Token [{idx}] rate-limited. Resets at {reset_at}. Trying next token ...')
94
+ continue
95
+ elif response.status_code in {401, 404, 422}:
96
+ return None
97
+ else:
98
+ print(f' -- Status code {response.status_code}. Retrying... {api_url}')
99
+ time.sleep(1)
100
+
101
+
102
+ def get_issue_closer(full_name, issue_number):
103
+ """
104
+ Paginate issue events to find the login of whoever fired the last
105
+ 'closed' event. Returns '' if not found.
106
+ Takes the *last* closed event to handle issues reopened and closed
107
+ multiple times.
108
+ """
109
+ url = f'{GITHUB_REST_URL}/repos/{full_name}/issues/{issue_number}/events'
110
+ closer = ''
111
+ page = 1
112
+
113
+ while True:
114
+ data = makeRequest(url, {'per_page': 100, 'page': page})
115
+ if not data:
116
+ break
117
+ for event in data:
118
+ if event.get('event') == 'closed':
119
+ actor = event.get('actor') or {}
120
+ closer = actor.get('login') or ''
121
+ if len(data) < 100:
122
+ break
123
+ page += 1
124
+
125
+ return closer
126
+
127
+
128
+ def count_data_rows(csv_path):
129
+ """Count logical CSV records, not physical newlines."""
130
+ csv.field_size_limit(min(sys.maxsize, 10**7))
131
+ with open(csv_path, 'r', encoding='utf-8', newline='') as f:
132
+ return sum(1 for _ in csv.reader(f)) - 1
133
+
134
+
135
+ def iter_issues(input_csv, processed):
136
+ """
137
+ Yield (full_name, issue_number, opener_login, state) for unprocessed rows.
138
+ Streams the file — never loads it fully into memory.
139
+ """
140
+ csv.field_size_limit(min(sys.maxsize, 10**7))
141
+ with open(input_csv, newline='', encoding='utf-8') as f:
142
+ for row in csv.DictReader(f):
143
+ full_name = row['full_name'].strip()
144
+ try:
145
+ issue_number = int(row['issue_number'])
146
+ except (ValueError, KeyError):
147
+ continue
148
+ if (full_name, issue_number) in processed:
149
+ continue
150
+ opener = row.get('user_login', '').strip()
151
+ state = row.get('state', '').strip()
152
+ yield full_name, issue_number, opener, state
153
+
154
+
155
+ def process_issue(full_name, issue_number, opener, state, writer):
156
+ """
157
+ Fetch closer for one closed issue and write the result row.
158
+ Open issues are written immediately with empty closer fields.
159
+ """
160
+ if state != 'closed':
161
+ writer.writerow({
162
+ 'full_name': full_name,
163
+ 'issue_number': issue_number,
164
+ 'opener_login': opener,
165
+ 'closer_login': '',
166
+ 'self_closed': '',
167
+ })
168
+ return
169
+
170
+ closer = get_issue_closer(full_name, issue_number)
171
+ self_closed = (opener == closer) if closer else ''
172
+
173
+ writer.writerow({
174
+ 'full_name': full_name,
175
+ 'issue_number': issue_number,
176
+ 'opener_login': opener,
177
+ 'closer_login': closer,
178
+ 'self_closed': self_closed,
179
+ })
180
+ print(f' -- opener={opener}, closer={closer}, self_closed={self_closed}')
181
+
182
+
183
+ if __name__ == '__main__':
184
+ input_csv = '../Data/DE_all_issue_details.csv'
185
+ output_csv = '../Data/DE_all_issue_closers.csv'
186
+
187
+ # Load already-processed (full_name, issue_number) pairs for resume support.
188
+ # Uses a manual line-by-line reader so a corrupted last line (from a crash)
189
+ # does not wipe out all the valid rows that came before it.
190
+ processed = set()
191
+ try:
192
+ csv.field_size_limit(min(sys.maxsize, 10**7))
193
+ with open(output_csv, 'r', encoding='utf-8', newline='') as f:
194
+ reader = csv.DictReader(f)
195
+ for row in reader:
196
+ try:
197
+ processed.add((row['full_name'].strip(), int(row['issue_number'])))
198
+ except (ValueError, KeyError, csv.Error):
199
+ pass # skip any malformed row, including a corrupted last line
200
+ except (FileNotFoundError, csv.Error):
201
+ pass
202
+
203
+ print('Counting rows in input file (logical CSV records)...')
204
+ total_in_file = count_data_rows(input_csv)
205
+ print(f'Found {total_in_file:,} issues in input file.')
206
+
207
+ print('Counting issues still to fetch...')
208
+ to_fetch = sum(1 for _ in iter_issues(input_csv, processed))
209
+ print(f'{to_fetch:,} issues to process ({len(processed):,} already done).')
210
+
211
+ output_exists = os.path.exists(output_csv)
212
+ fieldnames = ['full_name', 'issue_number', 'opener_login', 'closer_login', 'self_closed']
213
+
214
+ with open(output_csv, 'a', newline='', encoding='utf-8') as outfile:
215
+ writer = csv.DictWriter(outfile, fieldnames=fieldnames)
216
+ if not output_exists:
217
+ writer.writeheader()
218
+
219
+ for idx, (full_name, issue_number, opener, state) in \
220
+ enumerate(iter_issues(input_csv, processed), 1):
221
+
222
+ print(f' ({idx}/{to_fetch}) {full_name} Issue#{issue_number} [{state}] ...')
223
+ process_issue(full_name, issue_number, opener, state, writer)
224
+ outfile.flush()
225
+
226
+ if state == 'closed':
227
+ time.sleep(0.3)
228
+
229
+ print(f'Done. Output: {output_csv}')
Scripts/get_pr_reviews_graphql_for_SE4DE_repos.py ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ get_pr_reviews_graphql_for_SE4DE_repos.py
3
+ -------------------------------------------
4
+ Fallback for PRs not covered by GH Archive (e.g. private period gaps).
5
+ Fetches merger_login and review info via GraphQL, batching up to 10 PRs
6
+ per query using aliases — reducing ~1.8M REST calls to ~60k GraphQL calls.
7
+
8
+ GraphQL rate limit: 5000 points/hr per token (each query costs ~10-50 points
9
+ depending on response size). With multiple tokens this is feasible.
10
+
11
+ Reads: ../Data/DE_all_pr_details.csv
12
+ Writes: ../Data/DE_all_pr_reviews_graphql.csv
13
+ """
14
+
15
+ import os
16
+ import csv
17
+ import sys
18
+ import time
19
+ import requests
20
+
21
+ GITHUB_GRAPHQL_URL = 'https://api.github.com/graphql'
22
+ BATCH_SIZE = 10 # PRs per GraphQL query; keep low to stay under complexity limit
23
+
24
+ from github_tokens import init_rest_client_auth
25
+
26
+ tokens: list[str] = []
27
+ authorization_headers: list[dict[str, str]] = []
28
+ token_index = 0
29
+ last_request_time = {}
30
+
31
+
32
+ def _ensure_auth() -> None:
33
+ global tokens, authorization_headers
34
+ if not tokens:
35
+ tokens, authorization_headers = init_rest_client_auth()
36
+
37
+
38
+ def make_graphql_request(query, variables=None):
39
+ """GraphQL POST with same token-rotation logic as existing scripts."""
40
+ global token_index
41
+ _ensure_auth()
42
+ num_tries = 0
43
+ max_tries = 5
44
+
45
+ while True:
46
+ num_tries += 1
47
+ if num_tries > max_tries:
48
+ print(' -- Max retries reached.')
49
+ return None
50
+
51
+ current_time = time.time()
52
+ available_token = None
53
+ for i in range(len(tokens)):
54
+ if i not in last_request_time or (current_time - last_request_time[i] >= 1):
55
+ available_token = i
56
+ break
57
+
58
+ if available_token is None:
59
+ min_wait = min(last_request_time.values()) + 1 - current_time
60
+ time.sleep(max(min_wait, 1))
61
+ continue
62
+
63
+ token_index = available_token
64
+ last_request_time[token_index] = time.time()
65
+
66
+ headers = {
67
+ 'Authorization': f'Bearer {tokens[token_index]}',
68
+ 'Content-Type': 'application/json',
69
+ }
70
+
71
+ try:
72
+ payload = {'query': query}
73
+ if variables:
74
+ payload['variables'] = variables
75
+ response = requests.post(
76
+ GITHUB_GRAPHQL_URL, headers=headers,
77
+ json=payload, timeout=30
78
+ )
79
+ except requests.exceptions.RequestException as e:
80
+ print(f' -- Request error: {e}. Retrying in 60 seconds...')
81
+ time.sleep(60)
82
+ continue
83
+
84
+ if response.status_code == 200:
85
+ data = response.json()
86
+ if 'errors' in data:
87
+ # Log but return data — partial results are still useful
88
+ print(f' -- GraphQL errors: {data["errors"]}')
89
+ return data
90
+ elif response.status_code == 403 and 'rate limit' in response.text.lower():
91
+ last_request_time[token_index] = time.time()
92
+ continue
93
+ else:
94
+ print(f' -- Status {response.status_code}. Retrying...')
95
+ time.sleep(1)
96
+
97
+
98
+ def build_batch_query(batch):
99
+ """
100
+ Build a GraphQL query that fetches up to BATCH_SIZE PRs using aliases.
101
+ batch: list of (alias, owner, repo_name, pr_number)
102
+ """
103
+ fragments = []
104
+ for alias, owner, repo_name, pr_number in batch:
105
+ fragments.append(f"""
106
+ {alias}: repository(owner: "{owner}", name: "{repo_name}") {{
107
+ pullRequest(number: {pr_number}) {{
108
+ mergedBy {{ login }}
109
+ reviews(first: 100) {{
110
+ nodes {{
111
+ author {{ login }}
112
+ state
113
+ }}
114
+ }}
115
+ }}
116
+ }}""")
117
+ return '{ ' + '\n'.join(fragments) + '\n}'
118
+
119
+
120
+ def parse_batch_response(data, batch):
121
+ """Extract results from a batched GraphQL response."""
122
+ results = {}
123
+ if not data or 'data' not in data:
124
+ return results
125
+
126
+ graphql_data = data['data'] or {}
127
+ for alias, owner, repo_name, pr_number in batch:
128
+ key = (f'{owner}/{repo_name}', pr_number)
129
+ repo_data = graphql_data.get(alias) or {}
130
+ pr_data = repo_data.get('pullRequest') or {}
131
+
132
+ merged_by_data = pr_data.get('mergedBy') or {}
133
+ merger_login = merged_by_data.get('login') or ''
134
+
135
+ reviewer_set = set()
136
+ approved_by = []
137
+ changes_req = []
138
+ num_review_events = 0
139
+
140
+ for node in (pr_data.get('reviews') or {}).get('nodes') or []:
141
+ reviewer = (node.get('author') or {}).get('login') or ''
142
+ state = node.get('state', '').upper()
143
+ if reviewer:
144
+ reviewer_set.add(reviewer)
145
+ if state == 'APPROVED':
146
+ approved_by.append(reviewer)
147
+ elif state == 'CHANGES_REQUESTED':
148
+ changes_req.append(reviewer)
149
+ num_review_events += 1
150
+
151
+ results[key] = {
152
+ 'merger_login': merger_login,
153
+ 'num_reviewers': len(reviewer_set),
154
+ 'reviewers': '|'.join(sorted(reviewer_set)),
155
+ 'approved_by': '|'.join(approved_by),
156
+ 'changes_requested_by': '|'.join(changes_req),
157
+ 'num_review_events': num_review_events,
158
+ }
159
+ return results
160
+
161
+
162
+ def count_data_rows(csv_path):
163
+ """Count logical CSV records, not physical newlines."""
164
+ csv.field_size_limit(min(sys.maxsize, 10**7))
165
+ with open(csv_path, 'r', encoding='utf-8', newline='') as f:
166
+ return sum(1 for _ in csv.reader(f)) - 1
167
+
168
+
169
+ def iter_prs(input_csv, processed):
170
+ """Yield (full_name, owner, repo_name, pr_number) without loading the file."""
171
+ csv.field_size_limit(min(sys.maxsize, 10**7))
172
+ with open(input_csv, newline='', encoding='utf-8') as f:
173
+ for row in csv.DictReader(f):
174
+ full_name = row['full_name'].strip()
175
+ try:
176
+ pr_number = int(row['pr_number'])
177
+ except ValueError:
178
+ continue
179
+ if '/' not in full_name:
180
+ continue
181
+ if (full_name, pr_number) in processed:
182
+ continue
183
+ owner, repo_name = full_name.split('/', 1)
184
+ yield full_name, owner, repo_name, pr_number
185
+
186
+
187
+ def process_batch(chunk, writer, current_batch_num, total_batches):
188
+ print(f' Batch ({current_batch_num}/{total_batches}) — {len(chunk)} PRs ...')
189
+
190
+ batch_with_aliases = [
191
+ (f'pr_{i}', owner, rn, prn)
192
+ for i, (fn, owner, rn, prn) in enumerate(chunk)
193
+ ]
194
+
195
+ query = build_batch_query(batch_with_aliases)
196
+ data = make_graphql_request(query)
197
+
198
+ alias_to_fullname = {f'pr_{i}': fn for i, (fn, _, _, _) in enumerate(chunk)}
199
+ results = parse_batch_response(data, batch_with_aliases)
200
+
201
+ for alias, owner, repo_name, pr_number in batch_with_aliases:
202
+ full_name = alias_to_fullname[alias]
203
+ key = (full_name, pr_number)
204
+ result = results.get(key, {})
205
+ writer.writerow({
206
+ 'full_name': full_name,
207
+ 'pr_number': pr_number,
208
+ 'merger_login': result.get('merger_login', ''),
209
+ 'num_reviewers': result.get('num_reviewers', 0),
210
+ 'reviewers': result.get('reviewers', ''),
211
+ 'approved_by': result.get('approved_by', ''),
212
+ 'changes_requested_by': result.get('changes_requested_by', ''),
213
+ 'num_review_events': result.get('num_review_events', 0),
214
+ })
215
+
216
+
217
+ if __name__ == '__main__':
218
+ input_csv = '../Data/DE_all_pr_details.csv'
219
+ output_csv = '../Data/DE_all_pr_reviews_graphql.csv'
220
+
221
+ # Load already-processed
222
+ processed = set()
223
+ try:
224
+ with open(output_csv, newline='', encoding='utf-8') as f:
225
+ for row in csv.DictReader(f):
226
+ try:
227
+ processed.add((row['full_name'].strip(), int(row['pr_number'])))
228
+ except ValueError:
229
+ pass
230
+ except FileNotFoundError:
231
+ pass
232
+
233
+ print('Counting rows in input file (logical CSV records)...')
234
+ total_in_file = count_data_rows(input_csv)
235
+ print(f'Found {total_in_file:,} PRs in input file.')
236
+
237
+ print('Counting PRs still to fetch...')
238
+ to_fetch = sum(1 for _ in iter_prs(input_csv, processed))
239
+ total_batches = (to_fetch + BATCH_SIZE - 1) // BATCH_SIZE if to_fetch else 0
240
+ print(f'{to_fetch:,} PRs to fetch via GraphQL (batch size={BATCH_SIZE})')
241
+
242
+ output_exists = os.path.exists(output_csv)
243
+ fieldnames = [
244
+ 'full_name', 'pr_number', 'merger_login',
245
+ 'num_reviewers', 'reviewers', 'approved_by',
246
+ 'changes_requested_by', 'num_review_events',
247
+ ]
248
+
249
+ with open(output_csv, 'a', newline='', encoding='utf-8') as outfile:
250
+ writer = csv.DictWriter(outfile, fieldnames=fieldnames)
251
+ if not output_exists:
252
+ writer.writeheader()
253
+
254
+ chunk = []
255
+ current_batch_num = 0
256
+ for pr_tuple in iter_prs(input_csv, processed):
257
+ chunk.append(pr_tuple)
258
+ if len(chunk) < BATCH_SIZE:
259
+ continue
260
+ current_batch_num += 1
261
+ process_batch(chunk, writer, current_batch_num, total_batches)
262
+ outfile.flush()
263
+ chunk = []
264
+ time.sleep(0.5)
265
+
266
+ if chunk:
267
+ current_batch_num += 1
268
+ process_batch(chunk, writer, current_batch_num, total_batches)
269
+ outfile.flush()
270
+
271
+ print(f'Done. Output: {output_csv}')
Scripts/get_pr_reviews_rest_for_SE4DE_repos.py ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ get_pr_reviews_for_SE4DE_repos.py
3
+ ----------------------------------
4
+ For each PR in DE_all_pr_details.csv, collects:
5
+ - merger_login : who merged the PR (not just whether it was merged)
6
+ - reviewers : pipe-separated logins of reviewers
7
+ - approved_by : pipe-separated logins of approvers
8
+ - changes_requested_by : pipe-separated logins
9
+ - num_review_comments : total review thread comments
10
+ - num_inline_comments : total inline code comments
11
+
12
+ Reads: ../Data/DE_all_pr_details.csv
13
+ Writes: ../Data/DE_all_pr_reviews.csv
14
+ """
15
+
16
+ import os
17
+ import csv
18
+ import sys
19
+ import time
20
+ import requests
21
+ from datetime import datetime
22
+
23
+ # === Token and Request Setup ===
24
+
25
+ from github_tokens import init_rest_client_auth
26
+
27
+ tokens: list[str] = []
28
+ authorization_headers: list[dict[str, str]] = []
29
+ token_index = 0
30
+ last_request_time = {}
31
+
32
+
33
+ def _ensure_auth() -> None:
34
+ global tokens, authorization_headers
35
+ if not tokens:
36
+ tokens, authorization_headers = init_rest_client_auth()
37
+
38
+
39
+ def makeRequest(api_url, params):
40
+ global token_index
41
+ _ensure_auth()
42
+ num_tries = 0
43
+ max_tries = 5
44
+
45
+ while True:
46
+ num_tries += 1
47
+ if num_tries > max_tries:
48
+ print(' -- Max retries reached. Exiting...')
49
+ return None
50
+
51
+ current_time = time.time()
52
+ available_token = None
53
+ for i in range(len(authorization_headers)):
54
+ if i not in last_request_time or (current_time - last_request_time[i] >= 1):
55
+ available_token = i
56
+ break
57
+
58
+ if available_token is None:
59
+ min_wait = min(last_request_time.values()) + 1 - current_time
60
+ time.sleep(max(min_wait, 1))
61
+ continue
62
+
63
+ token_index = available_token
64
+ headers = authorization_headers[token_index]
65
+ last_request_time[token_index] = time.time()
66
+
67
+ try:
68
+ response = requests.get(api_url, headers=headers, params=params, timeout=30)
69
+ except requests.exceptions.RequestException as e:
70
+ print(f' -- Request error: {e}. Retrying in 60 seconds...')
71
+ time.sleep(60)
72
+ continue
73
+
74
+ if response.status_code == 200:
75
+ return response.json()
76
+ elif response.status_code == 403 and 'rate limit' in response.text.lower():
77
+ last_request_time[token_index] = time.time()
78
+ continue
79
+ elif response.status_code in {422, 401, 404}:
80
+ return None
81
+ else:
82
+ print(f' -- Status code {response.status_code}. Retrying... {api_url}')
83
+ time.sleep(1)
84
+
85
+
86
+ def get_merger_login(full_name, pr_number):
87
+ """Fetch the login of whoever merged the PR from the PR endpoint."""
88
+ url = f'https://api.github.com/repos/{full_name}/pulls/{pr_number}'
89
+ data = makeRequest(url, {})
90
+ if not data:
91
+ return ''
92
+ merged_by = data.get('merged_by') or {}
93
+ return merged_by.get('login') or ''
94
+
95
+
96
+ def get_pr_reviews(full_name, pr_number):
97
+ """
98
+ Paginate through all reviews for a PR.
99
+ Returns aggregated: reviewers, approved_by, changes_requested_by,
100
+ num_review_comments.
101
+ """
102
+ url = f'https://api.github.com/repos/{full_name}/pulls/{pr_number}/reviews'
103
+ reviewer_logins = set()
104
+ approved_by = []
105
+ changes_requested_by = []
106
+ num_review_comments = 0
107
+ page = 1
108
+
109
+ while True:
110
+ params = {'per_page': 100, 'page': page}
111
+ data = makeRequest(url, params)
112
+ if not data:
113
+ break
114
+ for review in data:
115
+ login = (review.get('user') or {}).get('login') or ''
116
+ state = review.get('state', '')
117
+ if login:
118
+ reviewer_logins.add(login)
119
+ if state == 'APPROVED':
120
+ approved_by.append(login)
121
+ elif state == 'CHANGES_REQUESTED':
122
+ changes_requested_by.append(login)
123
+ if review.get('body'):
124
+ num_review_comments += 1
125
+ if len(data) < 100:
126
+ break
127
+ page += 1
128
+
129
+ return reviewer_logins, approved_by, changes_requested_by, num_review_comments
130
+
131
+
132
+ def get_pr_inline_comments(full_name, pr_number):
133
+ """Count inline (line-level) review comments for a PR."""
134
+ url = f'https://api.github.com/repos/{full_name}/pulls/{pr_number}/comments'
135
+ total = 0
136
+ page = 1
137
+ while True:
138
+ params = {'per_page': 100, 'page': page}
139
+ data = makeRequest(url, params)
140
+ if not data:
141
+ break
142
+ total += len(data)
143
+ if len(data) < 100:
144
+ break
145
+ page += 1
146
+ return total
147
+
148
+
149
+ def count_data_rows(csv_path):
150
+ """Count logical CSV records (PR rows), not physical newlines.
151
+
152
+ body/labels fields often contain embedded newlines, so line counts
153
+ overstate row count by an order of magnitude on this file.
154
+ """
155
+ csv.field_size_limit(min(sys.maxsize, 10**7))
156
+ with open(csv_path, 'r', encoding='utf-8', newline='') as f:
157
+ return sum(1 for _ in csv.reader(f)) - 1
158
+
159
+
160
+ if __name__ == '__main__':
161
+ input_csv = '../Data/DE_all_pr_details.csv'
162
+ output_csv = '../Data/DE_all_pr_reviews.csv'
163
+
164
+ # Load already-processed (full_name, pr_number) pairs
165
+ processed = set()
166
+ try:
167
+ with open(output_csv, 'r', encoding='utf-8', newline='') as checkfile:
168
+ for row in csv.DictReader(checkfile):
169
+ processed.add((row['full_name'].strip(), row['pr_number'].strip()))
170
+ except FileNotFoundError:
171
+ pass
172
+
173
+ output_exists = os.path.exists(output_csv)
174
+
175
+ fieldnames = [
176
+ 'full_name', 'pr_number',
177
+ 'merger_login', # who merged (empty if not merged or unknown)
178
+ 'num_reviewers',
179
+ 'reviewers', # pipe-separated logins
180
+ 'approved_by', # pipe-separated logins
181
+ 'changes_requested_by',
182
+ 'num_review_comments',
183
+ 'num_inline_comments',
184
+ ]
185
+
186
+ print('Counting input rows (streaming, no full load)...')
187
+ total = count_data_rows(input_csv)
188
+ print(f'Found {total:,} PRs in input file.')
189
+
190
+ with open(input_csv, 'r', encoding='utf-8', newline='') as infile, \
191
+ open(output_csv, 'a', newline='', encoding='utf-8') as outfile:
192
+
193
+ reader = csv.DictReader(infile)
194
+ writer = csv.DictWriter(outfile, fieldnames=fieldnames)
195
+ if not output_exists:
196
+ writer.writeheader()
197
+
198
+ for idx, row in enumerate(reader, 1):
199
+ full_name = row['full_name'].strip()
200
+ pr_number = str(row['pr_number']).strip()
201
+
202
+ if (full_name, pr_number) in processed:
203
+ print(f'Skipping already processed: {full_name} PR#{pr_number}')
204
+ continue
205
+
206
+ print(f'({idx}/{total}) {full_name} PR#{pr_number} ...')
207
+
208
+ merger_login = ''
209
+ # Only fetch merger login if the PR was actually merged
210
+ if row.get('merged_at') and row['merged_at'].strip():
211
+ merger_login = get_merger_login(full_name, pr_number)
212
+ time.sleep(0.5)
213
+
214
+ reviewers, approved_by, changes_requested_by, num_review_comments = \
215
+ get_pr_reviews(full_name, pr_number)
216
+ time.sleep(0.5)
217
+
218
+ num_inline = get_pr_inline_comments(full_name, pr_number)
219
+ time.sleep(0.5)
220
+
221
+ writer.writerow({
222
+ 'full_name': full_name,
223
+ 'pr_number': pr_number,
224
+ 'merger_login': merger_login,
225
+ 'num_reviewers': len(reviewers),
226
+ 'reviewers': '|'.join(sorted(reviewers)),
227
+ 'approved_by': '|'.join(filter(None, approved_by)),
228
+ 'changes_requested_by': '|'.join(filter(None, changes_requested_by)),
229
+ 'num_review_comments': num_review_comments,
230
+ 'num_inline_comments': num_inline,
231
+ })
232
+ outfile.flush()
233
+ processed.add((full_name, pr_number))
234
+
235
+ print(f' ===> merger={merger_login}, reviewers={len(reviewers)}, '
236
+ f'approved={len(approved_by)}, inline_comments={num_inline}')
Scripts/get_repo_commits_pr_issues_contributors_for_SE4DE_repos.py ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import csv
3
+ import time
4
+ import requests
5
+ from datetime import datetime, timedelta
6
+
7
+ # === Token and Request Setup ===
8
+
9
+ from github_tokens import init_rest_client_auth
10
+
11
+ tokens: list[str] = []
12
+ authorization_headers: list[dict[str, str]] = []
13
+ token_index = 0
14
+ last_request_time = {}
15
+
16
+
17
+ def _ensure_auth() -> None:
18
+ global tokens, authorization_headers
19
+ if not tokens:
20
+ tokens, authorization_headers = init_rest_client_auth()
21
+
22
+
23
+ def makeRequest(api_url, params):
24
+ global token_index
25
+ _ensure_auth()
26
+ num_tries = 0
27
+ max_tries = 5
28
+
29
+ while True:
30
+ num_tries += 1
31
+ if num_tries > max_tries:
32
+ print(' -- Max retries reached. Exiting...')
33
+ break
34
+
35
+ available_token = None
36
+ current_time = time.time()
37
+ for i in range(len(authorization_headers)):
38
+ if i not in last_request_time or (current_time - last_request_time[i] >= 1):
39
+ available_token = i
40
+ break
41
+
42
+ if available_token is None:
43
+ min_wait = min(last_request_time.values()) + 1 - current_time
44
+ time.sleep(max(min_wait, 1))
45
+ continue
46
+
47
+ token_index = available_token
48
+ headers = authorization_headers[token_index]
49
+ last_request_time[token_index] = time.time()
50
+
51
+ try:
52
+ response = requests.get(api_url, headers=headers, params=params, timeout=30)
53
+ except requests.exceptions.RequestException as e:
54
+ print(f' -- Request error: {e}. Retrying in 60 seconds...')
55
+ time.sleep(60)
56
+ continue
57
+
58
+ if response.status_code == 200:
59
+ return response.json()
60
+ elif response.status_code == 403 and 'rate limit' in response.text.lower():
61
+ last_request_time[token_index] = time.time()
62
+ continue
63
+ elif response.status_code in {422, 401}:
64
+ return None
65
+ else:
66
+ print(f' -- Status code {response.status_code}. Retrying... {api_url}')
67
+ time.sleep(1)
68
+
69
+ def convert_to_datetime(date_str):
70
+ return datetime.strptime(date_str, '%Y-%m-%dT%H:%M:%SZ')
71
+
72
+ def get_commit_details(repo_full_name, start_date, end_date):
73
+ url = f'https://api.github.com/repos/{repo_full_name}/commits'
74
+ total_count = 0
75
+ commit_details = []
76
+ current_start = start_date
77
+ step = timedelta(days=8192) # Start with a large step
78
+
79
+ while current_start < end_date:
80
+ current_end = min(current_start + step, end_date)
81
+ print(f" Checking Commits {current_start.date()} to {current_end.date()}")
82
+ page = 1
83
+ count_in_window = 0
84
+ window_commits = []
85
+ page_limit_hit = False
86
+
87
+ while True:
88
+ params = {
89
+ 'since': current_start.isoformat() + 'Z',
90
+ 'until': current_end.isoformat() + 'Z',
91
+ 'per_page': 100,
92
+ 'page': page
93
+ }
94
+ time.sleep(1)
95
+ data = makeRequest(url, params)
96
+ if not data:
97
+ print(f" -- No commits on page {page}")
98
+ break
99
+ print(f" -- Commits page {page}: {len(data)}")
100
+ count_in_window += len(data)
101
+
102
+ # Collect commit details
103
+ for commit in data:
104
+ window_commits.append({
105
+ 'commit_sha': commit.get('sha'),
106
+ 'parent_sha': commit.get('parents', [{}])[0].get('sha') if commit.get('parents') else '',
107
+ 'commit_message': commit.get('commit', {}).get('message'),
108
+ 'author_login': commit.get('author', {}).get('login') if commit.get('author') else '',
109
+ 'author_name': commit.get('commit', {}).get('author', {}).get('name'),
110
+ 'author_email': commit.get('commit', {}).get('author', {}).get('email'),
111
+ 'author_date': commit.get('commit', {}).get('author', {}).get('date'),
112
+ 'committer_login': commit.get('committer', {}).get('login') if commit.get('committer') else '',
113
+ 'committer_name': commit.get('commit', {}).get('committer', {}).get('name'),
114
+ 'committer_email': commit.get('commit', {}).get('committer', {}).get('email'),
115
+ 'committer_date': commit.get('commit', {}).get('committer', {}).get('date'),
116
+ 'comment_count': commit.get('commit', {}).get('comment_count')
117
+ })
118
+ if len(data) < 100:
119
+ break
120
+ page += 1
121
+ if page > 10:
122
+ if step == timedelta(days=1):
123
+ print(" -- Step reached 1 day and still too many commits. Aborting.")
124
+ return '<many>', []
125
+ print(" -- Hit page limit, reducing step size and retrying")
126
+ step = step / 2
127
+ page_limit_hit = True
128
+ break
129
+
130
+ if not page_limit_hit:
131
+ commit_details.extend(window_commits)
132
+ total_count += count_in_window
133
+ current_start = current_end
134
+ # Gradually increase step size after a successful small window, only if the previous count was less than 500
135
+ if step < timedelta(days=4096) and count_in_window < 500:
136
+ step = step * 2
137
+ # Cap the step so it doesn't get bigger than your initial max
138
+ if step > timedelta(days=4096):
139
+ step = timedelta(days=4096)
140
+
141
+ return total_count, commit_details
142
+
143
+ def get_pr_count(repo_full_name, before_date, type):
144
+ query = f'repo:{repo_full_name} is:{type} created:<{before_date.date()}'
145
+ url = 'https://api.github.com/search/issues'
146
+ params = {'q': query, 'per_page': 1}
147
+ print(f" Checking {type.upper()}s until {before_date.date()}")
148
+ data = makeRequest(url, params)
149
+ prs_issues_count = data['total_count'] if data and 'total_count' in data else 0
150
+ print(f" -- {type.upper()}s: {prs_issues_count}")
151
+ return prs_issues_count
152
+
153
+ def get_pr_issue_details(repo_full_name, start_date, end_date, type):
154
+ url = 'https://api.github.com/search/issues'
155
+ pr_issue_details = []
156
+
157
+ # Check total PR count for the whole period
158
+ query = f'repo:{repo_full_name} is:{type} created:{start_date.date()}..{end_date.date()}'
159
+ params = {'q': query, 'per_page': 1}
160
+ data = makeRequest(url, params)
161
+ total_count = data['total_count'] if data and 'total_count' in data else 0
162
+
163
+ # If total_count unders 1000, fetch all in one window
164
+ if total_count <= 1000:
165
+ step = end_date - start_date
166
+ else:
167
+ step = timedelta(days=4096)
168
+
169
+ current_start = start_date
170
+ total_count_accum = 0
171
+
172
+ while current_start < end_date:
173
+ current_end = min(current_start + step, end_date)
174
+ print(f" Checking {type.upper()}s {current_start.date()} to {current_end.date()}")
175
+ # If splitting, check window count
176
+ if total_count > 1000:
177
+ query = f'repo:{repo_full_name} is:{type} created:{current_start.date()}..{current_end.date()}'
178
+ params = {'q': query, 'per_page': 1}
179
+ data = makeRequest(url, params)
180
+ window_count = data['total_count'] if data and 'total_count' in data else 0
181
+ if window_count > 1000:
182
+ if step == timedelta(days=1):
183
+ print(f" -- Step reached 1 day and still too many {type.upper()}s. Aborting.")
184
+ return '<many>', []
185
+ print(f" -- Too many {type.upper()}s, reducing step size and retrying")
186
+ step = step / 2
187
+ continue
188
+ else:
189
+ window_count = total_count
190
+
191
+ # Fetch PRs and Issues for this window
192
+ page = 1
193
+ seen_item_numbers = set()
194
+ while True:
195
+ params = {'q': query, 'per_page': 100, 'page': page}
196
+ time.sleep(1)
197
+ data = makeRequest(url, params)
198
+ if not data or 'items' not in data:
199
+ break
200
+ items = data['items']
201
+ print(f" -- {type.upper()}s page {page}: {len(items)}")
202
+
203
+ for item in items:
204
+ if item.get('number') in seen_item_numbers:
205
+ continue
206
+ seen_item_numbers.add(item.get('number'))
207
+ pr_issue_details.append({
208
+ f'{type}_number': item.get('number'),
209
+ 'title': item.get('title'),
210
+ 'user_login': item.get('user', {}).get('login'),
211
+ 'created_at': item.get('created_at'),
212
+ 'updated_at': item.get('updated_at'),
213
+ 'closed_at': item.get('closed_at'),
214
+ 'merged_at': item.get('pull_request', {}).get('merged_at') if item.get('pull_request') else '',
215
+ 'state': item.get('state'),
216
+ 'locked': item.get('locked'),
217
+ 'body': item.get('body'),
218
+ 'merge_commit_sha': item.get('pull_request', {}).get('merge_commit_sha') if item.get('pull_request') else '',
219
+ 'draft': item.get('draft'),
220
+ 'milestone': item.get('milestone', {}).get('title') if item.get('milestone') else '',
221
+ 'labels': ','.join([label.get('name', '') for label in item.get('labels', [])]),
222
+ 'assignees': ','.join([assignee.get('login', '') for assignee in item.get('assignees', [])])
223
+ })
224
+ if len(items) < 100:
225
+ break
226
+ page += 1
227
+
228
+ total_count_accum += window_count
229
+ current_start = current_end
230
+
231
+ return total_count_accum, pr_issue_details
232
+
233
+ def get_contributors_count(repo_full_name):
234
+ total_count = 0
235
+ page = 1
236
+ headers = {'Accept': 'application/vnd.github.v3+json', 'Authorization': f'Bearer {tokens[0]}'}
237
+ print(f" Checking Contributors ...")
238
+
239
+ while True:
240
+ url = f'https://api.github.com/repos/{repo_full_name}/contributors'
241
+ params = {'per_page': 100, 'page': page, 'anon': 'false'}
242
+ response = requests.get(url, headers=headers, params=params)
243
+ data = response.json()
244
+ if response.status_code != 200 or not data:
245
+ print(f"Error or empty response on page {page}: {response.status_code}")
246
+ break
247
+ print(f" -- Contributors page {page}: {len(data)}")
248
+ total_count += len(data)
249
+ if len(data) < 100:
250
+ break
251
+ page += 1
252
+
253
+ return total_count
254
+
255
+ def get_repo_data(repo_full_name, start_date, before_date):
256
+ commits, commit_details = get_commit_details(repo_full_name, start_date, before_date)
257
+ time.sleep(1)
258
+ prs, pr_details = get_pr_issue_details(repo_full_name, start_date, before_date, 'pr')
259
+ time.sleep(1)
260
+ issues, issue_details = get_pr_issue_details(repo_full_name, start_date, before_date, 'issue')
261
+ time.sleep(1)
262
+ contributors = get_contributors_count(repo_full_name)
263
+ time.sleep(2)
264
+ return commits, commit_details, prs, pr_details, issues, issue_details, contributors
265
+
266
+ def resolve_repo_redirect(owner, repo):
267
+ url = f'https://api.github.com/repos/{owner}/{repo}'
268
+ for token_id, headers in enumerate(authorization_headers):
269
+ try:
270
+ response = requests.get(url, headers=headers, allow_redirects=True, timeout=10)
271
+ if response.status_code == 200:
272
+ data = response.json()
273
+ full_name = data.get('full_name')
274
+ if full_name:
275
+ return full_name # New or unchanged repo name
276
+ elif response.status_code == 404:
277
+ print(f" -- Repo not found: {owner}/{repo}")
278
+ return None
279
+ except Exception as e:
280
+ print(f" -- Error resolving {owner}/{repo}: {e}")
281
+ return None
282
+
283
+ if __name__ == '__main__':
284
+ print(f"Collecting data for Data Engineering repositories ...")
285
+ input_csv = f'../Data/all_DE_repositories.csv'
286
+ output_csv = f'../Data/DE_repo_metrics.csv'
287
+ commit_details_csv = f'../Data/DE_all_commits_details.csv'
288
+ pr_details_csv = f'../Data/DE_all_pr_details.csv'
289
+ issue_details_csv = f'../Data/DE_all_issue_details.csv'
290
+
291
+ start_date = datetime(2008, 1, 1)
292
+ end_date = datetime(2026, 4, 30)
293
+
294
+ # Read already processed repos
295
+ processed_repos = set()
296
+ try:
297
+ with open(output_csv, 'r', encoding='utf-8', newline='') as checkfile:
298
+ for row in csv.DictReader(checkfile):
299
+ processed_repos.add(row['full_name'].strip())
300
+ except FileNotFoundError:
301
+ pass
302
+
303
+ output_exists = os.path.exists(output_csv)
304
+ commit_details_exists = os.path.exists(commit_details_csv)
305
+ pr_details_exists = os.path.exists(pr_details_csv)
306
+ issue_details_exists = os.path.exists(issue_details_csv)
307
+
308
+ with open(input_csv, 'r', encoding='utf-8') as infile, \
309
+ open(output_csv, 'a', newline='', encoding='utf-8') as outfile, \
310
+ open(commit_details_csv, 'a', newline='', encoding='utf-8') as commitfile, \
311
+ open(pr_details_csv, 'a', newline='', encoding='utf-8') as pr_file, \
312
+ open(issue_details_csv, 'a', newline='', encoding='utf-8') as issue_file:
313
+
314
+ reader = list(csv.DictReader(infile))
315
+ total_repos = len(reader)
316
+
317
+ writer = csv.DictWriter(outfile, fieldnames=['full_name', 'repo_resolved_name', 'commits', 'pull_requests', 'issues', 'contributors'])
318
+ if not output_exists:
319
+ writer.writeheader()
320
+
321
+ # Prepare commit details writers
322
+ commit_fieldnames = [
323
+ 'full_name', 'commit_sha', 'parent_sha', 'commit_message',
324
+ 'author_login', 'author_name', 'author_email', 'author_date',
325
+ 'committer_login', 'committer_name', 'committer_email', 'committer_date',
326
+ 'comment_count'
327
+ ]
328
+ commit_writer = csv.DictWriter(commitfile, fieldnames=commit_fieldnames)
329
+ if not commit_details_exists:
330
+ commit_writer.writeheader()
331
+
332
+ # Prepare PR details writer
333
+ pr_fieldnames = [
334
+ 'full_name', 'pr_number', 'title', 'user_login', 'created_at', 'updated_at', 'closed_at',
335
+ 'merged_at', 'state', 'locked', 'body', 'merge_commit_sha', 'draft', 'milestone', 'labels', 'assignees'
336
+ ]
337
+ pr_writer = csv.DictWriter(pr_file, fieldnames=pr_fieldnames)
338
+ if not pr_details_exists:
339
+ pr_writer.writeheader()
340
+
341
+ # Prepare Issue details writer
342
+ issue_fieldnames = [
343
+ 'full_name', 'issue_number', 'title', 'user_login', 'created_at', 'updated_at', 'closed_at',
344
+ 'merged_at', 'state', 'locked', 'body', 'merge_commit_sha', 'draft', 'milestone', 'labels', 'assignees'
345
+ ]
346
+ issue_writer = csv.DictWriter(issue_file, fieldnames=issue_fieldnames)
347
+ if not issue_details_exists:
348
+ issue_writer.writeheader()
349
+
350
+ for idx, row in enumerate(reader, 1):
351
+ original_repo = row['full_name'].strip()
352
+ if '/' not in original_repo:
353
+ continue
354
+
355
+ # Skip if already processed
356
+ if original_repo in processed_repos:
357
+ print(f"Skipping already processed DE repo: {original_repo}")
358
+ continue
359
+
360
+ owner, full_name = original_repo.split('/')
361
+ resolved_repo = resolve_repo_redirect(owner, full_name)
362
+
363
+ if not resolved_repo:
364
+ print(f"Skipping unresolved DE repo: {original_repo}")
365
+ writer.writerow({
366
+ 'full_name': original_repo,
367
+ 'repo_resolved_name': '',
368
+ 'commits': 0,
369
+ 'pull_requests': 0,
370
+ 'issues': 0,
371
+ 'contributors': 0
372
+ })
373
+ outfile.flush()
374
+ processed_repos.add(original_repo)
375
+ continue
376
+
377
+ print(f"({idx}/{total_repos}) DE Processing {original_repo} ...")
378
+
379
+ try:
380
+ commits, commit_details, prs, pr_details, issues, issue_details, contributors = get_repo_data(resolved_repo, start_date, end_date)
381
+ except Exception as e:
382
+ print(f" -- Error with {original_repo}: {e}")
383
+ commits, commit_details, prs, pr_details, issues, issue_details, contributors = 'error', 'error', 'error', 'error', 'error', 'error', 'error'
384
+
385
+ writer.writerow({
386
+ 'full_name': original_repo,
387
+ 'repo_resolved_name': resolved_repo,
388
+ 'commits': commits,
389
+ 'pull_requests': prs,
390
+ 'issues': issues,
391
+ 'contributors': contributors
392
+ })
393
+ outfile.flush()
394
+ processed_repos.add(original_repo)
395
+
396
+ # Write commit details
397
+ if commit_details and isinstance(commit_details, list):
398
+ for detail in commit_details:
399
+ detail_with_repo = {'full_name': original_repo}
400
+ detail_with_repo.update(detail)
401
+ commit_writer.writerow(detail_with_repo)
402
+ commitfile.flush()
403
+
404
+ # Write PR details
405
+ if pr_details and isinstance(pr_details, list):
406
+ for pr in pr_details:
407
+ pr_with_repo = {'full_name': original_repo}
408
+ pr_with_repo.update(pr)
409
+ pr_writer.writerow(pr_with_repo)
410
+ pr_file.flush()
411
+
412
+ # Write issue details
413
+ if issue_details and isinstance(issue_details, list):
414
+ for issue in issue_details:
415
+ issue_with_repo = {'full_name': original_repo}
416
+ issue_with_repo.update(issue)
417
+ issue_writer.writerow(issue_with_repo)
418
+ issue_file.flush()
419
+
420
+ print(f" ===> {original_repo}: commits={commits}, PRs={prs}, Issues={issues}, contributors={contributors}")
421
+ time.sleep(1)
Scripts/github_api.py ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Shared GitHub REST session with rate-limit and transient-network retries."""
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ import time
6
+
7
+ import requests
8
+
9
+ log = logging.getLogger(__name__)
10
+
11
+ GITHUB_API = "https://api.github.com"
12
+ _RATE_FLOOR = 200
13
+ _MAX_NETWORK_RETRIES = 8
14
+ _RETRY_BASE_SEC = 2.0
15
+ _TRANSIENT_HTTP = {502, 503, 504, 520, 521, 522, 429}
16
+ _TRANSIENT_EXC = (
17
+ requests.exceptions.ConnectionError,
18
+ requests.exceptions.Timeout,
19
+ requests.exceptions.ChunkedEncodingError,
20
+ )
21
+
22
+
23
+ class GitHubSession:
24
+ """requests.Session wrapper: rate limits, 202 polling, network retries."""
25
+
26
+ def __init__(self, token: str) -> None:
27
+ self._s = requests.Session()
28
+ headers = {
29
+ "Accept": "application/vnd.github+json",
30
+ "X-GitHub-Api-Version": "2022-11-28",
31
+ }
32
+ if token:
33
+ headers["Authorization"] = f"Bearer {token}"
34
+ self._s.headers.update(headers)
35
+
36
+ def get(self, url: str, **kwargs) -> requests.Response:
37
+ kwargs.setdefault("timeout", (15, 90))
38
+ attempt = 0
39
+ while True:
40
+ attempt += 1
41
+ try:
42
+ resp = self._s.get(url, **kwargs)
43
+ except _TRANSIENT_EXC as exc:
44
+ if attempt >= _MAX_NETWORK_RETRIES:
45
+ raise
46
+ sleep_sec = min(120.0, _RETRY_BASE_SEC * (2 ** (attempt - 1)))
47
+ log.warning(
48
+ "Network error on GET (attempt %d/%d), sleeping %.0fs: %s",
49
+ attempt, _MAX_NETWORK_RETRIES, sleep_sec, exc,
50
+ )
51
+ time.sleep(sleep_sec)
52
+ continue
53
+
54
+ remaining = int(resp.headers.get("X-RateLimit-Remaining", 9999))
55
+ reset_at = int(resp.headers.get("X-RateLimit-Reset", 0))
56
+
57
+ if resp.status_code == 403 and remaining == 0:
58
+ sleep_sec = max(reset_at - int(time.time()), 0) + 5
59
+ log.warning("Rate limit hit; sleeping %ds", sleep_sec)
60
+ time.sleep(sleep_sec)
61
+ continue
62
+ if resp.status_code == 202:
63
+ time.sleep(3)
64
+ continue
65
+ if resp.status_code in _TRANSIENT_HTTP and attempt < _MAX_NETWORK_RETRIES:
66
+ retry_after = int(resp.headers.get("Retry-After", 0))
67
+ sleep_sec = retry_after or min(120.0, _RETRY_BASE_SEC * (2 ** (attempt - 1)))
68
+ log.warning(
69
+ "HTTP %d on GET (attempt %d/%d), sleeping %.0fs",
70
+ resp.status_code, attempt, _MAX_NETWORK_RETRIES, sleep_sec,
71
+ )
72
+ time.sleep(sleep_sec)
73
+ continue
74
+ if remaining < _RATE_FLOOR:
75
+ sleep_sec = max(reset_at - int(time.time()), 0) + 2
76
+ log.info("Rate budget low (%d remaining); sleeping %ds", remaining, sleep_sec)
77
+ time.sleep(sleep_sec)
78
+ return resp
Scripts/github_tokens.py ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """GitHub PAT configuration for DEPosit collection scripts.
2
+
3
+ Never commit personal access tokens. Provide credentials via:
4
+
5
+ 1. Environment variables (recommended for CI)
6
+ 2. A local ``.env`` file (copy from ``.env.example``; not committed)
7
+ 3. ``--token`` / ``--tokens`` CLI flags where supported
8
+
9
+ Variables:
10
+ GITHUB_TOKEN_SE4DE — project-specific name (preferred)
11
+ GITHUB_TOKEN — standard name
12
+ GITHUB_TOKENS — comma-separated PATs for rate-limit rotation
13
+ """
14
+ from __future__ import annotations
15
+
16
+ import argparse
17
+ import os
18
+ import sys
19
+ from pathlib import Path
20
+
21
+ PACKAGE_ROOT = Path(__file__).resolve().parents[1]
22
+
23
+
24
+ def load_dotenv(path: Path | None = None) -> None:
25
+ """Load KEY=VALUE pairs from .env into os.environ (does not override existing)."""
26
+ path = path or PACKAGE_ROOT / ".env"
27
+ if not path.is_file():
28
+ return
29
+ for raw in path.read_text(encoding="utf-8").splitlines():
30
+ line = raw.strip()
31
+ if not line or line.startswith("#") or "=" not in line:
32
+ continue
33
+ key, _, value = line.partition("=")
34
+ key = key.strip()
35
+ value = value.strip().strip("'").strip('"')
36
+ if key and key not in os.environ:
37
+ os.environ[key] = value
38
+
39
+
40
+ def load_tokens() -> list[str]:
41
+ """Return all configured PATs (may be empty)."""
42
+ load_dotenv()
43
+ found: list[str] = []
44
+ for env in ("GITHUB_TOKEN_SE4DE", "GITHUB_TOKEN"):
45
+ value = os.environ.get(env, "").strip()
46
+ if value and value not in found:
47
+ found.append(value)
48
+ for part in os.environ.get("GITHUB_TOKENS", "").split(","):
49
+ part = part.strip()
50
+ if part and part not in found:
51
+ found.append(part)
52
+ return found
53
+
54
+
55
+ def build_authorization_headers(tokens: list[str]) -> list[dict[str, str]]:
56
+ return [
57
+ {"Accept": "application/vnd.github+json", "Authorization": f"Bearer {token}"}
58
+ for token in tokens
59
+ ]
60
+
61
+
62
+ def resolve_token(cli_token: str | None = None, cli_tokens: str | None = None) -> str | None:
63
+ """Single PAT: CLI overrides environment."""
64
+ if cli_token and cli_token.strip():
65
+ return cli_token.strip()
66
+ if cli_tokens:
67
+ parts = [p.strip() for p in cli_tokens.split(",") if p.strip()]
68
+ if parts:
69
+ return parts[0]
70
+ tokens = load_tokens()
71
+ return tokens[0] if tokens else None
72
+
73
+
74
+ def require_github_tokens(
75
+ cli_token: str | None = None,
76
+ cli_tokens: str | None = None,
77
+ ) -> list[str]:
78
+ """Return PAT list or exit with instructions."""
79
+ if cli_token and cli_token.strip():
80
+ return [cli_token.strip()]
81
+ if cli_tokens:
82
+ parts = [p.strip() for p in cli_tokens.split(",") if p.strip()]
83
+ if parts:
84
+ return parts
85
+ tokens = load_tokens()
86
+ if not tokens:
87
+ _exit_missing_token()
88
+ return tokens
89
+
90
+
91
+ def primary_token(cli_token: str | None = None, cli_tokens: str | None = None) -> str:
92
+ token = resolve_token(cli_token, cli_tokens)
93
+ if not token:
94
+ _exit_missing_token()
95
+ return token
96
+
97
+
98
+ def init_rest_client_auth(
99
+ cli_token: str | None = None,
100
+ cli_tokens: str | None = None,
101
+ ) -> tuple[list[str], list[dict[str, str]]]:
102
+ """Used by REST collection scripts with token rotation."""
103
+ tokens = require_github_tokens(cli_token, cli_tokens)
104
+ return tokens, build_authorization_headers(tokens)
105
+
106
+
107
+ def add_github_token_args(parser: argparse.ArgumentParser) -> None:
108
+ group = parser.add_argument_group("GitHub authentication")
109
+ group.add_argument(
110
+ "--token",
111
+ metavar="PAT",
112
+ help="GitHub personal access token (overrides environment)",
113
+ )
114
+ group.add_argument(
115
+ "--tokens",
116
+ metavar="PAT1,PAT2",
117
+ help="Comma-separated PATs for rate-limit rotation (overrides environment)",
118
+ )
119
+
120
+
121
+ def _exit_missing_token() -> None:
122
+ print("GitHub token required for API collection.", file=sys.stderr)
123
+ print(" Option A: copy .env.example to .env and set GITHUB_TOKEN_SE4DE", file=sys.stderr)
124
+ print(" Option B: $env:GITHUB_TOKEN_SE4DE = '<your-pat>' (PowerShell)", file=sys.stderr)
125
+ print(" Option C: pass --token <your-pat> on scripts that support it", file=sys.stderr)
126
+ sys.exit(1)
Scripts/pipeline_parsers/__init__.py ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ pipeline_parsers
3
+ ~~~~~~~~~~~~~~~~
4
+ Per-artifact-type feature extractors for DEPosit pipeline artifact collection.
5
+
6
+ Path patterns follow official or recommended layouts (dbt, Airflow, Prefect,
7
+ Dagster, Kedro, Mage, etc.). Ambiguous paths require CONTENT_SIGNALS confirmation.
8
+
9
+ Each parser exposes a single function:
10
+ extract(content: str, file_path: str) -> dict
11
+
12
+ The returned dict maps column names to values ready for INSERT into the
13
+ corresponding SQLite table. Parsers never raise; on unrecoverable errors
14
+ they return a dict with parse_error set and numeric fields set to None.
15
+ """
16
+
17
+ ARTIFACT_PATTERNS = {
18
+ # Evaluated in order; first match wins.
19
+ #
20
+ # Airflow: DAG bundles live under dags_folder (default subfolder "dags").
21
+ # Do not scan plugins/ — shared code, not DAG definitions (Airflow docs).
22
+ "airflow_dag": [
23
+ r"(?:^|/)dags/.*\.py$",
24
+ r"(?:^|/)dag/.*\.py$",
25
+ r"(?:^|/)airflow/dags?/.*\.py$",
26
+ ],
27
+ # dbt: top-level resource dirs from dbt_project.yml (dbt Developer Hub).
28
+ "dbt_model": [
29
+ r"(?:^|/)models/.*\.sql$",
30
+ r"(?:^|/)macros/.*\.sql$",
31
+ r"(?:^|/)snapshots/.*\.sql$",
32
+ r"(?:^|/)analyses/.*\.sql$",
33
+ r"(?:^|/)analysis/.*\.sql$",
34
+ ],
35
+ # dbt: schema YAML, project manifest, package lockfile.
36
+ "dbt_schema": [
37
+ r"(?:^|/)models/.*\.yml$",
38
+ r"(?:^|/)models/.*\.yaml$",
39
+ r"(?:^|/)macros/.*\.ya?ml$",
40
+ r"(?:^|/)snapshots/.*\.ya?ml$",
41
+ r"(?i)(?:^|/)dbt_project\.ya?ml$",
42
+ r"(?i)(?:^|/)packages\.ya?ml$",
43
+ ],
44
+ # Prefect: flow modules and project/deployment YAML (Prefect 2/3 docs).
45
+ "prefect_flow": [
46
+ r"(?:^|/)flows?/.*\.py$",
47
+ r"(?:^|/)prefect/.*\.py$",
48
+ r"(?i)(?:^|/)prefect\.ya?ml$",
49
+ r"(?i)(?:^|/)[^/]+-deployment\.ya?ml$",
50
+ ],
51
+ # Dagster: defs/assets/jobs layout + src/<pkg>/definitions.py (Dagster docs).
52
+ "dagster": [
53
+ r"(?:^|/)(?:assets|jobs|ops|graphs|schedules|sensors|repository)/.*\.py$",
54
+ r"(?:^|/)dagster/.*\.py$",
55
+ r"(?:^|/)definitions\.py$",
56
+ r"(?:^|/)src/[^/]+/definitions\.py$",
57
+ r"(?:^|/)src/[^/]+/defs/.+\.py$",
58
+ r"(?:^|/)src/[^/]+/assets/.+\.py$",
59
+ ],
60
+ # Luigi: task modules (luigi.Task).
61
+ "luigi": [
62
+ r"(?:^|/)(?:tasks?|luigi)/.*\.py$",
63
+ ],
64
+ # Kedro: src/<pkg>/pipelines and conf/base catalog (Kedro docs).
65
+ "kedro": [
66
+ r"(?:^|/)src/[^/]+/pipelines?/.+\.py$",
67
+ r"(?:^|/)pipelines?/[^/]+\.py$",
68
+ r"(?i)(?:^|/)conf/base/catalog\.ya?ml$",
69
+ r"(?i)(?:^|/)conf/base/parameters\.ya?ml$",
70
+ r"(?:^|/)nodes?\.py$",
71
+ ],
72
+ # Apache Beam: dedicated beam/ or pipelines/ package (content-gated).
73
+ "beam": [
74
+ r"(?:^|/)beam/.*\.py$",
75
+ r"(?:^|/)pipelines?/[^/]+\.py$",
76
+ ],
77
+ # dlt: sources/ and pipelines/ modules (dlthub layout).
78
+ "dlt": [
79
+ r"(?:^|/)sources?/[^/]+\.py$",
80
+ r"(?:^|/)pipelines?/[^/]+\.py$",
81
+ ],
82
+ # Mage: block folders per Mage project structure docs.
83
+ "mage_block": [
84
+ r"(?:^|/)(?:data_loaders?|transformers?|data_exporters?|sensors?)/.*\.py$",
85
+ r"(?:^|/)(?:data_loaders?|transformers?|data_exporters?|sensors?)/.*\.sql$",
86
+ r"(?:^|/)dbt/(?:models|macros|snapshots)/.*\.sql$",
87
+ ],
88
+ }
89
+
90
+ # Content-level signals confirm ambiguous path matches (bytes substrings).
91
+ CONTENT_SIGNALS = {
92
+ "airflow_dag": [
93
+ b"from airflow",
94
+ b"import airflow",
95
+ b"DAG(",
96
+ b"@dag",
97
+ ],
98
+ "dbt_model": [], # path alone is sufficient for dbt SQL resources
99
+ "dbt_schema": [
100
+ b"models:",
101
+ b"version:",
102
+ b"dbt_project",
103
+ b"packages:",
104
+ b"require-dbt-version",
105
+ ],
106
+ "prefect_flow": [
107
+ b"from prefect",
108
+ b"import prefect",
109
+ b"@flow",
110
+ b"@task",
111
+ b"deployments:",
112
+ b"prefect:",
113
+ ],
114
+ "dagster": [
115
+ b"from dagster",
116
+ b"import dagster",
117
+ b"@asset",
118
+ b"@op",
119
+ b"@job",
120
+ b"Definitions",
121
+ ],
122
+ "luigi": [b"import luigi", b"from luigi", b"luigi.Task"],
123
+ "kedro": [
124
+ b"from kedro",
125
+ b"import kedro",
126
+ b"kedro.pipeline",
127
+ b"catalog:",
128
+ ],
129
+ "beam": [b"import apache_beam", b"from apache_beam"],
130
+ "dlt": [b"import dlt", b"from dlt", b"@dlt.resource", b"@dlt.source"],
131
+ "mage_block": [
132
+ b"@data_loader",
133
+ b"@transformer",
134
+ b"@data_exporter",
135
+ b"@sensor",
136
+ b"mage_ai",
137
+ ],
138
+ }
Scripts/pipeline_parsers/airflow_parser.py ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ airflow_parser.py
3
+ ~~~~~~~~~~~~~~~~~
4
+ Extracts structural and quality features from Airflow DAG files.
5
+
6
+ Strategy: AST-walk the file. We collect every Call node whose function
7
+ resolves to a known DAG constructor or task operator, plus every binary
8
+ operation (>>, <<) and explicit set_downstream / set_upstream call.
9
+
10
+ We intentionally avoid executing the file: dynamic DAG generation patterns
11
+ (DagFactory, loop-based DAGs) are flagged via heuristics rather than
12
+ skipped entirely.
13
+ """
14
+
15
+ import ast
16
+ import json
17
+ import re
18
+ from typing import Any
19
+
20
+ # Operators we track individually because they carry specific semantic meaning
21
+ # for SE research (coupling, reliability, observability).
22
+ _SENSOR_OPERATORS = {
23
+ "ExternalTaskSensor", "ExternalTaskMarker",
24
+ "HttpSensor", "S3KeySensor", "SqlSensor",
25
+ "BaseSensorOperator",
26
+ }
27
+ _BRANCH_OPERATORS = {
28
+ "BranchPythonOperator", "BranchSQLOperator",
29
+ "BranchDayOfWeekOperator", "BranchDateTimeOperator",
30
+ "BaseBranchOperator",
31
+ }
32
+ _PYTHON_OPERATORS = {"PythonOperator", "PythonVirtualenvOperator", "ExternalPythonOperator"}
33
+ _BASH_OPERATORS = {"BashOperator"}
34
+
35
+ _SCHEDULE_PRESETS = {
36
+ "@once", "@hourly", "@daily", "@weekly", "@monthly", "@yearly", "None",
37
+ }
38
+
39
+ _CRON_RE = re.compile(
40
+ r"^(\*|[0-9,\-\*/]+)\s+" # minute
41
+ r"(\*|[0-9,\-\*/]+)\s+" # hour
42
+ r"(\*|[0-9,\-\*/]+)\s+" # day-of-month
43
+ r"(\*|[0-9,\-\*/]+)\s+" # month
44
+ r"(\*|[0-9,\-\*/]+)$" # day-of-week
45
+ )
46
+
47
+
48
+ def _schedule_type(raw: str | None) -> str:
49
+ if raw is None or raw in ("None", ""):
50
+ return "none"
51
+ if raw in _SCHEDULE_PRESETS:
52
+ return "preset"
53
+ if _CRON_RE.match(raw.strip()):
54
+ return "cron"
55
+ if "timedelta" in raw or "datetime.timedelta" in raw:
56
+ return "timedelta"
57
+ if "schedule" in raw.lower() or "timetable" in raw.lower():
58
+ return "dynamic"
59
+ return "other"
60
+
61
+
62
+ class _DAGVisitor(ast.NodeVisitor):
63
+ """Walks a DAG file AST and accumulates all features we care about."""
64
+
65
+ def __init__(self) -> None:
66
+ self.dags: list[dict] = []
67
+ self._current_dag: dict | None = None
68
+ self._operator_names: set[str] = set()
69
+ self._edge_count: int = 0
70
+ self._uses_xcom: bool = False
71
+ self._uses_pools: bool = False
72
+ self._uses_connections: bool = False
73
+
74
+ # ── DAG detection ─────────────────────────────────────────────────────
75
+
76
+ def visit_With(self, node: ast.With) -> None:
77
+ """Handles: with DAG(...) as dag:"""
78
+ for item in node.items:
79
+ if isinstance(item.context_expr, ast.Call):
80
+ name = self._call_name(item.context_expr)
81
+ if name in ("DAG", "airflow.DAG"):
82
+ dag = self._parse_dag_call(item.context_expr)
83
+ self._current_dag = dag
84
+ self.generic_visit(node)
85
+ self._finalise_dag()
86
+ return
87
+ self.generic_visit(node)
88
+
89
+ def visit_Assign(self, node: ast.Assign) -> None:
90
+ """Handles: dag = DAG(...)"""
91
+ if isinstance(node.value, ast.Call):
92
+ name = self._call_name(node.value)
93
+ if name in ("DAG", "airflow.DAG"):
94
+ dag = self._parse_dag_call(node.value)
95
+ self._current_dag = dag
96
+ self.generic_visit(node)
97
+ self._finalise_dag()
98
+ return
99
+ self.generic_visit(node)
100
+
101
+ # ── @dag decorator ────────────────────────────────────────────────────
102
+
103
+ def visit_FunctionDef(self, node: ast.FunctionDef) -> None:
104
+ for dec in node.decorator_list:
105
+ call = dec if isinstance(dec, ast.Call) else None
106
+ bare = dec if isinstance(dec, ast.Name) else None
107
+ name = (self._call_name(call) if call else
108
+ (bare.id if bare else None))
109
+ if name == "dag":
110
+ dag = self._parse_dag_call(call) if call else {}
111
+ dag.setdefault("dag_id", node.name)
112
+ self._current_dag = dag
113
+ self.generic_visit(node)
114
+ self._finalise_dag()
115
+ return
116
+ self.generic_visit(node)
117
+
118
+ visit_AsyncFunctionDef = visit_FunctionDef
119
+
120
+ def _finalise_dag(self) -> None:
121
+ if self._current_dag is None:
122
+ return
123
+ d = self._current_dag
124
+ d["task_count"] = d.get("task_count", 0)
125
+ d["edge_count"] = self._edge_count
126
+ d["operator_types"] = json.dumps(sorted(self._operator_names))
127
+ d["unique_operator_count"] = len(self._operator_names)
128
+ d["has_python_operator"] = int(bool(self._operator_names & _PYTHON_OPERATORS))
129
+ d["has_bash_operator"] = int(bool(self._operator_names & _BASH_OPERATORS))
130
+ d["has_external_task_sensor"] = int(bool(self._operator_names & _SENSOR_OPERATORS))
131
+ d["has_branch_operator"] = int(bool(self._operator_names & _BRANCH_OPERATORS))
132
+ d["uses_xcom"] = int(self._uses_xcom)
133
+ d["uses_pools"] = int(self._uses_pools)
134
+ d["uses_connections"] = int(self._uses_connections)
135
+ # Derive anti-patterns
136
+ catchup = d.get("catchup")
137
+ max_active = d.get("max_active_runs")
138
+ retries = d.get("default_retries")
139
+ on_fail = d.get("has_on_failure_callback", 0)
140
+ sched_type = d.get("schedule_type", "none")
141
+ d["antipattern_catchup_no_maxruns"] = int(
142
+ catchup is True and max_active is None
143
+ )
144
+ d["antipattern_no_retries"] = int(retries is None or retries == 0)
145
+ d["antipattern_no_failure_cb"] = int(not on_fail)
146
+ d["antipattern_no_schedule"] = int(sched_type == "none")
147
+ d["antipattern_bare_xcom"] = int(self._uses_xcom) # heuristic; refine if needed
148
+ self.dags.append(d)
149
+ self._current_dag = None
150
+ self._operator_names = set()
151
+ self._edge_count = 0
152
+ self._uses_xcom = False
153
+ self._uses_pools = False
154
+ self._uses_connections = False
155
+
156
+ # ── Task operator detection ───────────────────────────────────────────
157
+
158
+ def visit_Call(self, node: ast.Call) -> None:
159
+ name = self._call_name(node)
160
+ # Count task operators
161
+ if name and ("Operator" in name or "Sensor" in name or "Hook" in name):
162
+ short = name.split(".")[-1]
163
+ self._operator_names.add(short)
164
+ if self._current_dag is not None:
165
+ self._current_dag["task_count"] = (
166
+ self._current_dag.get("task_count", 0) + 1
167
+ )
168
+ # xcom usage
169
+ if name in ("xcom_push", "xcom_pull") or (
170
+ isinstance(node.func, ast.Attribute)
171
+ and node.func.attr in ("xcom_push", "xcom_pull")
172
+ ):
173
+ self._uses_xcom = True
174
+ # pool usage
175
+ for kw in node.keywords:
176
+ if kw.arg == "pool":
177
+ self._uses_pools = True
178
+ if kw.arg in ("conn_id", "gcp_conn_id", "aws_conn_id",
179
+ "azure_conn_id", "http_conn_id"):
180
+ self._uses_connections = True
181
+ self.generic_visit(node)
182
+
183
+ # ── Dependency edges ──────────────────────────────────────────────────
184
+
185
+ def visit_BinOp(self, node: ast.BinOp) -> None:
186
+ if isinstance(node.op, (ast.RShift, ast.LShift)):
187
+ self._edge_count += 1
188
+ self.generic_visit(node)
189
+
190
+ def visit_Expr(self, node: ast.Expr) -> None:
191
+ if isinstance(node.value, ast.Call):
192
+ name = self._call_name(node.value)
193
+ if name in ("set_downstream", "set_upstream") or (
194
+ isinstance(node.value.func, ast.Attribute)
195
+ and node.value.func.attr in ("set_downstream", "set_upstream")
196
+ ):
197
+ self._edge_count += 1
198
+ self.generic_visit(node)
199
+
200
+ # ── DAG constructor argument parsing ─────────────────────────────────
201
+
202
+ def _parse_dag_call(self, node: ast.Call) -> dict:
203
+ d: dict[str, Any] = {}
204
+ # Positional: DAG(dag_id, schedule_interval=...)
205
+ if node.args:
206
+ d["dag_id"] = self._const_str(node.args[0])
207
+ for kw in node.keywords:
208
+ arg = kw.arg
209
+ val = kw.value
210
+ if arg == "dag_id":
211
+ d["dag_id"] = self._const_str(val)
212
+ elif arg in ("schedule_interval", "schedule"):
213
+ raw = self._const_str(val)
214
+ d["schedule_interval"] = raw
215
+ d["schedule_type"] = _schedule_type(raw)
216
+ elif arg == "catchup":
217
+ d["catchup"] = self._const_bool(val)
218
+ elif arg == "max_active_runs":
219
+ d["max_active_runs"] = self._const_int(val)
220
+ elif arg == "default_args":
221
+ self._parse_default_args(val, d)
222
+ elif arg == "tags":
223
+ d["dag_tags"] = self._const_list_str(val)
224
+ elif arg == "sla_miss_callback":
225
+ d["has_sla"] = 1
226
+ elif arg == "on_failure_callback":
227
+ d["has_on_failure_callback"] = 1
228
+ elif arg == "on_success_callback":
229
+ d["has_on_success_callback"] = 1
230
+ return d
231
+
232
+ def _parse_default_args(self, node: ast.expr, d: dict) -> None:
233
+ """Extract retries / sla / callbacks from default_args dict literal."""
234
+ if not isinstance(node, ast.Dict):
235
+ return
236
+ for key, val in zip(node.keys, node.values):
237
+ k = self._const_str(key)
238
+ if k == "retries":
239
+ d["default_retries"] = self._const_int(val)
240
+ elif k == "retry_delay":
241
+ # timedelta(minutes=...) etc. — just flag presence
242
+ d["default_retry_delay_seconds"] = -1 # present but not trivially parsed
243
+ elif k == "sla":
244
+ d["has_sla"] = 1
245
+ elif k == "on_failure_callback":
246
+ d["has_on_failure_callback"] = 1
247
+ elif k == "on_success_callback":
248
+ d["has_on_success_callback"] = 1
249
+
250
+ # ── AST helper utilities ──────────────────────────────────────────────
251
+
252
+ @staticmethod
253
+ def _call_name(node: ast.Call | None) -> str | None:
254
+ if node is None:
255
+ return None
256
+ f = node.func
257
+ if isinstance(f, ast.Name):
258
+ return f.id
259
+ if isinstance(f, ast.Attribute):
260
+ parts = []
261
+ cur: ast.expr = f
262
+ while isinstance(cur, ast.Attribute):
263
+ parts.append(cur.attr)
264
+ cur = cur.value
265
+ if isinstance(cur, ast.Name):
266
+ parts.append(cur.id)
267
+ return ".".join(reversed(parts))
268
+ return None
269
+
270
+ @staticmethod
271
+ def _const_str(node: ast.expr | None) -> str | None:
272
+ if node is None:
273
+ return None
274
+ if isinstance(node, ast.Constant) and isinstance(node.value, str):
275
+ return node.value
276
+ if isinstance(node, ast.Constant) and node.value is None:
277
+ return "None"
278
+ if isinstance(node, ast.Name) and node.id == "None":
279
+ return "None"
280
+ return repr(node) # non-literal: store textual representation
281
+
282
+ @staticmethod
283
+ def _const_int(node: ast.expr | None) -> int | None:
284
+ if isinstance(node, ast.Constant) and isinstance(node.value, int):
285
+ return node.value
286
+ return None
287
+
288
+ @staticmethod
289
+ def _const_bool(node: ast.expr | None) -> bool | None:
290
+ if isinstance(node, ast.Constant) and isinstance(node.value, bool):
291
+ return node.value
292
+ if isinstance(node, ast.Name):
293
+ if node.id == "True":
294
+ return True
295
+ if node.id == "False":
296
+ return False
297
+ return None
298
+
299
+ @staticmethod
300
+ def _const_list_str(node: ast.expr | None) -> str:
301
+ if not isinstance(node, (ast.List, ast.Tuple)):
302
+ return "[]"
303
+ items = []
304
+ for elt in node.elts:
305
+ if isinstance(elt, ast.Constant) and isinstance(elt.value, str):
306
+ items.append(elt.value)
307
+ return json.dumps(items)
308
+
309
+
310
+ def extract(content: str, file_path: str) -> list[dict]:
311
+ """
312
+ Parse one Airflow DAG file and return a list of feature dicts,
313
+ one per DAG definition found in the file.
314
+
315
+ Returns [{"parse_error": ..., "file_lines": ...}] on parse failure.
316
+ """
317
+ lines = content.splitlines()
318
+ file_lines = len(lines)
319
+ try:
320
+ tree = ast.parse(content, filename=file_path)
321
+ except SyntaxError as exc:
322
+ return [{"parse_error": str(exc), "file_lines": file_lines}]
323
+
324
+ visitor = _DAGVisitor()
325
+ try:
326
+ visitor.visit(tree)
327
+ except Exception as exc: # noqa: BLE001
328
+ return [{"parse_error": f"visitor: {exc}", "file_lines": file_lines}]
329
+
330
+ if not visitor.dags:
331
+ # No DAG found — could be a helper module in the dags/ folder.
332
+ return [{"parse_error": "no_dag_found", "file_lines": file_lines}]
333
+
334
+ for d in visitor.dags:
335
+ d["file_lines"] = file_lines
336
+ d.setdefault("parse_error", None)
337
+
338
+ return visitor.dags
Scripts/pipeline_parsers/dagster_parser.py ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ dagster_parser.py
3
+ ~~~~~~~~~~~~~~~~~
4
+ Extracts features from Dagster definition files.
5
+
6
+ Dagster's API has evolved significantly: pre-1.0 used Solids/Pipelines,
7
+ post-1.0 uses Assets/Ops/Jobs/Graphs. We detect both sets of decorators
8
+ and mark which paradigm is in use.
9
+ """
10
+
11
+ import ast
12
+
13
+ # Decorator/function name sets per concept
14
+ _ASSET_DECORATORS = {"asset", "multi_asset", "graph_asset", "observable_source_asset"}
15
+ _OP_DECORATORS = {"op", "solid"} # solid = pre-1.0 name
16
+ _JOB_DECORATORS = {"job", "pipeline"} # pipeline = pre-1.0
17
+ _GRAPH_DECORATORS = {"graph"}
18
+ _RESOURCE_DECS = {"resource", "configured"}
19
+ _SCHEDULE_DECS = {"schedule", "ScheduleDefinition"}
20
+ _SENSOR_DECS = {"sensor", "asset_sensor", "multi_asset_sensor",
21
+ "run_status_sensor", "run_failure_sensor"}
22
+ _PARTITION_CLASSES = {"DailyPartitionsDefinition", "WeeklyPartitionsDefinition",
23
+ "MonthlyPartitionsDefinition", "HourlyPartitionsDefinition",
24
+ "StaticPartitionsDefinition", "DynamicPartitionsDefinition",
25
+ "MultiPartitionsDefinition", "TimeWindowPartitionsDefinition"}
26
+ _IO_MANAGER_DECS = {"io_manager", "IOManager"}
27
+ _CONFIG_CLASSES = {"Config", "RunConfig"}
28
+ _METADATA_FUNCS = {"MetadataValue", "with_metadata"}
29
+ _FRESHNESS_CLASSES = {"FreshnessPolicy"}
30
+
31
+
32
+ def _decorator_names(node: ast.FunctionDef | ast.AsyncFunctionDef | ast.ClassDef
33
+ ) -> list[str]:
34
+ names = []
35
+ for dec in node.decorator_list:
36
+ if isinstance(dec, ast.Name):
37
+ names.append(dec.id)
38
+ elif isinstance(dec, ast.Attribute):
39
+ names.append(dec.attr)
40
+ elif isinstance(dec, ast.Call):
41
+ f = dec.func
42
+ if isinstance(f, ast.Name):
43
+ names.append(f.id)
44
+ elif isinstance(f, ast.Attribute):
45
+ names.append(f.attr)
46
+ return names
47
+
48
+
49
+ class _DagsterVisitor(ast.NodeVisitor):
50
+
51
+ def __init__(self) -> None:
52
+ self.asset_count = 0
53
+ self.op_count = 0
54
+ self.job_count = 0
55
+ self.graph_count = 0
56
+ self.resource_count = 0
57
+ self.has_partitions = False
58
+ self.has_sensors = False
59
+ self.has_schedules = False
60
+ self.uses_io_manager = False
61
+ self.uses_config_schema = False
62
+ self.uses_metadata = False
63
+ self.has_freshness_policy = False
64
+ # Anti-pattern: op/solid that returns data without IO manager reference
65
+ self._op_names: set[str] = set()
66
+ self._io_mgr_refs: int = 0
67
+
68
+ def visit_FunctionDef(self, node: ast.FunctionDef) -> None:
69
+ dnames = set(_decorator_names(node))
70
+ if dnames & _ASSET_DECORATORS:
71
+ self.asset_count += 1
72
+ if dnames & _OP_DECORATORS:
73
+ self.op_count += 1
74
+ self._op_names.add(node.name)
75
+ if dnames & _JOB_DECORATORS:
76
+ self.job_count += 1
77
+ if dnames & _GRAPH_DECORATORS:
78
+ self.graph_count += 1
79
+ if dnames & _RESOURCE_DECS:
80
+ self.resource_count += 1
81
+ if dnames & _IO_MANAGER_DECS:
82
+ self.uses_io_manager = True
83
+ self._io_mgr_refs += 1
84
+ if dnames & _SCHEDULE_DECS:
85
+ self.has_schedules = True
86
+ if dnames & _SENSOR_DECS:
87
+ self.has_sensors = True
88
+ self.generic_visit(node)
89
+
90
+ visit_AsyncFunctionDef = visit_FunctionDef
91
+
92
+ def visit_ClassDef(self, node: ast.ClassDef) -> None:
93
+ dnames = set(_decorator_names(node))
94
+ if node.name in _PARTITION_CLASSES or any(
95
+ isinstance(b, ast.Name) and b.id in _PARTITION_CLASSES
96
+ for b in node.bases
97
+ ):
98
+ self.has_partitions = True
99
+ if dnames & _IO_MANAGER_DECS or node.name in _IO_MANAGER_DECS:
100
+ self.uses_io_manager = True
101
+ if node.name in _CONFIG_CLASSES or any(
102
+ isinstance(b, ast.Name) and b.id in _CONFIG_CLASSES for b in node.bases
103
+ ):
104
+ self.uses_config_schema = True
105
+ if node.name in _FRESHNESS_CLASSES:
106
+ self.has_freshness_policy = True
107
+ self.generic_visit(node)
108
+
109
+ def visit_Call(self, node: ast.Call) -> None:
110
+ f = node.func
111
+ name = ""
112
+ if isinstance(f, ast.Name):
113
+ name = f.id
114
+ elif isinstance(f, ast.Attribute):
115
+ name = f.attr
116
+ if name in _PARTITION_CLASSES:
117
+ self.has_partitions = True
118
+ if name in _METADATA_FUNCS:
119
+ self.uses_metadata = True
120
+ if name in _FRESHNESS_CLASSES:
121
+ self.has_freshness_policy = True
122
+ if name in {"ScheduleDefinition", "build_schedule_from_partitioned_job"}:
123
+ self.has_schedules = True
124
+ if name in {"SensorDefinition"} or "sensor" in name.lower():
125
+ self.has_sensors = True
126
+ # io_manager reference in function call arguments
127
+ for kw in node.keywords:
128
+ if kw.arg in ("io_manager", "io_manager_key", "io_manager_def"):
129
+ self.uses_io_manager = True
130
+ self._io_mgr_refs += 1
131
+ self.generic_visit(node)
132
+
133
+ @property
134
+ def antipattern_op_without_io_manager(self) -> int:
135
+ # Op/solid definitions exist but no IOManager is configured anywhere
136
+ return int(self.op_count > 0 and self._io_mgr_refs == 0)
137
+
138
+ @property
139
+ def antipattern_no_metadata(self) -> int:
140
+ return int(self.asset_count > 0 and not self.uses_metadata)
141
+
142
+
143
+ def extract(content: str, file_path: str) -> dict:
144
+ """
145
+ Parse one Dagster definition file.
146
+ Returns a feature dict for dagster_features.
147
+ """
148
+ lines = content.splitlines()
149
+ file_lines = len(lines)
150
+ try:
151
+ tree = ast.parse(content, filename=file_path)
152
+ except SyntaxError as exc:
153
+ return {"parse_error": str(exc), "file_lines": file_lines}
154
+
155
+ v = _DagsterVisitor()
156
+ try:
157
+ v.visit(tree)
158
+ except Exception as exc: # noqa: BLE001
159
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines}
160
+
161
+ return {
162
+ "asset_count": v.asset_count,
163
+ "op_count": v.op_count,
164
+ "job_count": v.job_count,
165
+ "graph_count": v.graph_count,
166
+ "resource_count": v.resource_count,
167
+ "has_partitions": int(v.has_partitions),
168
+ "has_sensors": int(v.has_sensors),
169
+ "has_schedules": int(v.has_schedules),
170
+ "uses_io_manager": int(v.uses_io_manager),
171
+ "uses_config_schema": int(v.uses_config_schema),
172
+ "uses_metadata": int(v.uses_metadata),
173
+ "has_freshness_policy": int(v.has_freshness_policy),
174
+ "antipattern_op_without_io_manager": v.antipattern_op_without_io_manager,
175
+ "antipattern_no_metadata": v.antipattern_no_metadata,
176
+ "file_lines": file_lines,
177
+ "parse_error": None,
178
+ }
Scripts/pipeline_parsers/dbt_parser.py ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ dbt_parser.py
3
+ ~~~~~~~~~~~~~
4
+ Feature extraction for dbt SQL models and dbt_project.yml / schema.yml files.
5
+
6
+ SQL parsing uses regex rather than a full SQL parser because dbt models
7
+ are templated Jinja2+SQL, which most parsers reject. We extract structural
8
+ signals (CTEs, JOINs, window functions, ref/source calls) with targeted
9
+ patterns rather than attempting full syntax analysis.
10
+ """
11
+
12
+ import json
13
+ import re
14
+ from pathlib import PurePosixPath
15
+
16
+ # ── dbt Jinja macro patterns ──────────────────────────────────────────────────
17
+ _REF_RE = re.compile(r"\{\{\s*ref\s*\(\s*['\"](\w+)['\"]\s*\)\s*\}\}", re.I)
18
+ _SOURCE_RE = re.compile(r"\{\{\s*source\s*\(", re.I)
19
+ _CONFIG_RE = re.compile(r"\{\{\s*config\s*\(([^}]+)\)\s*\}\}", re.I | re.S)
20
+ _MAT_RE = re.compile(r"materialized\s*=\s*['\"](\w+)['\"]", re.I)
21
+ _UKEY_RE = re.compile(r"unique_key\s*=", re.I)
22
+
23
+ # ── SQL structural patterns ───────────────────────────────────────────────────
24
+ _CTE_RE = re.compile(r"\bWITH\b", re.I)
25
+ _JOIN_RE = re.compile(r"\b(?:INNER|LEFT|RIGHT|FULL|CROSS)?\s*JOIN\b", re.I)
26
+ _WHERE_RE = re.compile(r"\bWHERE\b", re.I)
27
+ _WINDOW_RE = re.compile(r"\bOVER\s*\(", re.I)
28
+ _LIMIT_RE = re.compile(r"\bLIMIT\s+(\d+)\b", re.I)
29
+ _STAR_RE = re.compile(r"\bSELECT\s+\*", re.I)
30
+ _INCR_RE = re.compile(r"is_incremental\s*\(\s*\)", re.I)
31
+ # Hardcoded raw table reference (FROM word without ref/source) — rough heuristic
32
+ _RAW_FROM_RE = re.compile(r"\bFROM\s+([a-zA-Z_]\w*(?:\.\w+){1,2})\b", re.I)
33
+
34
+ # ── Model layer inference from path ──────────────────────────────────────────
35
+ _LAYER_MAP = {
36
+ "staging": "staging",
37
+ "stg": "staging",
38
+ "intermediate": "intermediate",
39
+ "int": "intermediate",
40
+ "marts": "marts",
41
+ "mart": "marts",
42
+ "core": "marts",
43
+ "final": "marts",
44
+ "reporting": "marts",
45
+ }
46
+
47
+
48
+ def _infer_layer(file_path: str) -> str:
49
+ parts = PurePosixPath(file_path).parts
50
+ for part in parts:
51
+ if part.lower() in _LAYER_MAP:
52
+ return _LAYER_MAP[part.lower()]
53
+ return "other"
54
+
55
+
56
+ def _extract_materialization(content: str) -> str | None:
57
+ m = _CONFIG_RE.search(content)
58
+ if m:
59
+ inner = m.group(1)
60
+ mat = _MAT_RE.search(inner)
61
+ if mat:
62
+ return mat.group(1).lower()
63
+ return None
64
+
65
+
66
+ def extract_model(content: str, file_path: str) -> dict:
67
+ """
68
+ Parse one dbt SQL model file.
69
+ Returns a feature dict ready for INSERT into dbt_model_features.
70
+ """
71
+ lines = content.splitlines()
72
+ file_lines = len(lines)
73
+ model_name = PurePosixPath(file_path).stem
74
+
75
+ try:
76
+ ref_count = len(_REF_RE.findall(content))
77
+ source_count = len(_SOURCE_RE.findall(content))
78
+ mat = _extract_materialization(content)
79
+ uses_incr = int(bool(_INCR_RE.search(content)))
80
+ has_ukey = int(bool(_UKEY_RE.search(content)))
81
+ cte_count = len(_CTE_RE.findall(content))
82
+ has_join = int(bool(_JOIN_RE.search(content)))
83
+ has_where = int(bool(_WHERE_RE.search(content)))
84
+ has_window = int(bool(_WINDOW_RE.search(content)))
85
+ hardcoded_limit = int(bool(_LIMIT_RE.search(content)))
86
+ select_star = int(bool(_STAR_RE.search(content)))
87
+
88
+ # No ref/source + FROM literal table name = hardcoded raw table
89
+ raw_froms = _RAW_FROM_RE.findall(content)
90
+ antipattern_no_src_ref = int(
91
+ ref_count == 0 and source_count == 0 and len(raw_froms) > 0
92
+ )
93
+
94
+ return {
95
+ "model_name": model_name,
96
+ "model_layer": _infer_layer(file_path),
97
+ "materialization": mat,
98
+ "ref_count": ref_count,
99
+ "source_count": source_count,
100
+ "cte_count": cte_count,
101
+ "has_where_clause": has_where,
102
+ "has_join": has_join,
103
+ "has_window_function": has_window,
104
+ "uses_incremental": uses_incr,
105
+ "has_unique_key": has_ukey,
106
+ "hardcoded_limit": hardcoded_limit,
107
+ "select_star": select_star,
108
+ "file_lines": file_lines,
109
+ "antipattern_incremental_no_unique_key": int(uses_incr and not has_ukey),
110
+ "antipattern_select_star": select_star,
111
+ "antipattern_no_source_no_ref": antipattern_no_src_ref,
112
+ "parse_error": None,
113
+ }
114
+ except Exception as exc: # noqa: BLE001
115
+ return {"model_name": model_name, "parse_error": str(exc),
116
+ "file_lines": file_lines}
117
+
118
+
119
+ # ── dbt_project.yml / schema.yml ─────────────────────────────────────────────
120
+ try:
121
+ import yaml as _yaml
122
+ _YAML_OK = True
123
+ except ImportError:
124
+ _YAML_OK = False
125
+
126
+ _DBT_VERSION_RE = re.compile(r"require-dbt-version\s*:\s*['\"]?([^\s'\"]+)")
127
+ _MODEL_PATHS_RE = re.compile(r"model-paths\s*:\s*\[([^\]]+)\]")
128
+
129
+
130
+ def extract_project(content: str, file_path: str) -> dict:
131
+ """
132
+ Parse dbt_project.yml and return a summary dict for dbt_project_summary.
133
+ """
134
+ result: dict = {"parse_error": None}
135
+ fname = PurePosixPath(file_path).name.lower()
136
+
137
+ if fname not in ("dbt_project.yml", "dbt_project.yaml"):
138
+ result["parse_error"] = "not_dbt_project_file"
139
+ return result
140
+
141
+ if _YAML_OK:
142
+ try:
143
+ data = _yaml.safe_load(content) or {}
144
+ result["dbt_version_required"] = str(
145
+ data.get("require-dbt-version", "")
146
+ ) or None
147
+ paths = data.get("model-paths") or data.get("source-paths") or []
148
+ result["model_paths"] = json.dumps(paths)
149
+ result["has_tests_dir"] = int("test-paths" in data or "tests" in data)
150
+ result["has_snapshots"] = int("snapshot-paths" in data)
151
+ result["has_seeds"] = int("seed-paths" in data)
152
+ result["has_analyses"] = int("analysis-paths" in data)
153
+ except Exception as exc: # noqa: BLE001
154
+ result["parse_error"] = str(exc)
155
+ else:
156
+ # Regex fallback
157
+ m = _DBT_VERSION_RE.search(content)
158
+ result["dbt_version_required"] = m.group(1) if m else None
159
+ result["has_tests_dir"] = int("test-paths" in content)
160
+ result["has_snapshots"] = int("snapshot-paths" in content)
161
+ result["has_seeds"] = int("seed-paths" in content)
162
+ result["has_analyses"] = int("analysis-paths" in content)
163
+
164
+ return result
165
+
166
+
167
+ def extract_schema(content: str, file_path: str) -> dict:
168
+ """
169
+ Parse a models/**/schema.yml and return per-model test coverage signals.
170
+ Returns a lightweight dict: {model_name: has_tests, ...}
171
+ Caller merges this into dbt_model_features rows.
172
+ """
173
+ coverage: dict[str, int] = {}
174
+ if not _YAML_OK:
175
+ return coverage
176
+ try:
177
+ data = _yaml.safe_load(content) or {}
178
+ for model in data.get("models", []):
179
+ name = model.get("name", "")
180
+ tests = model.get("tests", []) or []
181
+ col_tests = any(
182
+ col.get("tests") for col in model.get("columns", [])
183
+ )
184
+ coverage[name] = int(bool(tests) or col_tests)
185
+ except Exception: # noqa: BLE001
186
+ pass
187
+ return coverage
Scripts/pipeline_parsers/other_parsers.py ADDED
@@ -0,0 +1,441 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ other_parsers.py
3
+ ~~~~~~~~~~~~~~~~
4
+ Feature extractors for Luigi, Kedro, Apache Beam, and dlt.
5
+
6
+ Each exposes an extract(content, file_path) -> dict function
7
+ matching the contract of the other parser modules.
8
+ """
9
+
10
+ import ast
11
+ import json
12
+ import re
13
+
14
+ # ══════════════════════════════════════════════════════════════════════════════
15
+ # Luigi
16
+ # ══════════════════════════════════════════════════════════════════════════════
17
+
18
+ _TARGET_TYPES = {
19
+ "LocalTarget": "local",
20
+ "S3Target": "s3",
21
+ "GCSTarget": "gcs",
22
+ "GCSFlagTarget": "gcs",
23
+ "HdfsTarget": "hdfs",
24
+ "HdfsFlag": "hdfs",
25
+ "AtomicLocalFile": "local",
26
+ "MockTarget": "mock",
27
+ "PostgresTarget": "postgres",
28
+ "BigQueryTarget": "bigquery",
29
+ }
30
+
31
+ _LUIGI_EXTERNAL = {"ExternalTask", "ExternalProgram"}
32
+
33
+ _HARDCODED_PATH_RE = re.compile(
34
+ r'LocalTarget\s*\(\s*["\']([^"\']+/[^"\']+)["\']', # literal path with slash
35
+ re.S,
36
+ )
37
+
38
+
39
+ class _LuigiVisitor(ast.NodeVisitor):
40
+
41
+ def __init__(self) -> None:
42
+ self.task_count = 0
43
+ self.target_types: set[str] = set()
44
+ self.uses_external_task = False
45
+ self.has_dynamic_requires = False
46
+ self.task_names: list[str] = []
47
+ self._task_has_run: set[str] = set()
48
+ self._task_has_output: set[str] = set()
49
+ self._requires_nodes: dict[str, ast.FunctionDef] = {}
50
+
51
+ def visit_ClassDef(self, node: ast.ClassDef) -> None:
52
+ is_task = any(
53
+ (isinstance(b, ast.Name) and (b.id == "Task" or b.id.endswith("Task")))
54
+ or (isinstance(b, ast.Attribute) and b.attr == "Task")
55
+ for b in node.bases
56
+ )
57
+ is_external = any(
58
+ isinstance(b, ast.Name) and b.id in _LUIGI_EXTERNAL
59
+ for b in node.bases
60
+ )
61
+ if is_task or is_external:
62
+ self.task_count += 1
63
+ self.task_names.append(node.name)
64
+ if is_external:
65
+ self.uses_external_task = True
66
+ # Inspect methods
67
+ for item in ast.walk(node):
68
+ if isinstance(item, ast.FunctionDef):
69
+ if item.name == "run":
70
+ self._task_has_run.add(node.name)
71
+ if item.name == "output":
72
+ self._task_has_output.add(node.name)
73
+ if item.name == "requires":
74
+ self._requires_nodes[node.name] = item
75
+ self.generic_visit(node)
76
+
77
+ def visit_Call(self, node: ast.Call) -> None:
78
+ f = node.func
79
+ name = ""
80
+ if isinstance(f, ast.Name):
81
+ name = f.id
82
+ elif isinstance(f, ast.Attribute):
83
+ name = f.attr
84
+ if name in _TARGET_TYPES:
85
+ self.target_types.add(_TARGET_TYPES[name])
86
+ self.generic_visit(node)
87
+
88
+ def _check_dynamic_requires(self) -> None:
89
+ for fname, req_node in self._requires_nodes.items():
90
+ for n in ast.walk(req_node):
91
+ # Dynamic requires: list comprehension, yield, or conditional return
92
+ if isinstance(n, (ast.ListComp, ast.GeneratorExp,
93
+ ast.YieldFrom, ast.Yield)):
94
+ self.has_dynamic_requires = True
95
+ return
96
+ if isinstance(n, ast.If):
97
+ self.has_dynamic_requires = True
98
+ return
99
+
100
+ @property
101
+ def antipattern_missing_output(self) -> int:
102
+ tasks_with_run_no_output = (
103
+ self._task_has_run - self._task_has_output - self.uses_external_task_names
104
+ )
105
+ return int(bool(tasks_with_run_no_output))
106
+
107
+ @property
108
+ def uses_external_task_names(self) -> set:
109
+ return set() # Sentinel; external tasks don't need output()
110
+
111
+
112
+ def extract_luigi(content: str, file_path: str) -> dict:
113
+ lines = content.splitlines()
114
+ file_lines = len(lines)
115
+ try:
116
+ tree = ast.parse(content, filename=file_path)
117
+ except SyntaxError as exc:
118
+ return {"parse_error": str(exc), "file_lines": file_lines}
119
+
120
+ v = _LuigiVisitor()
121
+ try:
122
+ v.visit(tree)
123
+ v._check_dynamic_requires()
124
+ except Exception as exc: # noqa: BLE001
125
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines}
126
+
127
+ hardcoded = bool(_HARDCODED_PATH_RE.search(content))
128
+
129
+ return {
130
+ "task_count": v.task_count,
131
+ "uses_local_target": int("local" in v.target_types),
132
+ "uses_s3_target": int("s3" in v.target_types),
133
+ "uses_gcs_target": int("gcs" in v.target_types),
134
+ "uses_hdfs_target": int("hdfs" in v.target_types),
135
+ "uses_external_task": int(v.uses_external_task),
136
+ "has_dynamic_requires": int(v.has_dynamic_requires),
137
+ "has_run_method": int(bool(v._task_has_run)),
138
+ "has_output_method": int(bool(v._task_has_output)),
139
+ "antipattern_missing_output": int(
140
+ bool(v._task_has_run - v._task_has_output)
141
+ ),
142
+ "antipattern_hardcoded_path": int(hardcoded),
143
+ "file_lines": file_lines,
144
+ "parse_error": None,
145
+ }
146
+
147
+
148
+ # ══════════════════════════════════════════════════════════════════════════════
149
+ # Kedro
150
+ # ══════════════════════════════════════════════════════════════════════════════
151
+
152
+ try:
153
+ import yaml as _yaml
154
+ _YAML_OK = True
155
+ except ImportError:
156
+ _YAML_OK = False
157
+
158
+
159
+ class _KedroVisitor(ast.NodeVisitor):
160
+
161
+ def __init__(self) -> None:
162
+ self.node_count = 0
163
+ self.pipeline_count = 0
164
+ self.dataset_types: set[str] = set()
165
+ self.uses_versioning = False
166
+ self.uses_partitioned = False
167
+
168
+ def visit_Call(self, node: ast.Call) -> None:
169
+ f = node.func
170
+ name = ""
171
+ if isinstance(f, ast.Name):
172
+ name = f.id
173
+ elif isinstance(f, ast.Attribute):
174
+ name = f.attr
175
+ if name == "node":
176
+ self.node_count += 1
177
+ if name in ("pipeline", "Pipeline"):
178
+ self.pipeline_count += 1
179
+ if "Dataset" in name or "DataSet" in name:
180
+ self.dataset_types.add(name)
181
+ if name == "PartitionedDataset" or name == "PartitionedDataSet":
182
+ self.uses_partitioned = True
183
+ for kw in node.keywords:
184
+ if kw.arg == "versioned":
185
+ if isinstance(kw.value, ast.Constant) and kw.value.value:
186
+ self.uses_versioning = True
187
+ self.generic_visit(node)
188
+
189
+
190
+ def extract_kedro(content: str, file_path: str) -> dict:
191
+ """Parse a Kedro pipeline Python file."""
192
+ lines = content.splitlines()
193
+ file_lines = len(lines)
194
+ try:
195
+ tree = ast.parse(content, filename=file_path)
196
+ except SyntaxError as exc:
197
+ return {"parse_error": str(exc), "file_lines": file_lines}
198
+
199
+ v = _KedroVisitor()
200
+ try:
201
+ v.visit(tree)
202
+ except Exception as exc: # noqa: BLE001
203
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines}
204
+
205
+ return {
206
+ "node_count": v.node_count,
207
+ "pipeline_count": v.pipeline_count,
208
+ "dataset_types": json.dumps(sorted(v.dataset_types)),
209
+ "uses_versioning": int(v.uses_versioning),
210
+ "uses_partitioned_ds": int(v.uses_partitioned),
211
+ "file_lines": file_lines,
212
+ "parse_error": None,
213
+ }
214
+
215
+
216
+ def extract_kedro_catalog(content: str, file_path: str) -> dict:
217
+ """Parse catalog.yml and extract dataset type inventory."""
218
+ result = {"has_catalog_file": 1, "dataset_types": "[]", "parse_error": None}
219
+ if not _YAML_OK:
220
+ result["parse_error"] = "pyyaml_not_installed"
221
+ return result
222
+ try:
223
+ data = _yaml.safe_load(content) or {}
224
+ types: list[str] = []
225
+ for ds_name, ds_conf in data.items():
226
+ if isinstance(ds_conf, dict) and "type" in ds_conf:
227
+ types.append(ds_conf["type"])
228
+ result["dataset_types"] = json.dumps(sorted(set(types)))
229
+ result["uses_versioning"] = int(
230
+ any(
231
+ ds_conf.get("versioned") is True
232
+ for ds_conf in data.values()
233
+ if isinstance(ds_conf, dict)
234
+ )
235
+ )
236
+ result["uses_partitioned_ds"] = int(
237
+ any("Partitioned" in t for t in types)
238
+ )
239
+ except Exception as exc: # noqa: BLE001
240
+ result["parse_error"] = str(exc)
241
+ return result
242
+
243
+
244
+ # ══════════════════════════════════════════════════════════════════════════════
245
+ # Apache Beam
246
+ # ══════════════════════════════════════════════════════════════════════════════
247
+
248
+ _RUNNER_RE = re.compile(
249
+ r"(DirectRunner|DataflowRunner|SparkRunner|FlinkRunner|"
250
+ r"PortableRunner|InteractiveRunner)",
251
+ re.I,
252
+ )
253
+
254
+
255
+ class _BeamVisitor(ast.NodeVisitor):
256
+
257
+ def __init__(self) -> None:
258
+ self.ptransform_count = 0
259
+ self.pardo_count = 0
260
+ self.combinefn_count = 0
261
+ self.uses_windowing = False
262
+ self.uses_side_inputs = False
263
+ self.uses_state_timers = False
264
+ self.runner_type: str | None = None
265
+
266
+ def visit_ClassDef(self, node: ast.ClassDef) -> None:
267
+ for base in node.bases:
268
+ base_name = ""
269
+ if isinstance(base, ast.Name):
270
+ base_name = base.id
271
+ elif isinstance(base, ast.Attribute):
272
+ base_name = base.attr
273
+ if base_name == "PTransform" or base_name.endswith("PTransform"):
274
+ self.ptransform_count += 1
275
+ if base_name in ("DoFn", "ParDo"):
276
+ self.pardo_count += 1
277
+ if base_name == "CombineFn":
278
+ self.combinefn_count += 1
279
+ if "StatefulDoFn" in base_name or "Timer" in base_name:
280
+ self.uses_state_timers = True
281
+ self.generic_visit(node)
282
+
283
+ def visit_Call(self, node: ast.Call) -> None:
284
+ f = node.func
285
+ name = ""
286
+ if isinstance(f, ast.Name):
287
+ name = f.id
288
+ elif isinstance(f, ast.Attribute):
289
+ name = f.attr
290
+ if name in ("WindowInto", "window", "FixedWindows", "SlidingWindows",
291
+ "Sessions", "GlobalWindows"):
292
+ self.uses_windowing = True
293
+ if name == "AsSingleton" or name == "AsIter" or name == "AsList":
294
+ self.uses_side_inputs = True
295
+ if name in ("ParDo", "FlatMap", "Map"):
296
+ self.pardo_count += 1
297
+ self.generic_visit(node)
298
+
299
+
300
+ def extract_beam(content: str, file_path: str) -> dict:
301
+ """Parse an Apache Beam pipeline file."""
302
+ lines = content.splitlines()
303
+ file_lines = len(lines)
304
+
305
+ runner_match = _RUNNER_RE.search(content)
306
+ runner = runner_match.group(1) if runner_match else None
307
+
308
+ try:
309
+ tree = ast.parse(content, filename=file_path)
310
+ except SyntaxError as exc:
311
+ return {"parse_error": str(exc), "file_lines": file_lines,
312
+ "runner_type": runner}
313
+
314
+ v = _BeamVisitor()
315
+ v.runner_type = runner
316
+ try:
317
+ v.visit(tree)
318
+ except Exception as exc: # noqa: BLE001
319
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines,
320
+ "runner_type": runner}
321
+
322
+ return {
323
+ "ptransform_count": v.ptransform_count,
324
+ "pardo_count": v.pardo_count,
325
+ "combinefn_count": v.combinefn_count,
326
+ "runner_type": runner,
327
+ "uses_windowing": int(v.uses_windowing),
328
+ "uses_side_inputs": int(v.uses_side_inputs),
329
+ "uses_state_and_timers": int(v.uses_state_timers),
330
+ "file_lines": file_lines,
331
+ "parse_error": None,
332
+ }
333
+
334
+
335
+ # ══════════════════════════════════════════════════════════════════════════════
336
+ # dlt (data load tool)
337
+ # ══════════════════════════════════════════════════════════════════════════════
338
+
339
+ _DESTINATION_RE = re.compile(
340
+ r'dlt\.destination\s*\(\s*["\'](\w+)["\']'
341
+ r'|pipeline\s*\([^)]*destination\s*=\s*(\w+)',
342
+ re.I,
343
+ )
344
+ _KNOWN_DESTINATIONS = {
345
+ "bigquery", "snowflake", "redshift", "postgres", "duckdb",
346
+ "filesystem", "s3", "gcs", "azure", "databricks", "motherduck",
347
+ "synapse", "clickhouse",
348
+ }
349
+
350
+
351
+ class _DltVisitor(ast.NodeVisitor):
352
+
353
+ def __init__(self) -> None:
354
+ self.source_count = 0
355
+ self.resource_count = 0
356
+ self.transformer_count = 0
357
+ self.uses_incremental = False
358
+ self.uses_schema_contracts = False
359
+ self.destinations: set[str] = set()
360
+
361
+ def _dlt_decorator(self, node: ast.FunctionDef | ast.AsyncFunctionDef) -> None:
362
+ for dec in node.decorator_list:
363
+ if isinstance(dec, ast.Attribute):
364
+ if dec.attr == "source":
365
+ self.source_count += 1
366
+ elif dec.attr == "resource":
367
+ self.resource_count += 1
368
+ elif dec.attr == "transformer":
369
+ self.transformer_count += 1
370
+ elif isinstance(dec, ast.Call):
371
+ f = dec.func
372
+ attr = f.attr if isinstance(f, ast.Attribute) else ""
373
+ if attr == "source":
374
+ self.source_count += 1
375
+ elif attr == "resource":
376
+ self.resource_count += 1
377
+ elif attr == "transformer":
378
+ self.transformer_count += 1
379
+ # Check for incremental in resource decorator
380
+ for kw in dec.keywords:
381
+ if kw.arg == "primary_key" or kw.arg == "merge_key":
382
+ self.uses_incremental = True
383
+
384
+ def visit_FunctionDef(self, node: ast.FunctionDef) -> None:
385
+ self._dlt_decorator(node)
386
+ self.generic_visit(node)
387
+
388
+ visit_AsyncFunctionDef = visit_FunctionDef
389
+
390
+ def visit_Call(self, node: ast.Call) -> None:
391
+ f = node.func
392
+ name = f.attr if isinstance(f, ast.Attribute) else (
393
+ f.id if isinstance(f, ast.Name) else ""
394
+ )
395
+ if name == "pipeline":
396
+ for kw in node.keywords:
397
+ if kw.arg == "destination":
398
+ dest = (
399
+ kw.value.id if isinstance(kw.value, ast.Name) else
400
+ kw.value.value if isinstance(kw.value, ast.Constant) else ""
401
+ )
402
+ if dest:
403
+ self.destinations.add(dest.lower())
404
+ if name == "incremental" or name == "Incremental":
405
+ self.uses_incremental = True
406
+ if name in ("SchemaContract", "schema_contract"):
407
+ self.uses_schema_contracts = True
408
+ self.generic_visit(node)
409
+
410
+
411
+ def extract_dlt(content: str, file_path: str) -> dict:
412
+ """Parse a dlt pipeline file."""
413
+ lines = content.splitlines()
414
+ file_lines = len(lines)
415
+ try:
416
+ tree = ast.parse(content, filename=file_path)
417
+ except SyntaxError as exc:
418
+ return {"parse_error": str(exc), "file_lines": file_lines}
419
+
420
+ v = _DltVisitor()
421
+ try:
422
+ v.visit(tree)
423
+ except Exception as exc: # noqa: BLE001
424
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines}
425
+
426
+ # Supplement with regex for destination strings in module-level calls
427
+ for m in _DESTINATION_RE.finditer(content):
428
+ dest = (m.group(1) or m.group(2) or "").lower()
429
+ if dest:
430
+ v.destinations.add(dest)
431
+
432
+ return {
433
+ "source_count": v.source_count,
434
+ "resource_count": v.resource_count,
435
+ "destination_types": json.dumps(sorted(v.destinations)),
436
+ "uses_incremental": int(v.uses_incremental),
437
+ "uses_schema_contracts": int(v.uses_schema_contracts),
438
+ "uses_transformers": int(v.transformer_count > 0),
439
+ "file_lines": file_lines,
440
+ "parse_error": None,
441
+ }
Scripts/pipeline_parsers/prefect_parser.py ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ prefect_parser.py
3
+ ~~~~~~~~~~~~~~~~~
4
+ Extracts features from Prefect flow files (both 1.x and 2.x/3.x APIs).
5
+
6
+ Prefect 1.x uses class-based flows (@task on free functions, Flow context manager).
7
+ Prefect 2.x/3.x uses @flow and @task decorators directly.
8
+ We detect both patterns via AST.
9
+ """
10
+
11
+ import ast
12
+ import json
13
+ from typing import Any
14
+
15
+
16
+ def _decorator_names(node: ast.FunctionDef | ast.AsyncFunctionDef) -> list[str]:
17
+ names = []
18
+ for dec in node.decorator_list:
19
+ if isinstance(dec, ast.Name):
20
+ names.append(dec.id)
21
+ elif isinstance(dec, ast.Attribute):
22
+ names.append(dec.attr)
23
+ elif isinstance(dec, ast.Call):
24
+ f = dec.func
25
+ if isinstance(f, ast.Name):
26
+ names.append(f.id)
27
+ elif isinstance(f, ast.Attribute):
28
+ names.append(f.attr)
29
+ return names
30
+
31
+
32
+ def _kw_value(node: ast.Call, name: str) -> ast.expr | None:
33
+ for kw in node.keywords:
34
+ if kw.arg == name:
35
+ return kw.value
36
+ return None
37
+
38
+
39
+ def _const_int(node: ast.expr | None) -> int | None:
40
+ if isinstance(node, ast.Constant) and isinstance(node.value, int):
41
+ return node.value
42
+ return None
43
+
44
+
45
+ def _const_bool(node: ast.expr | None) -> bool | None:
46
+ if isinstance(node, ast.Constant) and isinstance(node.value, bool):
47
+ return node.value
48
+ if isinstance(node, ast.Name):
49
+ return {"True": True, "False": False}.get(node.id)
50
+ return None
51
+
52
+
53
+ class _PrefectVisitor(ast.NodeVisitor):
54
+
55
+ def __init__(self) -> None:
56
+ self.flow_count = 0
57
+ self.task_count = 0
58
+ self.max_retries = 0
59
+ self.has_retries = False
60
+ self.has_schedule = False
61
+ self.has_timeout = False
62
+ self.uses_result_caching = False
63
+ self.uses_state_handler = False
64
+ self.uses_mapped_tasks = False
65
+ self.has_deployment_block = False
66
+ self.prefect_version = "unknown"
67
+ self._imports: set[str] = set()
68
+
69
+ def visit_Import(self, node: ast.Import) -> None:
70
+ for alias in node.names:
71
+ self._imports.add(alias.name)
72
+ self.generic_visit(node)
73
+
74
+ def visit_ImportFrom(self, node: ast.ImportFrom) -> None:
75
+ if node.module:
76
+ self._imports.add(node.module)
77
+ # Version detection
78
+ if node.module.startswith("prefect."):
79
+ if "deployments" in node.module or "flows" in node.module:
80
+ self.prefect_version = "2.x"
81
+ if node.module == "prefect" and any(
82
+ a.name in ("flow", "task") for a in node.names
83
+ ):
84
+ self.prefect_version = "2.x"
85
+ self.generic_visit(node)
86
+
87
+ def _inspect_flow_decorator(self, dec: ast.expr) -> None:
88
+ if not isinstance(dec, ast.Call):
89
+ return
90
+ if _kw_value(dec, "schedule") is not None:
91
+ self.has_schedule = True
92
+ timeout = _kw_value(dec, "timeout_seconds")
93
+ if timeout is not None:
94
+ self.has_timeout = True
95
+
96
+ def _inspect_task_decorator(self, dec: ast.expr) -> None:
97
+ if not isinstance(dec, ast.Call):
98
+ return
99
+ retries = _kw_value(dec, "retries") or _kw_value(dec, "max_retries")
100
+ if retries is not None:
101
+ self.has_retries = True
102
+ v = _const_int(retries)
103
+ if v is not None and v > self.max_retries:
104
+ self.max_retries = v
105
+ if _kw_value(dec, "cache_key_fn") is not None:
106
+ self.uses_result_caching = True
107
+ if _kw_value(dec, "result_storage") is not None:
108
+ self.uses_result_caching = True
109
+
110
+ def visit_FunctionDef(self, node: ast.FunctionDef) -> None:
111
+ dnames = _decorator_names(node)
112
+ if "flow" in dnames:
113
+ self.flow_count += 1
114
+ for dec in node.decorator_list:
115
+ self._inspect_flow_decorator(dec)
116
+ if "task" in dnames:
117
+ self.task_count += 1
118
+ for dec in node.decorator_list:
119
+ self._inspect_task_decorator(dec)
120
+ self.generic_visit(node)
121
+
122
+ visit_AsyncFunctionDef = visit_FunctionDef
123
+
124
+ def visit_With(self, node: ast.With) -> None:
125
+ """Prefect 1.x: with Flow(...) as flow:"""
126
+ for item in node.items:
127
+ if isinstance(item.context_expr, ast.Call):
128
+ f = item.context_expr.func
129
+ name = f.id if isinstance(f, ast.Name) else (
130
+ f.attr if isinstance(f, ast.Attribute) else ""
131
+ )
132
+ if name == "Flow":
133
+ self.flow_count += 1
134
+ self.prefect_version = "1.x"
135
+ sched = _kw_value(item.context_expr, "schedule")
136
+ if sched is not None:
137
+ self.has_schedule = True
138
+ self.generic_visit(node)
139
+
140
+ def visit_Call(self, node: ast.Call) -> None:
141
+ f = node.func
142
+ name = ""
143
+ if isinstance(f, ast.Attribute):
144
+ name = f.attr
145
+ # .map() for Prefect 1.x mapped tasks
146
+ if name == "map":
147
+ self.uses_mapped_tasks = True
148
+ # unmapped() for Prefect 2.x mapped tasks
149
+ if isinstance(f, ast.Name) and f.id == "unmapped":
150
+ self.uses_mapped_tasks = True
151
+ # Deployment block
152
+ if isinstance(f, ast.Name) and f.id in ("Deployment", "deploy"):
153
+ self.has_deployment_block = True
154
+ if isinstance(f, ast.Attribute) and f.attr in ("Deployment", "deploy"):
155
+ self.has_deployment_block = True
156
+ # State handlers (Prefect 1.x)
157
+ for kw in node.keywords:
158
+ if kw.arg == "state_handlers":
159
+ self.uses_state_handler = True
160
+ self.generic_visit(node)
161
+
162
+
163
+ def extract(content: str, file_path: str) -> dict:
164
+ """
165
+ Parse one Prefect flow file.
166
+ Returns a feature dict for prefect_flow_features.
167
+ """
168
+ lines = content.splitlines()
169
+ file_lines = len(lines)
170
+ try:
171
+ tree = ast.parse(content, filename=file_path)
172
+ except SyntaxError as exc:
173
+ return {"parse_error": str(exc), "file_lines": file_lines}
174
+
175
+ v = _PrefectVisitor()
176
+ try:
177
+ v.visit(tree)
178
+ except Exception as exc: # noqa: BLE001
179
+ return {"parse_error": f"visitor: {exc}", "file_lines": file_lines}
180
+
181
+ return {
182
+ "prefect_version": v.prefect_version,
183
+ "flow_count": v.flow_count,
184
+ "task_count": v.task_count,
185
+ "has_retries": int(v.has_retries),
186
+ "max_retries": v.max_retries or None,
187
+ "has_schedule": int(v.has_schedule),
188
+ "has_timeout": int(v.has_timeout),
189
+ "uses_result_caching": int(v.uses_result_caching),
190
+ "uses_state_handler": int(v.uses_state_handler),
191
+ "uses_mapped_tasks": int(v.uses_mapped_tasks),
192
+ "has_deployment_block": int(v.has_deployment_block),
193
+ "antipattern_no_retries": int(not v.has_retries),
194
+ "antipattern_no_timeout": int(not v.has_timeout),
195
+ "file_lines": file_lines,
196
+ "parse_error": None,
197
+ }
Scripts/pipeline_schema.sql ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -- DEPosit: Pipeline artifact tables
2
+ -- Applied automatically by collect_pipeline_artifacts.py on first run.
3
+ -- Manual init: sqlite3 Data/DE_pipeline_artifacts.db < Scripts/pipeline_schema.sql
4
+
5
+ -- ── Collection progress (including repos with 0 matched artifacts) ─────────
6
+ CREATE TABLE IF NOT EXISTS repo_scan_status (
7
+ repo_full_name TEXT PRIMARY KEY,
8
+ artifact_file_count INTEGER NOT NULL,
9
+ tree_status TEXT, -- ok | 404 | empty | truncated | http_*
10
+ scanned_at TEXT NOT NULL
11
+ );
12
+
13
+ -- ── Discovery ──────────────────────────────────────────────────────────────
14
+ CREATE TABLE IF NOT EXISTS pipeline_files (
15
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
16
+ repo_full_name TEXT NOT NULL,
17
+ file_path TEXT NOT NULL,
18
+ artifact_type TEXT NOT NULL, -- airflow_dag | dbt_model | dbt_schema |
19
+ -- prefect_flow | dagster | luigi |
20
+ -- kedro | beam | dlt | mage_block
21
+ file_sha TEXT, -- git blob SHA
22
+ file_size_bytes INTEGER,
23
+ collected_at TEXT NOT NULL,
24
+ parse_error TEXT, -- NULL when parsing succeeded
25
+ UNIQUE(repo_full_name, file_path)
26
+ );
27
+
28
+ -- ── Airflow ─────────────────────────────────────────────────────────────────
29
+ CREATE TABLE IF NOT EXISTS airflow_dag_features (
30
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
31
+ repo_full_name TEXT NOT NULL,
32
+ file_path TEXT NOT NULL,
33
+ dag_id TEXT,
34
+ schedule_interval TEXT, -- cron expr, timedelta repr, preset, or NULL
35
+ schedule_type TEXT, -- cron | timedelta | preset | none | dynamic
36
+ catchup INTEGER, -- 0/1/NULL (NULL = not set, inherits default)
37
+ max_active_runs INTEGER,
38
+ default_retries INTEGER,
39
+ default_retry_delay_seconds INTEGER,
40
+ task_count INTEGER,
41
+ edge_count INTEGER, -- explicit dependency edges
42
+ unique_operator_count INTEGER,
43
+ operator_types TEXT, -- JSON array of operator class names
44
+ has_python_operator INTEGER, -- 0/1
45
+ has_bash_operator INTEGER,
46
+ has_external_task_sensor INTEGER, -- cross-DAG coupling
47
+ has_branch_operator INTEGER,
48
+ has_trigger_rule INTEGER, -- non-default trigger rules
49
+ uses_xcom INTEGER, -- xcom_push/xcom_pull detected
50
+ uses_pools INTEGER,
51
+ uses_connections INTEGER, -- conn_id parameter present
52
+ has_sla INTEGER, -- sla= or sla_miss_callback
53
+ has_on_failure_callback INTEGER,
54
+ has_on_success_callback INTEGER,
55
+ dag_tags TEXT, -- JSON array
56
+ -- Anti-pattern flags (directly usable as SE research features)
57
+ antipattern_catchup_no_maxruns INTEGER, -- catchup=True with no max_active_runs
58
+ antipattern_no_retries INTEGER, -- no retry config anywhere in DAG
59
+ antipattern_no_failure_cb INTEGER, -- no failure callback
60
+ antipattern_no_schedule INTEGER, -- schedule_interval=None (orphaned DAG)
61
+ antipattern_bare_xcom INTEGER, -- xcom used for large data transfer
62
+ file_lines INTEGER,
63
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
64
+ );
65
+
66
+ -- ── dbt ─────────────────────────────────────────────────────────────────────
67
+ CREATE TABLE IF NOT EXISTS dbt_model_features (
68
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
69
+ repo_full_name TEXT NOT NULL,
70
+ file_path TEXT NOT NULL,
71
+ model_name TEXT NOT NULL,
72
+ model_layer TEXT, -- staging | intermediate | marts | other
73
+ materialization TEXT, -- view | table | incremental | ephemeral | NULL
74
+ ref_count INTEGER, -- upstream dbt model dependencies
75
+ source_count INTEGER, -- raw source references
76
+ cte_count INTEGER, -- WITH clause count
77
+ has_where_clause INTEGER,
78
+ has_join INTEGER,
79
+ has_window_function INTEGER,
80
+ uses_incremental INTEGER,
81
+ has_unique_key INTEGER, -- required for safe incremental models
82
+ hardcoded_limit INTEGER, -- LIMIT with literal integer (smell)
83
+ select_star INTEGER, -- SELECT * (smell)
84
+ has_tests INTEGER, -- set from schema.yml via extract_schema
85
+ file_lines INTEGER,
86
+ -- Anti-pattern flags
87
+ antipattern_incremental_no_unique_key INTEGER,
88
+ antipattern_select_star INTEGER,
89
+ antipattern_no_source_no_ref INTEGER, -- raw table name in FROM (hardcoded)
90
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
91
+ );
92
+
93
+ CREATE TABLE IF NOT EXISTS dbt_project_summary (
94
+ repo_full_name TEXT PRIMARY KEY,
95
+ dbt_version_required TEXT,
96
+ model_paths TEXT, -- JSON array from dbt_project.yml
97
+ has_tests_dir INTEGER,
98
+ has_snapshots INTEGER,
99
+ has_seeds INTEGER,
100
+ has_analyses INTEGER,
101
+ profile_outputs TEXT, -- JSON: target names from profiles.yml if present
102
+ total_model_files INTEGER,
103
+ total_schema_files INTEGER,
104
+ FOREIGN KEY(repo_full_name) REFERENCES pipeline_files(repo_full_name)
105
+ );
106
+
107
+ -- ── Prefect ──────────────────────────────────────────────────────────────────
108
+ CREATE TABLE IF NOT EXISTS prefect_flow_features (
109
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
110
+ repo_full_name TEXT NOT NULL,
111
+ file_path TEXT NOT NULL,
112
+ prefect_version TEXT, -- 1.x | 2.x inferred from imports
113
+ flow_count INTEGER,
114
+ task_count INTEGER,
115
+ has_retries INTEGER,
116
+ max_retries INTEGER,
117
+ has_schedule INTEGER,
118
+ has_timeout INTEGER,
119
+ uses_result_caching INTEGER,
120
+ uses_state_handler INTEGER,
121
+ uses_mapped_tasks INTEGER, -- .map() or unmapped() pattern
122
+ has_deployment_block INTEGER, -- Prefect 2.x deployment definition
123
+ -- Anti-patterns
124
+ antipattern_no_retries INTEGER,
125
+ antipattern_no_timeout INTEGER,
126
+ file_lines INTEGER,
127
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
128
+ );
129
+
130
+ -- ── Dagster ──────────────────────────────────────────────────────────────────
131
+ CREATE TABLE IF NOT EXISTS dagster_features (
132
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
133
+ repo_full_name TEXT NOT NULL,
134
+ file_path TEXT NOT NULL,
135
+ asset_count INTEGER,
136
+ op_count INTEGER,
137
+ job_count INTEGER,
138
+ graph_count INTEGER,
139
+ resource_count INTEGER,
140
+ has_partitions INTEGER,
141
+ has_sensors INTEGER,
142
+ has_schedules INTEGER,
143
+ uses_io_manager INTEGER,
144
+ uses_config_schema INTEGER,
145
+ uses_metadata INTEGER,
146
+ has_freshness_policy INTEGER,
147
+ -- Anti-patterns
148
+ antipattern_op_without_io_manager INTEGER, -- op returning data without IOManager
149
+ antipattern_no_metadata INTEGER,
150
+ file_lines INTEGER,
151
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
152
+ );
153
+
154
+ -- ── Luigi ────────────────────────────────────────────────────────────────────
155
+ CREATE TABLE IF NOT EXISTS luigi_task_features (
156
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
157
+ repo_full_name TEXT NOT NULL,
158
+ file_path TEXT NOT NULL,
159
+ task_count INTEGER,
160
+ max_requires_depth INTEGER, -- longest dependency chain in file
161
+ uses_local_target INTEGER,
162
+ uses_s3_target INTEGER,
163
+ uses_gcs_target INTEGER,
164
+ uses_hdfs_target INTEGER,
165
+ uses_external_task INTEGER, -- ExternalTask dependency
166
+ has_dynamic_requires INTEGER, -- requires() returns variable list
167
+ has_run_method INTEGER,
168
+ has_output_method INTEGER,
169
+ -- Anti-patterns
170
+ antipattern_missing_output INTEGER, -- run() without output()
171
+ antipattern_hardcoded_path INTEGER, -- string literal in LocalTarget
172
+ file_lines INTEGER,
173
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
174
+ );
175
+
176
+ -- ── Kedro ────────────────────────────────────────────────────────────────────
177
+ CREATE TABLE IF NOT EXISTS kedro_pipeline_features (
178
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
179
+ repo_full_name TEXT NOT NULL,
180
+ file_path TEXT NOT NULL,
181
+ node_count INTEGER,
182
+ pipeline_count INTEGER,
183
+ dataset_types TEXT, -- JSON array of dataset type strings
184
+ has_parameters_file INTEGER,
185
+ has_catalog_file INTEGER,
186
+ uses_versioning INTEGER, -- versioned datasets
187
+ uses_partitioned_ds INTEGER,
188
+ file_lines INTEGER,
189
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
190
+ );
191
+
192
+ -- ── Apache Beam ──────────────────────────────────────────────────────────────
193
+ CREATE TABLE IF NOT EXISTS beam_pipeline_features (
194
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
195
+ repo_full_name TEXT NOT NULL,
196
+ file_path TEXT NOT NULL,
197
+ ptransform_count INTEGER, -- custom PTransform subclasses
198
+ pardo_count INTEGER,
199
+ combinefn_count INTEGER,
200
+ runner_type TEXT, -- DirectRunner | DataflowRunner | SparkRunner
201
+ uses_windowing INTEGER,
202
+ uses_side_inputs INTEGER,
203
+ uses_state_and_timers INTEGER,
204
+ file_lines INTEGER,
205
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
206
+ );
207
+
208
+ -- ── dlt (data load tool) ────────────────────────────────────────────────────
209
+ CREATE TABLE IF NOT EXISTS dlt_features (
210
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
211
+ repo_full_name TEXT NOT NULL,
212
+ file_path TEXT NOT NULL,
213
+ source_count INTEGER, -- @dlt.source decorated functions
214
+ resource_count INTEGER, -- @dlt.resource decorated functions
215
+ destination_types TEXT, -- JSON array: bigquery, snowflake, etc.
216
+ uses_incremental INTEGER,
217
+ uses_schema_contracts INTEGER,
218
+ uses_transformers INTEGER, -- @dlt.transformer
219
+ file_lines INTEGER,
220
+ FOREIGN KEY(repo_full_name, file_path) REFERENCES pipeline_files(repo_full_name, file_path)
221
+ );
222
+
223
+ -- ── Indexes ──────────────────────────────────────────────────────────────────
224
+ CREATE INDEX IF NOT EXISTS idx_pf_repo ON pipeline_files(repo_full_name);
225
+ CREATE INDEX IF NOT EXISTS idx_pf_type ON pipeline_files(artifact_type);
226
+ CREATE INDEX IF NOT EXISTS idx_adf_repo ON airflow_dag_features(repo_full_name);
227
+ CREATE INDEX IF NOT EXISTS idx_dbt_repo ON dbt_model_features(repo_full_name);
228
+ CREATE INDEX IF NOT EXISTS idx_prf_repo ON prefect_flow_features(repo_full_name);
229
+ CREATE INDEX IF NOT EXISTS idx_dag_repo ON dagster_features(repo_full_name);
230
+ CREATE INDEX IF NOT EXISTS idx_lui_repo ON luigi_task_features(repo_full_name);
231
+ CREATE INDEX IF NOT EXISTS idx_ked_repo ON kedro_pipeline_features(repo_full_name);
Scripts/redact_leaked_tokens_in_data.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """One-off utility: redact GitHub PAT-like strings in Data/*.csv (in place)."""
3
+ from __future__ import annotations
4
+
5
+ import re
6
+ import sys
7
+ from pathlib import Path
8
+
9
+ ROOT = Path(__file__).resolve().parents[1]
10
+ DATA = ROOT / "Data"
11
+ REDACTED = "[REDACTED_GITHUB_TOKEN]"
12
+
13
+ # Fine-grained and classic PAT shapes; require sufficient length to avoid ghp_import-style false positives.
14
+ _PATTERNS = [
15
+ re.compile(r"github_pat_[A-Za-z0-9_]{20,}"),
16
+ re.compile(r"ghp_[A-Za-z0-9]{36,}"),
17
+ re.compile(r"gho_[A-Za-z0-9]{36,}"),
18
+ re.compile(r"ghu_[A-Za-z0-9]{36,}"),
19
+ re.compile(r"ghs_[A-Za-z0-9]{36,}"),
20
+ re.compile(r"ghr_[A-Za-z0-9]{36,}"),
21
+ ]
22
+
23
+
24
+ def redact_text(text: str) -> tuple[str, int]:
25
+ count = 0
26
+ for pattern in _PATTERNS:
27
+ text, n = pattern.subn(REDACTED, text)
28
+ count += n
29
+ return text, count
30
+
31
+
32
+ def process_file(path: Path) -> int:
33
+ tmp = path.with_suffix(path.suffix + ".redacting")
34
+ total = 0
35
+ with open(path, encoding="utf-8", errors="replace") as src, open(
36
+ tmp, "w", encoding="utf-8", newline=""
37
+ ) as dst:
38
+ for line in src:
39
+ new_line, n = redact_text(line)
40
+ total += n
41
+ dst.write(new_line)
42
+ tmp.replace(path)
43
+ return total
44
+
45
+
46
+ def main() -> None:
47
+ if not DATA.is_dir():
48
+ print(f"Missing {DATA}", file=sys.stderr)
49
+ sys.exit(1)
50
+ csv_files = sorted(DATA.rglob("*.csv"))
51
+ grand = 0
52
+ for path in csv_files:
53
+ n = process_file(path)
54
+ if n:
55
+ print(f" {path.relative_to(ROOT)}: {n} redaction(s)")
56
+ grand += n
57
+ print(f"Done. {grand} token-like string(s) redacted across {len(csv_files)} file(s).")
58
+
59
+
60
+ if __name__ == "__main__":
61
+ main()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ requests>=2.28.0
2
+ pandas>=1.5.0