Giter Site home page Giter Site logo

kevinxdev / copier Goto Github PK

View Code? Open in Web Editor NEW

This project forked from copier-org/copier

0.0 0.0 0.0 2.91 MB

Library and command-line utility for rendering projects templates.

Home Page: https://readthedocs.org/projects/copier/

License: MIT License

Python 99.90% Dockerfile 0.08% Jinja 0.03%

copier's Introduction

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.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 or conda 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
# 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 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! ๐Ÿท

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.

copier's People

Contributors

pykong avatar jpsca avatar dependabot[bot] avatar yajo avatar pawamoy avatar sisp avatar puercopop avatar mx-moth avatar xsc27 avatar dennisroche avatar jacobstr avatar stereobutter avatar mshafer-ni avatar bpoirriez avatar timofurrer avatar timgates42 avatar pfmoore avatar pi-anl avatar lbianchi-lbl avatar mvanholsteijn avatar nat-n avatar nschlemm avatar ypid avatar sabard avatar seebi avatar stefanbras avatar tlambert03 avatar tpluscode avatar wskertic avatar wilsonwaters avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.