copier alternatives and similar packages
Based on the "Productivity Tools" category.
Alternatively, view copier alternatives based on common mentions on social networks and blogs.
-
httpie
๐ฅง HTTPie CLI โ modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. -
cookiecutter
A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects. -
HTTP Prompt
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie -
PathPicker
PathPicker accepts a wide range of input -- output from git commands, grep results, searches -- pretty much anything. After parsing the input, PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands. -
SubGrab
SubGrab is a utility that allows you to automate subtitles downloading for your media files. -
Focus Phase
A simple yet powerful timer and time tracker from the command line. https://ammar1y.github.io/Focus-Phase/
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of copier or a related project?
Popular Comparisons
README
A library and CLI app for rendering project templates.
- Works with local paths and Git URLs.
- Your project can include any file and Copier can dynamically replace values in any kind of text file.
- It generates a beautiful output and takes care of not overwriting existing files unless instructed to do so.
Installation
- Install Python 3.7 or newer (3.8 or newer if you're on Windows).
- Install Git 2.27 or newer.
- To use as a CLI app:
pipx install copier
- To use as a library:
pip install copier
orconda install -c conda-forge copier
Quick start
To create a template:
๐ my_copier_template ------------------------ # your template project
โโโ ๐ copier.yml ---------------------------- # your template configuration
โโโ ๐ .git ---------------------------------- # your template is a Git repository
โโโ ๐ {{project_name}} ---------------------- # a folder with a templated name
โ โโโ ๐ {{module_name}}.py.jinja ---------- # a file with a templated name
โโโ ๐ {{_copier_conf.answers_file}}.jinja --- # answers are recorded here
```yaml title="copier.yml"
questions
project_name: type: str help: What is your project name?
module_name: type: str help: What is your Python module name?
```python+jinja title="{{project_name}}/{{module_name}}.py.jinja"
print("Hello from {{module_name}}!")
```yaml+jinja title="{{_copier_conf.answers_file}}.jinja"
Changes here will be overwritten by Copier
{{_copier_answers|to_nice_yaml}}
To generate a project from the template:
- On the command-line:
```shell
copier path/to/project/template path/to/destination
```
- Or in Python code, programmatically:
```python
from copier import run_auto
# Create a project from a local path
run_auto("path/to/project/template", "path/to/destination")
# Or from a Git URL.
run_auto("https://github.com/copier-org/copier.git", "path/to/destination")
# You can also use "gh:" as a shortcut of "https://github.com/"
run_auto("gh:copier-org/copier.git", "path/to/destination")
# Or "gl:" as a shortcut of "https://gitlab.com/"
run_auto("gl:copier-org/copier.git", "path/to/destination")
```
## Basic concepts
Copier is composed of these main concepts:
1. **Templates**. They lay out how to generate the subproject.
1. **Questionaries**. They are configured in the template. Answers are used to generate
projects.
1. **Projects**. This is where your real program lives. But it is usually generated
and/or updated from a template.
Copier targets these main human audiences:
1. **Template creators**. Programmers that repeat code too much and prefer a tool to do
it for them.
!!! tip
Copier doesn't replace the DRY principle... but sometimes you simply can't be
DRY and you need a DRYing machine...
1. **Template consumers**. Programmers that want to start a new project quickly, or
that want to evolve it comfortably.
Non-humans should be happy also by using Copier's CLI or API, as long as their
expectations are the same as for those humans... and as long as they have feelings.
Templates have these goals:
1. **[Code scaffolding](<https://en.wikipedia.org/wiki/Scaffold_(programming)>)**. Help
consumers have a working source code tree as quickly as possible. All templates allow
scaffolding.
1. **Code lifecycle management**. When the template evolves, let consumers update their
projects. Not all templates allow updating.
Copier tries to have a smooth learning curve that lets you create simple templates that
can evolve into complex ones as needed.
## Browse or tag public templates
You can browse public Copier templates on GitHub using
[the `copier-template` topic](https://github.com/topics/copier-template). Use them as
inspiration!
If you want your template to appear in that list, just add the topic to it! ๐ท
## Credits
Special thanks go to [jpsca](https://github.com/jpsca) for originally creating `Copier`.
This project would not be a thing without him.
Many thanks to [pykong](https://github.com/pykong) who took over maintainership on the
project, promoted it, and laid out the bases of what the project is today.
Big thanks also go to [Yajo](https://github.com/Yajo) for his relentless zest for
improving `Copier` even further.
Thanks a lot, [pawamoy](https://github.com/pawamoy) for polishing very important rough
edges and improving the documentation and UX a lot.