Getting started¶
Installation¶
With pip (No official version get)...
pip install git+https://github.com/mhcomm/pypeman.git#egg=pypeman
...or from source
Clone it:
git clone https://github.com/mhcomm/pypeman.git
then:
cd pypeman
python -m setup install # to install 'normally'
# Or for development version
python -m setup develop
Basic usage¶
Create a fresh project with:
pypeman startproject <project_dirname>
Previous command will create a new directory with a “settings.py” file containing local configs and a “project.py” file with a channel example that you can uncomment to test pypeman. Follow commented instructions then execute:
pypeman start # You can use the --reload option for auto-reloading on changes
Quick commands overview¶
To get commands help and more details about commands:
pypeman --help
To create a fresh project (partially implemented):
pypeman startproject <project_name>
To start pypeman:
pypeman start
To show a channel graph:
pypeman graph
To list optional dependencies used by your channels:
pypeman requirements