{"id":17956483,"url":"https://github.com/looztra/asdf-copier","last_synced_at":"2026-01-20T22:02:17.779Z","repository":{"id":254114619,"uuid":"845532499","full_name":"looztra/asdf-copier","owner":"looztra","description":"asdf plugin for copier https://copier.readthedocs.io/en/stable/","archived":false,"fork":false,"pushed_at":"2026-01-13T16:55:18.000Z","size":99,"stargazers_count":1,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T18:45:59.645Z","etag":null,"topics":["asdf-plugin"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/looztra.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-21T12:37:11.000Z","updated_at":"2026-01-13T16:54:49.000Z","dependencies_parsed_at":"2025-01-08T19:32:43.768Z","dependency_job_id":"40b21b7d-6806-4244-ad3c-a18c17f5b724","html_url":"https://github.com/looztra/asdf-copier","commit_stats":null,"previous_names":["looztra/asdf-copier"],"tags_count":2,"template":false,"template_full_name":"asdf-vm/asdf-plugin-template","purl":"pkg:github/looztra/asdf-copier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/looztra%2Fasdf-copier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/looztra%2Fasdf-copier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/looztra%2Fasdf-copier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/looztra%2Fasdf-copier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/looztra","download_url":"https://codeload.github.com/looztra/asdf-copier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/looztra%2Fasdf-copier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28615559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T21:52:42.722Z","status":"ssl_error","status_checked_at":"2026-01-20T21:52:20.513Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asdf-plugin"],"created_at":"2024-10-29T10:38:03.035Z","updated_at":"2026-01-20T22:02:17.761Z","avatar_url":"https://github.com/looztra.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# asdf-copier \u003c!-- omit in toc --\u003e\n\n[![Build](https://github.com/looztra/asdf-copier/actions/workflows/code_checks.yml/badge.svg)](https://github.com/looztra/asdf-copier/actions/workflows/code_checks.yml)\n\n[copier](https://copier.readthedocs.io/en/stable/) plugin for the [asdf version manager](https://asdf-vm.com).\n\n## Contents\n\n- [Contents](#contents)\n- [Dependencies](#dependencies)\n- [Install](#install)\n  - [add the plugin](#add-the-plugin)\n  - [install copier](#install-copier)\n- [Note](#note)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Dependencies\n\n- `bash`, `curl`, and [POSIX utilities](https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html).\n- a python 3 runtime (provided through [asdf-python](https://github.com/asdf-community/asdf-python) or not)\n- optional: [uv](https://docs.astral.sh/uv/)\n\n## Install\n\n### add the plugin\n\nWhen asdf-vm/asdf-plugins#1034 will be merged\n\n```shell\nasdf plugin add copier\n```\n\nOr:\n\n```shell\nasdf plugin add copier https://github.com/looztra/asdf-copier.git\n```\n\n### install copier\n\n- If `uv` is found, the virtual environment that hosts the `copier` package will be created with it. The plugin will fallback to `python -m venv`if `uv` is not available.\n- Similarly to [asdf-pyapp](https://github.com/amrox/asdf-pyapp) (KUDOS to the maintainers!), the python **3** version used will be one provided by `asdf` if the [asdf-python](https://github.com/asdf-community/asdf-python) plugin is installed. The `asdf-copier` plugin will fallback to a system python3 installation if no python3 version is available through asdf.\n- You can override the detection mechanism by providing the `ASDF_PYAPP_DEFAULT_PYTHON_PATH` environment variable when installing a `copier` version (we decided to use the same env var name as pyapp to avoid having to define one more env var if possible)\n\n```shell\n# Show all installable versions\nasdf list all copier\n\n# Install latest version\nasdf install copier latest\n\n# Set a version globally (on your ~/.tool-versions file)\nasdf global copier latest\n\n# Now copier commands are available\ncopier --help\n```\n\nCheck [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to\ninstall \u0026 manage versions.\n\n## Note\n\n- As `copier` is installed in a virtual environment, if the installation of python used to install copier does not exist anymore (if it comes from asdf or brew for instance), copier will fail to launch. You will need to uninstall/reinstall the copier version.\n\n## Contributing\n\nContributions of any kind welcome! See the [contributing guide](contributing.md).\n\n[Thanks goes to these contributors](https://github.com/looztra/asdf-copier/graphs/contributors)!\n\n## License\n\nSee [LICENSE](LICENSE) © [Christophe Furmaniak](https://github.com/looztra/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flooztra%2Fasdf-copier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flooztra%2Fasdf-copier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flooztra%2Fasdf-copier/lists"}