Skip to main content

Console commands manager for Pyramid framework

Project description

pyramid_command
===========

Console commands manager for Pyramid framework

usage
======

install package

Write your console commands.
For example in myproject/console.py:

from pyramid_command import Command

class MyCmd(Command):

name = "my_cmd"
description = "My usefull command"

args = (
("echo", {"help":"echo the string you use here"}),
(("-f", "--file"), {"help":"file"}),
)

def run(self, echo='dd', file=None):
print self.name, "runs", echo, file


Then configure where to search your commands.
For example in development.ini:

[app:main]
use = egg:myproject
...
...
console_commands = myproject.console


Now run:

>>>pcommand development.ini my_cmd echoval




CHANGES.txt

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyramid_command-0.1.tar.gz (2.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