Skip to main content

A library for rendering project templates.

Project description

Copier

Gitpod ready-to-code codecov CI Checked with mypy 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 overwrite existing files unless instructed to do so.

Sample output

Installation

  1. Install Python 3.7 or newer (3.8 or newer if you're on Windows).
  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

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 path/to/project/template path/to/destination
    
  • Or in Python code, programmatically:

    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.
  2. Questionaries. 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 quick 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 in 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! 🏷

Credits

Special thanks go to jpscaletti 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.

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-6.0.0b0.tar.gz (32.6 kB view details)

Uploaded Source

Built Distribution

copier-6.0.0b0-py3-none-any.whl (34.6 kB view details)

Uploaded Python 3

File details

Details for the file copier-6.0.0b0.tar.gz.

File metadata

  • Download URL: copier-6.0.0b0.tar.gz
  • Upload date:
  • Size: 32.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for copier-6.0.0b0.tar.gz
Algorithm Hash digest
SHA256 4bfe4286d304ada9be887aa867124b5277fee27771ee59e21f8b497122ee7c66
MD5 d39b4313223985f26d502955ee1faa46
BLAKE2b-256 0e59ef93e7e5944c83ec1bf88d29d65d6af65bb8d7f946b9f767d1eca6af496d

See more details on using hashes here.

File details

Details for the file copier-6.0.0b0-py3-none-any.whl.

File metadata

  • Download URL: copier-6.0.0b0-py3-none-any.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for copier-6.0.0b0-py3-none-any.whl
Algorithm Hash digest
SHA256 c2d527d6080fb4452cd20c3acae3c0daa55bc81a7f640150e8561658b77d4f53
MD5 0ae839c6769e5936a43b376ffefe66c3
BLAKE2b-256 8ac9068577e3176230026d23b97229506ea1909406c274a54d69b4e3be6947e4

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