copier 9.10.3


pip install copier

  Latest version

Released: Oct 17, 2025


Meta
Author: Ben Felder
Requires Python: >=3.9

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

License
  • OSI Approved :: MIT License

Programming Language
  • Python :: 3
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14

Copier

Copier Gitpod ready-to-code codecov CI Checked with mypy Python PyPI Code style: black Documentation Status

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.

Sample output

Installation

  1. Install Python 3.9 or newer.
  2. Install Git 2.27 or newer.
  3. To use as a CLI app: pipx install copier or uv tool install copier
  4. To use as a library: pip install copier or conda install -c conda-forge copier

Nix flake

To install the latest Copier release with 100% reproducibility:

nix profile install 'https://flakehub.com/f/copier-org/copier/*.tar.gz'

Homebrew formula

To install the latest Copier release using its Homebrew formula for macOS or Linux:

brew install 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
# questions
project_name:
    type: str
    help: What is your project name?

module_name:
    type: str
    help: What is your Python module name?
print("Hello from {{module_name}}!")
# Changes here will be overwritten by Copier
{{ _copier_answers|to_nice_yaml -}}

To generate a project from the template:

  • On the command-line:

    copier copy path/to/project/template path/to/destination
    
  • Or in Python code, programmatically:

    from copier import run_copy
    
    # Create a project from a local path
    run_copy("path/to/project/template", "path/to/destination")
    
    # Or from a Git URL.
    run_copy("https://github.com/copier-org/copier.git", "path/to/destination")
    
    # You can also use "gh:" as a shortcut of "https://github.com/"
    run_copy("gh:copier-org/copier.git", "path/to/destination")
    
    # Or "gl:" as a shortcut of "https://gitlab.com/"
    run_copy("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.
  2. Questionnaires. They are configured in the template. Answers are used to generate projects.
  3. 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...

  2. 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. Help consumers have a working source code tree as quickly as possible. All templates allow scaffolding.
  2. 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. Use them as inspiration!

If you want your template to appear in that list, just add the topic to it! ๐Ÿท

Show your support

If you're using Copier, consider adding the Copier badge to your project's README.md:

[![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json)](https://github.com/copier-org/copier)

...or README.rst:

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json
    :target: https://github.com/copier-org/copier
    :alt: Copier

...or, as HTML:

<a href="https://github.com/copier-org/copier"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json" alt="Copier" style="max-width:100%;"/></a>

Copier badge variations

  1. Badge Grayscale Border Copier

  2. Badge Grayscale Inverted Border Copier

  3. Badge Grayscale Inverted Border Orange Copier

  4. Badge Grayscale Inverted Border Red Copier

  5. Badge Grayscale Inverted Border Teal Copier

  6. Badge Grayscale Inverted Border Purple Copier

  7. Badge Black Copier

Credits

Special thanks go to jpsca for originally creating Copier. This project would not be a thing without him.

Many thanks to 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 for his relentless zest for improving Copier even further.

Thanks a lot, pawamoy for polishing very important rough edges and improving the documentation and UX a lot.

Also special thanks to sisp for being very helpful in polishing documentation, fixing bugs, helping the community and cleaning up the codebase.

And thanks to all financial supporters and folks that give us a shiny star! โญ

Star History Chart
9.10.3 Oct 17, 2025
9.10.2 Sep 09, 2025
9.10.1 Aug 28, 2025
9.10.0 Aug 26, 2025
9.9.1 Aug 18, 2025
9.9.0 Aug 01, 2025
9.8.0 Jul 07, 2025
9.7.1 Apr 23, 2025
9.7.0 Apr 22, 2025
9.6.0 Mar 09, 2025
9.5.0 Feb 17, 2025
9.4.1 Oct 18, 2024
9.4.0 Oct 15, 2024
9.3.1 Jul 04, 2024
9.3.0 Jul 01, 2024
9.2.0 Apr 04, 2024
9.1.1 Jan 16, 2024
9.1.0 Nov 27, 2023
9.0.1 Oct 30, 2023
8.3.0 Sep 05, 2023
8.2.0 Aug 28, 2023
8.1.0 Jul 10, 2023
8.0.0 Jun 04, 2023
7.2.0 Apr 19, 2023
7.1.0 Apr 07, 2023
7.1.0a0 Dec 29, 2022
7.0.1 Oct 14, 2022
6.2.0 Sep 18, 2022
6.1.0 Jun 13, 2022
6.0.0 May 15, 2022
6.0.0b0 Apr 14, 2022
6.0.0a9 Nov 02, 2021
6.0.0a7 Aug 06, 2021
6.0.0a6 Mar 05, 2021
6.0.0a5 Oct 23, 2020
6.0.0a4 Oct 16, 2020
6.0.0a3 Oct 16, 2020
6.0.0a2 Oct 14, 2020
6.0.0a0 Sep 18, 2020
5.1.0 Aug 17, 2020
5.0.0 Aug 13, 2020
4.1.0 Aug 10, 2020
4.0.2 Jul 21, 2020
4.0.1 Jun 23, 2020
4.0.0 Jun 18, 2020
3.2.0 Jun 03, 2020
3.1.0 May 11, 2020
3.0.6 Apr 13, 2020
3.0.5 Apr 08, 2020
3.0.4 Mar 27, 2020
3.0.3 Mar 27, 2020
3.0.2 Mar 25, 2020
3.0.1 Mar 24, 2020
3.0.0b1 Mar 18, 2020
3.0.0a8 Mar 16, 2020
3.0.0a7 Mar 15, 2020
3.0.0a6 Mar 04, 2020
3.0.0a5 Mar 03, 2020
3.0.0a3 Feb 27, 2020
2.5.1 Jun 18, 2019
2.5.0 Jun 16, 2019
2.4.2 Jun 09, 2019
2.4.1 Jun 08, 2019
2.4.0 Jun 08, 2019
2.3.3 Apr 17, 2019
2.3.2 Apr 17, 2019
2.3.1 Apr 17, 2019
2.3 Apr 17, 2019
2.2.3 Apr 13, 2019
2.2.2 Apr 05, 2019
2.2.1 Apr 05, 2019
2.1.0 Feb 08, 2019
2.0.1 Feb 07, 2019
2.0.0 Feb 07, 2019

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras: None
Dependencies:
colorama (>=0.4.6)
dunamai (>=1.7.0)
eval-type-backport (<0.3.0,>=0.1.3)
funcy (>=1.17)
jinja2-ansible-filters (>=1.3.1)
jinja2 (>=3.1.5)
packaging (>=23.0)
pathspec (>=0.9.0)
platformdirs (>=4.3.6)
plumbum (>=1.6.9)
pydantic (>=2.4.2)
pygments (>=2.7.1)
pyyaml (>=5.3.1)
questionary (>=1.8.1)
typing-extensions (<5.0.0,>=4.0.0)