UNKNOWN
Project description
PRO runs processes and restarts them when it observes file changes.
PRO only does two things, but it does them well: it runs processes,
and restarts select processes when their dependent files change.
PRO is designed to be useful for running processes in development, but
there are probably better options for running your processes in production.
Installation
------------
pip install pro
Usage
-----
pro runfile.py
Your runfile contains the description of which processes to run, and
an optional list of files to observe for each process group. A process
can be defined as a command to run as a string, or as a CMD object,
which can specify a directory in which to run.
Example runfile.py:
import os
from pro import CMD, run
run(CMD('python manage.py runserver 8080', cd='example_project'))
run('python -m SimpleHTTPServer 8888', watch_list=['watchme'])
sass_file = 'static/css/style.sass'
run('sass %s' % sass_file, watch_list=[sass_file])
template_dir="static/templates"
handlebars_inputs=os.path.join(template_dir, '*.handlebars')
handlebars_output=os.path.join(template_dir, 'templates.js')
cmd = 'handlebars `ls %s` -f "%s"' % (handlebars_inputs, handlebars_output)
run(cmd, watch_list=[handlebars_inputs])
PRO only does two things, but it does them well: it runs processes,
and restarts select processes when their dependent files change.
PRO is designed to be useful for running processes in development, but
there are probably better options for running your processes in production.
Installation
------------
pip install pro
Usage
-----
pro runfile.py
Your runfile contains the description of which processes to run, and
an optional list of files to observe for each process group. A process
can be defined as a command to run as a string, or as a CMD object,
which can specify a directory in which to run.
Example runfile.py:
import os
from pro import CMD, run
run(CMD('python manage.py runserver 8080', cd='example_project'))
run('python -m SimpleHTTPServer 8888', watch_list=['watchme'])
sass_file = 'static/css/style.sass'
run('sass %s' % sass_file, watch_list=[sass_file])
template_dir="static/templates"
handlebars_inputs=os.path.join(template_dir, '*.handlebars')
handlebars_output=os.path.join(template_dir, 'templates.js')
cmd = 'handlebars `ls %s` -f "%s"' % (handlebars_inputs, handlebars_output)
run(cmd, watch_list=[handlebars_inputs])
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
pro-0.1.2.tar.gz
(3.4 kB
view details)
File details
Details for the file pro-0.1.2.tar.gz
.
File metadata
- Download URL: pro-0.1.2.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad97558f242b44ffb8316b2bad76aa46c3bd787e7f42989890f0e4f5fd2e2304 |
|
MD5 | 052e9b3d5526662b306841fb0e924140 |
|
BLAKE2b-256 | 937a3a23e09c6032ad44e65f6bd8d14bf4496aff93d75bc277edfee14e59a7e3 |