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

NO LONGER MAINTAINED - A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.

Results 100 flask-restless issues
Sort by recently updated
recently updated
newest added

This reduced the GET collection time from 3 seconds to 140ms: default pagination and a table with 80747 records. (database MySQL) * Simple patch to guess the number of records...

The doc for [APIManager.create_api_blueprint](https://flask-restless.readthedocs.io/en/stable/api.html#flask.ext.restless.APIManager.create_api_blueprint) is not clear. It states first that the function: > Creates and returns a ReSTful API interface as a blueprint, but does not register it on...

I'm running into a serious performance problem with flask-restless that is making me look at alternatives and that breaks my heart. The posts table contains almost 700k "posts" for a...

bug

This would allow users to easily apply decorators from other packages, such as [Flask-Login](https://flask-login.readthedocs.org/en/latest/), [Flask-Cache](https://pythonhosted.org/Flask-Cache/) (see issues #190, #99, and #318), and [Flask-Limiter](http://flask-limiter.readthedocs.org/en/stable/) (see issue #189).

enhancement

Postgres requires that group_by columns are the only columns included in the SELECT query. Other backends like MySQL and SQLite let this slide picking a random row for the columns...

bug

I tried to make a `POST` request to my `API` ``` import requests import json url = 'http://127.0.0.1:5000/api/candidate' data = { 'first_name' : 'Hussain', 'country_id' : 1, 'city' : 'pune',...

bug

#https://github.com/jfinkels/flask-restless/issues/492 Hello @jfinkels. I'm looking to use this extension to simplify my CRUD implementation. Potential hurdle is the current requirement to use a `dict()` as a query parameter, particularly for...

NOTE: this isn't a priority for me right now, so I may not be able to answer questions or do further debugging. Sidenote: according to https://github.com/jfinkels/flask-restless/issues/321#issuecomment-198327761 support for association proxies...

Hi, had a model with a compound name similar to "FirstLast". Under the admin it is given an url like "firstlast", but under flask-restless it gets turned into "first_last." I'm...

https://github.com/jfinkels/flask-restless/blob/8e32477deba1404a11f08bd9311a6122c6b8a31e/flask_restless/views/base.py#L664