Coder Social home page Coder Social logo

Comments (4)

luolingchun avatar luolingchun commented on May 18, 2024

Can you paste a simple scripts to show this problem?

from flask-openapi3.

DerManoMann avatar DerManoMann commented on May 18, 2024

Ok, here is a simple example.

There is a number of subtle changes to change the behavior:

  • As is:
    • I get TypeError: hello() missing 1 required positional argument: 'path'
    • I get No operations defined in spec! in swagger UI
  • adding =None to hello => def hello(name, path: PathName=None):
  • Endpont works
  • I get No operations defined in spec! in swagger UI
  • changing @bp.route to @bp.get
    • I get TypeError: hello() missing 1 required positional argument: 'path'
    • swagger UI shows endpoint as expected

Hope that makes sense and helps :)

Cheers, mano

from flask_openapi3 import OpenAPI, APIBlueprint
from flask_openapi3.models import Info
from pydantic import BaseModel, Field

app = OpenAPI(__name__, info=Info(title="Hello API", version="1.0.0"),)

bp = APIBlueprint("Hello BP", __name__)

class PathName(BaseModel):
    name: str = Field(..., description="The name")

@bp.route("/hello/<string:name>")
def hello(name, path: PathName):
    return f"""Hello {name}!"""

app.register_api(bp)

if __name__ == "__main__":
    app.run()

from flask-openapi3.

luolingchun avatar luolingchun commented on May 18, 2024

The endpoint can only take six parameters. They are path, query, form, body, header, cookie, more information go to the docs.

so you should use it like this:

...

@bp.route("/hello/<string:name>")
def hello(path: PathName):
    name = path.name
    return f"""Hello {name}!"""

...

from flask-openapi3.

DerManoMann avatar DerManoMann commented on May 18, 2024

Cool, that makes sense. Somehow this wasn't entirely clear to me.

Thanks.

from flask-openapi3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.