MCPcopy
hub / github.com/copier-org/copier

github.com/copier-org/copier @v9.16.0 sqlite

repository ↗ · DeepWiki ↗ · release v9.16.0 ↗
702 symbols 3,928 edges 68 files 309 documented · 44%
README

Copier

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

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.10 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

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

Content of the copier.yml file:

```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?


Content of the `{{project_name}}/{{module_name}}.py.jinja` file:

```python+jinja title="{{project_name}}/{{module_name}}.py.jinja"
print("Hello from {{module_name}}!")

Content of the {{_copier_conf.answers_file}}.jinja file:

```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 copy path/to/project/template path/to/destination
    ```

- Or in Python code, programmatically:

    ```python
    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.
1. **Questionnaires**. 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! 🏷

## Show your support

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

```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! ⭐

<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=copier-org/copier&type=Date" />

Core symbols most depended-on inside this repo

build_file_tree
called by 296
tests/helpers.py
run_copy
called by 141
copier/_main.py
load_answersfile_data
called by 120
copier/_user_data.py
run_copy
called by 114
copier/_main.py
git_save
called by 112
tests/helpers.py
expect_prompt
called by 95
tests/helpers.py
run_update
called by 78
copier/_main.py
git_init
called by 33
tests/helpers.py

Shape

Function 490
Method 147
Class 57
Route 8

Languages

Python100%

Modules by API surface

copier/_main.py52 symbols
tests/test_copy.py44 symbols
copier/errors.py38 symbols
tests/test_updatediff.py36 symbols
copier/_template.py36 symbols
tests/test_prompt.py33 symbols
copier/_user_data.py28 symbols
tests/test_config.py25 symbols
tests/test_vcs.py22 symbols
copier/_vcs.py20 symbols
tests/test_cli.py19 symbols
copier/_cli.py18 symbols

Dependencies from manifests, versioned

colorama0.4.6 · 1×
dunamai1.7.0 · 1×
funcy1.17 · 1×
jinja23.1.5 · 1×
jinja2-ansible-filters1.3.1 · 1×
packaging23.0 · 1×
pathspec0.9.0 · 1×
platformdirs4.3.6 · 1×
plumbum1.6.9 · 1×
pydantic2.4.2 · 1×
pygments2.7.1 · 1×
pyyaml5.3.1 · 1×

Datastores touched

(mysql)Database · 1 repos
dbnameDatabase · 1 repos
dbnameDatabase · 1 repos

For agents

$ claude mcp add copier \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact