Skip to main content

An extension for FastAPI

Project description

FastAPI-Script

An extension for FastAPI.

Getting Started

Installation

First you have to install fastapi-script like this:

pip install fastapi-script

Quick Tutorial

We need to create a Python module to manage your script commands, such as manage.py:

import asyncio

from fastapi import FastAPI
from fastapi_script import Manager


app = FastAPI()
manager = Manager(app)

@manager.command
async def test_without_params():
    print('test_without_params')

@manager.command
async def test_one_params(name):
    print(f'test_one_params, name: {name}')

@manager.command
async def test_many_params(name, age=0):
    print(f'test_many_params, name: {name}, age: {age}')

@manager.option('-n', '--name', dest='name', help='input your name')
async def option_one_params(name):
    print(f'option_one_params, name: {name}')

@manager.option('-n', '--name', dest='name', help='input your name')
@manager.option('-s', '--score', dest='score', help='input your score')
async def option_many_params(name, score):
    print(f'option_many_params, name: {name}, score: {score}')


if __name__ == '__main__':
    asyncio.run(manager.run())

Next, we can manipulate the above script like this:

$ python manage.py test_without_params
test_with_no_param

$ python manage.py test_one_params laozhang
test_one_params, name: laozhang

$ python manage.py test_many_params laozhang --age 20
test_many_params, name: laozhang, age: 20

$ python manage.py option_one_params -n laozhang
option_one_params, name: laozhang

$ python manage.py option_one_params --name laozhang
option_one_params, name: laozhang

$ python manage.py option_many_params -n laozhang -s 90
option_many_params, name: laozhang, score: 90

$ python manage.py option_many_params --name laozhang --score 90
option_many_params, name: laozhang, score: 90

We can use the --help parameter to view all of the currently managed commands:

python manage.py --help

In addition to using the decorator above, we can also use the inherited Command class to do this:

import asyncio

from fastapi import FastAPI
from fastapi_script import Manager, Command, Option

app = FastAPI()
manager = Manager(app)


class HelloCommand(Command):

    def get_options(self):
        return [
            Option('-n', '--name', dest='name', help='input your name'),
            Option('-s', '--score', dest='score', help='input your score')
        ]

    def run(self, *args, **kwargs):
        print(f'hello command, args: {args}, kwargs: {kwargs}')


manager.add_command('hello', HelloCommand())

if __name__ == '__main__':
    asyncio.run(manager.run())

And then we can use it like this:

$ python manage.py hello -n laozhang -s 90
hello command, args: (), kwargs: {'name': 'laozhang', 'score': '90'}

Project details


Download files

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

Source Distribution

fastapi-script-0.0.8.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

fastapi_script-0.0.8-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file fastapi-script-0.0.8.tar.gz.

File metadata

  • Download URL: fastapi-script-0.0.8.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.11

File hashes

Hashes for fastapi-script-0.0.8.tar.gz
Algorithm Hash digest
SHA256 bb5d6b45029859426dfed277cd35490bc698769f59a9538d1d83559851efbe06
MD5 c302b7c4a9cb73b1f471843ad796e137
BLAKE2b-256 e237c88f756432dbcb1bdb1486d1e271471e17c7c2666646f8c3ae7c85042c17

See more details on using hashes here.

File details

Details for the file fastapi_script-0.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_script-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 dda0968b997897497d953f3684e2cb46c650ae1a785143db3ef7ec7de3a54129
MD5 52ef8e5df1f6e83e387ecace972f2e79
BLAKE2b-256 9e6018304e76e75d4afdab414689707e2cf065a4ec8ba4cce1fa349f56754566

See more details on using hashes here.

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