Skip to main content

A library for rendering project templates.

Project description

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.8 or newer.
  2. Install Git 2.27 or newer.
  3. To use as a CLI app: pipx install copier
  4. To use as a library: pip install copier or conda install -c conda-forge copier

Nix flake

To install latest Copier release with 100% reproducibility:

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

copier-9.3.1.tar.gz (40.6 kB view details)

Uploaded Source

Built Distribution

copier-9.3.1-py3-none-any.whl (42.2 kB view details)

Uploaded Python 3

File details

Details for the file copier-9.3.1.tar.gz.

File metadata

  • Download URL: copier-9.3.1.tar.gz
  • Upload date:
  • Size: 40.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for copier-9.3.1.tar.gz
Algorithm Hash digest
SHA256 e8515c082149f771268e8bc7fe400891d96e765797f5dac9fbae191f6427a24c
MD5 88c52a61fe75f73214ae5e74f6b8db74
BLAKE2b-256 0f3256044ea18ea1c6dc9a00714cbaf7c0ff7e5f486adbfefc28f5ca72a14064

See more details on using hashes here.

File details

Details for the file copier-9.3.1-py3-none-any.whl.

File metadata

  • Download URL: copier-9.3.1-py3-none-any.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for copier-9.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 20d60383a3fb99054ea4d24a8f71c6f9219b40ac50db1d97d412583d739bce99
MD5 f929212b3fb3c5696829ccff161c7ebb
BLAKE2b-256 4306b3174cd0a294b7bd43c4a81a88f6a0f04df7355efc1f5f53f3a7a02e9179

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page