Top "Flask-restful" questions

Flask-RESTful provides an extension to Flask for building REST APIs.

Display image stored as binary blob in template

I have a model with an image stored as a binary blob. I want to display this image, along with …

python google-app-engine flask jinja2 flask-restful
Object of type 'ObjectID' is not JSON serializable

I am having what appears to be a common problem but so far I can't see a solution that applies …

python-3.x pymongo flask-restful
How to use Keycloak with Flask REST API Service

I am trying to implement the Keycloak to my Flask Rest Service but it always gives below error. {"error": "invalid_…

flask keycloak flask-restful
Raising A Custom Error with Flask-Restful

All, I'm trying to raise a custom error using Flask-Restful, following the docs. For testing purposes, I've defined and registered …

flask flask-restful
passing arguments to API created by flask in python

I am a complete newbie to API and python. actually, after getting disappointed to find a free host supporting plumber …

python api flask flask-restful heroku-api
How to use Flask-Cache with Flask-Restful

How do I use Flask-Cache @cache.cached() decorator with Flask-Restful? For example, I have a class Foo inherited from Resource, …

python redis flask-restful flask-cache cache-invalidation
Active Directory authentication using ldap3 python, how to avoid clear text password

I know the below question has been asked multiple times and answer which i could find is that get SSL …

python active-directory flask-restful ldap3
Flask Testing a put request with custom headers

Im trying to test a PUT request in my Flask app, using flasks test client. Everything looks good to me …

python python-2.7 flask flask-restful flask-testing
Flask: A RESTful API and SocketIO Server

Background I am trying to create a simple REST API using the Flask-RESTful extension. This API will be working primarily …

python flask flask-restful flask-socketio
Retrieve query params with Flask-RESTful

I have a flask-RESTful endpoint defined by: class SearchEvents(Resource): def get(self, name, start_date, end_date): #do stuff …

flask query-string postman flask-restful