A Python task runner inspired by gulp.js
Project description
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'])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
pylp-0.2.10-py3-none-any.whl
(16.3 kB
view details)
File details
Details for the file pylp-0.2.10-py3-none-any.whl
.
File metadata
- Download URL: pylp-0.2.10-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5410415af257092bdf00e8a36855e7696ad87de14b1b3e1dba82d5adb8ee8be8 |
|
MD5 | 9a12a6c2301ab282c616c3f01e324c9d |
|
BLAKE2b-256 | 30f67fb98944b1d52f475366ed5d94a1a39de52c9f462b9dcb008d945c285442 |