What is pylp?
Pylp is a task runner for Python3 that lets you automate tasks.
It’s inspired by gulp.js.
Pylp use a syntax similar to Gulp, making this task runner easy to
learn and simple to use.
Task process is completely asynchronous thanks to asyncio module,
which provides a fast execution.
Documentation
Check out the documentation for a Getting started guide, API docs
or making a plugin.
Sample pylpfile.py
This file is an example of what you can do with Pylp.
import pylp
from pylpconcat import concat
# Concat all js files from 'src' folder
pylp.task('js', lambda:
pylp.src('src/**/*.js')
.pipe(concat('all.min.js'))
.pipe(pylp.dest('build/js'))
)
# The default task (called when you run 'pylp' from cli)
pylp.task('default', ['js'])
Release files for pylp 0.2.10
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pylp-0.2.10-py3-none-any.whl | Python 3 | none | any | Details |
Release files / pylp-0.2.10-py3-none-any.whl
| Download URL | pylp-0.2.10-py3-none-any.whl |
|---|---|
| Size | 16.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5410415af257092bdf00e8a36855e7696ad87de14b1b3e1dba82d5adb8ee8be8
|
|
BLAKE2b-256 checksum How to use checksums |
30f67fb98944b1d52f475366ed5d94a1a39de52c9f462b9dcb008d945c285442
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |