├── .github ├── config.yml ├── pull_request_template.md └── workflows │ ├── update_data.yml │ └── verify_readme_pr.yml ├── .gitignore ├── LICENSE ├── README.md ├── imgs ├── logo.png ├── open_in_orchest.svg └── open_in_orchest_large.svg ├── orchest_examples_data.json └── scripts ├── readme_management.py └── requirements.txt /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/update_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/.github/workflows/update_data.yml -------------------------------------------------------------------------------- /.github/workflows/verify_readme_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/.github/workflows/verify_readme_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/README.md -------------------------------------------------------------------------------- /imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/imgs/logo.png -------------------------------------------------------------------------------- /imgs/open_in_orchest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/imgs/open_in_orchest.svg -------------------------------------------------------------------------------- /imgs/open_in_orchest_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/imgs/open_in_orchest_large.svg -------------------------------------------------------------------------------- /orchest_examples_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/orchest_examples_data.json -------------------------------------------------------------------------------- /scripts/readme_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchest/orchest-examples/HEAD/scripts/readme_management.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | aiodns 2 | aiohttp 3 | validators --------------------------------------------------------------------------------