Skip to main content

sanic-fire

sanic-fire is an extension for Sanic that adds support for writing external commands to your application.

install

$ pip install sanic-fire

quick start

1.Step1: Create manager.py file in your project root directory.

#!/usr/bin/python3
# -*- coding: utf-8 -*-

from sanic_fire import cmd
from sanic_fire.core import command_class, command_func


@command_class
class Hello(object):
    """ Annonation """
    
    def hello(self, value='world'):
        """ hello """
        return 'hello, ' + str(value)


@command_func
def sync_db():
    return 'init db'


if __name__ == '__main__':
    cmd()

2.Step2: Run command on terminal:

python3 manager.py sync_db
python3 manager.py Hello hello

Download files

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

Source Distribution

sanic-fire-0.1.tar.gz (2.1 kB view details)

Uploaded Source

File details

Details for the file sanic-fire-0.1.tar.gz.

File metadata

  • Download URL: sanic-fire-0.1.tar.gz
  • Upload date:
  • Size: 2.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for sanic-fire-0.1.tar.gz
Algorithm Hash digest
SHA256 7739ce0c5930912f383f49038a726673c9ac1b9569c84fbd9c98eb2f98019017
MD5 3396a227a0330abce7c40d75976297b6
BLAKE2b-256 e048044977b9b89335146d675dfdff03a5f901cd345c4ffc3b122161da8f415a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page