flask-restx icon indicating copy to clipboard operation
flask-restx copied to clipboard

New to RestX - Any example on database tables?

Open asgeorgia opened this issue 5 years ago • 5 comments

Please provide examples on connecting to DATBASE TABLES - New to Flask-RestX

asgeorgia avatar Mar 13 '20 17:03 asgeorgia

I recommend using Flask-SQLAlchemy. You can check out my boilerplate as an example for this.

Usually you use Flask libraries and most of the resources available for Flask should work fine for your app to extend its functionalities.

X1Zeth2X avatar Mar 14 '20 23:03 X1Zeth2X

flask-restx does not provide models or for interacting with databases. the models are for creating OpenApi specs and for validation and marshalling of payloads (from a POST or PUT).

For DB interactions, there are many libraries, ranging from stringy and direct (psycopg2) to full ORMs Some ORMs to consider

SQLAlchemy Peewee marshmallow-sqlalchemy storm pony

j5awry avatar Mar 16 '20 19:03 j5awry

documentation label added for us to update our docs to state flask-restx doesn't offer an ORM, and to give links to options

j5awry avatar Mar 16 '20 19:03 j5awry

Hi, is there a way to create flask_restx.api.model directly MarshmallowSqlalchemyAutoSchema? I tried registering a model by model = api.model("SomeModel", SomeSchema.fields) but it did not work because there were string values.

edit I tried JSONSchema and schema_model but the swagger response example model does not have any attributes!

ghost avatar Apr 23 '21 01:04 ghost

Hi, is there a way to create flask_restx.api.model directly MarshmallowSqlalchemyAutoSchema? I tried registering a model by model = api.model("SomeModel", SomeSchema.fields) but it did not work because there were string values.

edit I tried JSONSchema and schema_model but the swagger response example model does not have any attributes!

Any updates on whether you managed to get flask_restx to work with flask-marshmallow? I have the exact same use-case and there doesn't seem to be any documentation about it.

ghost avatar Feb 09 '23 16:02 ghost