How to use the scs.management.commands.scs.Command function in scs

To help you get started, we’ve selected a few scs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github celery / cyme / scs / bin / scs.py View on Github external
def scs(env, argv):
    from ..management.commands import scs
    scs.Command(env=env).run_from_argv([argv[0], "scs"] + argv[1:])
github celery / cyme / scs / app.py View on Github external
def run_scs(argv):
    from scs.management.commands import scs
    scs.Command().run_from_argv([argv[0], "scs"] + argv[1:])