├── .github └── workflows │ └── generate_readme.yml ├── .zenodo.json ├── LICENSE.md ├── README.md ├── assets ├── logo-vertical.svg └── logo-with-domain-tagline.svg └── scripts ├── collection_header.md └── create_collection_from_rest_api.py /.github/workflows/generate_readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/.github/workflows/generate_readme.yml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/.zenodo.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/assets/logo-vertical.svg -------------------------------------------------------------------------------- /assets/logo-with-domain-tagline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/assets/logo-with-domain-tagline.svg -------------------------------------------------------------------------------- /scripts/collection_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/scripts/collection_header.md -------------------------------------------------------------------------------- /scripts/create_collection_from_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sib-swiss/training-collection/HEAD/scripts/create_collection_from_rest_api.py --------------------------------------------------------------------------------