task automation tool for Python, similar to Make, Rake, Ant, or Cook
Project description
pyKook is a very useful tool to control your task such as compile, install or clean. pyKook is similar to Make, Rake, Ant, or Cook. Kookbook.py, which is a task definition file for pyKook, is written in Python.
Simple Example of Kookbook.py:
@recipe
def hello(c):
print("Hello")
Output Result:
bash> kk hello # or pykook hello ### * hello (recipe=hello) Hello
Other Example of Kookbook.py:
CC = prop('CC', 'gcc -Wall')
kookbook.default = 'all'
@recipe
@ingreds('hello') # ingredients
def all(c): # or task_all(c)
pass
@recipe('*.o', ['$(1).c', '$(1).h']) # @recipe(product, [ingredients])
def file_o(c):
"""compile *.c and *.h into *.o"""
system(c%'$(CC) -c $(ingred)')
@recipe('hello', ['hello.o']) # @recipe(product, [ingredients])
def file_hello(c):
"""create 'hello' command"""
system(c%'$(CC) -o $(product) $(ingred)')
@recipe
def clean(c):
rm_rf("**/*.o", "**/*~")
## or
kookbook.load('@kook/books/clean.py') # load 'clean' and 'sweep' recipes
CLEAN.append("**/*.o")
See User’s Guide for details.
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
Kook-0.7.2.tar.gz
(188.7 kB
view details)
File details
Details for the file Kook-0.7.2.tar.gz.
File metadata
- Download URL: Kook-0.7.2.tar.gz
- Upload date:
- Size: 188.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00d05f30bc68b86ef0430d8074c3fba654a989391724236da4878c623595c966
|
|
| MD5 |
ae0658dfd08d9e1cad2921b891eff8f6
|
|
| BLAKE2b-256 |
7baa71cf105729b385a99fb07dfbf038e1144f4ddea1ca6b26f21d1286cee3fc
|