Skip to main content

Snake is yet another Make-like tool inspired by Rake.

Project description

Snake is yet another Make-like tool, written on Python and inspired by Rake.

Usage Example

In a directory with snakefile.py containing such code:

from snake.api import *

@task
def hello():
    print("Hello World!")

task('default').needs(hello)

one could run:

$ snake hello
Hello World!

or (because default task is executed if no other task name was specified):

$ snake
Hello World!

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

Snake-0.1.0.tar.gz (4.3 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