Easily create new projects.
Project description
noo
Easily create new projects.
Installation
pip install pynoo
or install from github
pip install git+https://github.com/py-noo/noo
Contributing
See contributing.
Usage
noo clone <name> <ref>
Noofile Specification
name: str
remote: str
read: [Read]
steps: [Step]
| Field | Type | Description |
|---|---|---|
| name | str | The name of the noofile definition |
| remote | str | The remote location of the template |
| read | list[Read] | The list of variables to read on setup |
| steps | list[Step] | The list of steps to run |
Read
name: str
prompt: str
default: ?str
| Field | Type | Description |
|---|---|---|
| name | str | The name of the variable to read |
| prompt | str | The prompt to display when reading the variable |
| default | ?str | An optional default value |
Step
A step defines a single step in the process of setting up a project.
name: str
actions: [Action]
conditions: ?[Condition]
| Field | Type | Description |
|---|---|---|
| name | str | The name of the setup step |
| actions | list[Action] | The list of actions in the step |
| conditions | ?list[Condition] | An optional list of conditions required for the step to run |
Condition
A condition is a function that must be true for a step to run.
op: eq | ne | gt | lt | ge | le
var: str
value: str
| Field | Type | Description |
|---|---|---|
| op | Literal[OpType] | The operation to perform |
| var | str | The variable to compare, i.e. noo:year |
| value | str | The value to compare to |
OpType
List of operation types:
| Name | Operation |
|---|---|
| eq | Equals |
| ne | Not Equals |
| gt | Greater Than |
| lt | Less Than |
| ge | Greater Than or Equals |
| le | Less Than or Equals |
Action
An action defined a single action within a step. This is the base of all steps, for example replacing a string with a different given string.
Replace action
Replace actions are used to replace a specific string in a file. The src field specifies the string that should be replaced in the file, and the dest field specifices the string to replace it with. The dest field is formatted with defined variables.
A list of files can be provided, and each file will have the same transform applied to them.
- action: replace
files: [str]
src: str
dest: str
Delete action
Delete actions are used to delete files.
- action: delete
files: [str]
Create action
Create actions are used to create files. The file field specifies the file to be created, and the content field specifics the content to be placed into the file. The content field is formatted with defined variables.
- action: create
file: str
content: ?str
Rename action
Rename actions are used to rename files. The file field specifies the file to be renamed, and the dest field specifies the new name of the file. The dest field is formatted with defined variables.
- action: rename
file: str
dest: str
Variables
Variables are defined in the read section of the noofile. All variables set in the read section will be available in the steps section.
Variables are used in the format $${scope}:{name}, for example $$noo:year or $$var:author. Variables with the noo scope are built into noo and will always be available. Variables with the var scope are defined in the read section.
The variables defined by noo are:
noo:year- The current yearnoo:month- The current monthnoo:day- The current daynoo:hour- The current hournoo:minute- The current minutenoo:second- The current secondnoo:name- The name of the project
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pynoo-1.4.4.tar.gz.
File metadata
- Download URL: pynoo-1.4.4.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.2 Linux/5.16.9-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc007c84c75f67ec3aad7b26cb3aec43334d87407601d3f7989b925d958f84b1
|
|
| MD5 |
e2fce23a1325160932aec265803716ed
|
|
| BLAKE2b-256 |
6bc9a2dd9795122230a1574f431f88f0366fbcde5c5348869efcb4ac9c0fb8de
|
File details
Details for the file pynoo-1.4.4-py3-none-any.whl.
File metadata
- Download URL: pynoo-1.4.4-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.2 Linux/5.16.9-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f52ff2d4b48f8fc08dc1757a5f29dcb8b0bd17199b938d69f8a215fe3f9067b
|
|
| MD5 |
d3ffd839403b57a014c5c23c13f05aa5
|
|
| BLAKE2b-256 |
7df1855afd78ec285d8c554db1f047ec35db160bab6577c2b96dadbaef896475
|