Skip to main content

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 Distribution

pylp-0.1.3.tar.gz (8.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page