Tagged Questions
0
votes
1answer
47 views
KeyError when using Jsonify
I'm using GAE SDK 1.8
I am trying to jsonify on the following:
{
'prev': None,
'records': 1,
'next': None,
'start': ...
0
votes
0answers
32 views
Conundrum : Not Sorting Objects With SQLAlchemy
I have a feeling SQLAlchemy is only checking the first digit when it orders the groups by ID, how do I get it to check all the digits of the ID?
groups = ...
0
votes
1answer
51 views
How to communicate between Flask and Javascript?
everyone. So i've been going through this documentation: http://flask.pocoo.org/docs/patterns/jquery/. I have a Flask site up and running, but, when i try to set up what they have, i just get the ...
1
vote
1answer
133 views
Jquery ajax json get call delivered by Flask web framework - call fails
I am trying to have a simple jquery ajax call fetching json data. However, the call fails and I cannot understand very well why.
The code is below. To me it seems all right.
...
0
votes
0answers
132 views
Grab checked input and send it in json format using AJAX jQuery and a POST request. Using Flask
Hi So I am having issues trying to send the checked data of a form using a button I configured for submission. The checked data is coming in using a 'GET' request and that works phenomenally using ...
1
vote
2answers
145 views
how to correctly pass a json object to flask server using jquery ajax
i want to pass a json object which contains nested objects from my client to my server.
on the client side, my data structure looks like this:
var response = {};
response['screening'] = '1';
...
-1
votes
1answer
56 views
Post JSON to a REST service and then iterate it
i am having the following issue. I am trying to post a JSON object to a REST service that i have and then iterate it so as to do some database operations. I am getting the object in the REST in the ...
1
vote
3answers
148 views
Difficulty accessing json file with d3 and flask
I am using Flask as a web framework, and I am trying to implement the first example from the book Getting Started with D3, by Mike Dewar. I have a Python script named run.py and two directories, ...
71
votes
1answer
2k views
Heroku truncates HTTP responses?
I am running a Flask/Gunicorn Python app on a Heroku Cedar dyno. The app returns JSON responses to its clients (it's an API server, really).
Once in a while clients get 0-byte responses. It's not me ...
1
vote
2answers
120 views
Flask jsonify: key starting with digit
Say i want to create the following JSON document in Flask:
{"1": {"name": "Tom"}}
I couldn't just call return jsonify(**kwargs), because Python forbids naming variables starting with a number, like ...
0
votes
0answers
77 views
Making a JSON http response from mongo query
I want my flask app to communicate in JSON requests and responses.
My mongo query looks like
def get(self, long, lat):
result = [(doc) for doc in self.db.lists.find({"loc": {"$near": [long, ...
2
votes
2answers
341 views
how to post data structure like json to flask?
I have a data structure like this:
i'm try to send it to server by $.ajax:
$.ajax({
type: 'POST',
data: post_obj, //this is my json data
dataType: 'json',
url: '',
success: ...
1
vote
1answer
136 views
Flask-Restless dumps Decimal value from Flask-Sqlalchemy
i have this model using Flask-SQLAlchemy:
class Menu(Document, db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(80), unique=True, ...
0
votes
1answer
46 views
embed json into form when POST
this is not ajax, but much simpler.
What I have is a form of bunch of fields and rendered into html. my web site's visitors will access that page and fill out the form and click 'submit' button.
I ...
0
votes
4answers
122 views
Why is the jquery $.post command not sending JSON data to the server
I've been using the $.getJSON command for awhile. But since I'm actually posting to the server I need to be using $.post. But as soon as I switch from $.getJSON to $.post, the back end, which is the ...
1
vote
1answer
214 views
Flask mongoengine for a json api
I want to develop a json api using flask-mongoengine, but it seems a litle difficult to return json responses.
This is my view's code:
@users.route('/', methods=["GET"])
def index():
return ...
0
votes
2answers
132 views
Writing date objects to riak with python and flask (with overly complex jsonification)
I've been working on a small project for myself, where I use riak, python and flask framework. Like in most cases, I'd like to store creation date of my objects stored in riak, and some other dates as ...
-1
votes
1answer
70 views
How to build a flask template with a list of json elements?
I'm pretty sure this should be an easy one. I am using Flask, and i am buildeing a template that gets a list of jeson elements. I wish to buil a table that lists those elements in an ordered manner, ...
0
votes
1answer
161 views
flask request.json order
I get JSON data submitted to my api (built with Flask) endpoint and I need that data to be exported to excel but the problem is that once my api receives the data and loads it with request.json the ...
2
votes
1answer
325 views
python/flask/Jinja2 and Json
"I am using Flask,Jinja2,higHighcharts"
Example (Python/Flask):
@app.route("/column/")
def column():
data=[{"data": [49.9, 54.4], "name": "Tokyo"}, {"data": [42, 30.4], "name": "AC"}]
return ...
2
votes
1answer
242 views
How to use nested Python dictionaries and D3.js?
I have a Python/Flask app that gathers data from third-party APIs and stores them in a JSON-like structure (nested Python dictionaries called 'results').
I'm sending this to my template using:
def ...
0
votes
1answer
452 views
JSON “POST” to Flask View doesn't work
I want to send some JSON via POST to my Flask View.
here is my code
js:
$.post('/blog/add/ajax',
{ "title": "hallo", "article": "test" },
function(data) {
console.log(data.title);
...
1
vote
1answer
1k views
Flask request and application/json content type
I have a flask app with the following view:
@menus.route('/', methods=["PUT", "POST"])
def new():
return jsonify(request.json)
However, this only works if the request's content type is set to ...
0
votes
1answer
507 views
No response with POST request and Content-Type “application/json” in flask
I'm having problems with a Flask view that should return a response with content-type "application/json" in response to a POST request.
Specifically, if I do:
curl -v -d 'foo=bar' ...
2
votes
1answer
232 views
Flask Jsonify mongoengine query
I have method like this , and want to return as Json , but it writes that Posts object is not Json serializable :S
def show_results_async(text):
query = { ...
2
votes
4answers
258 views
API in Flask--returns JSON but HTML exceptions break my JSON client
exceptions returned in HTML break my JSON client. I want to jsonify this output.
More detail: i have a view function which an endpoint of this api app.
As you can see, this function returns the ...
0
votes
2answers
506 views
RESTful interface in Flask and issues serializing
I'm learning Backbone.js and Flask (and Flask-sqlalchemy). I chose Flask because I read that it plays well with Backbone implementing RESTful interfaces. I'm currently following a course that uses ...
14
votes
1answer
453 views
Flask slow at retrieving post data from request?
I'm writing flask application that accepts POST requests with json data. I noticed huge differences in response time based on data size being passed to application. After debugging I narrowed down ...
2
votes
1answer
39 views
Flask Catch SQLite Query Issues
I'm writing an API in Flask, and my HTTP DELETE method deletes a record in SQLite according to its ID passed as a JSON.
Assuming the ID passed does not exist, no error is thrown and success 200 is ...
0
votes
1answer
151 views
try except JSON Error in Flask
I am trying to add to an API a DELETE method as follows:
if request.method == 'DELETE':
if request.headers['Content-Type'] == 'application/json':
try:
data = ...
1
vote
2answers
477 views
Flask Python REST API set optional JSON param when receiving POST
I'm building a REST API with Flask which add a photo to a database. The database is abstracted in PhotoModel Class. The API receives a JSON formated HTTP POST which contain the picture in a bin string ...
3
votes
2answers
720 views
How to return json using Flask web framework
My aim is to do data summary in python using Pandas and return the summary in the form of JSON. I am using the Flask web framework to return JSON.
My code to get JSON is as follows:(excluding ...
1
vote
1answer
147 views
View rendering decorator for JSON with GAE in Flask
I'm trying to write a view rendering decorator for JSON in Flask following this snippet: http://flask.pocoo.org/snippets/18/
The thing is that I need to serialize as JSON, GAE models, for which the ...
0
votes
1answer
1k views
Retrieving specific POST data in Flask
I'm trying to get the post data in flask
@app.route('/getpersonbyid', methods = ['POST'])
def getPersonById():
personId = (int)(request.form['personId'])
print personId
I'm ...
0
votes
1answer
150 views
Inserting data from MySql to Json array
I'm fetching data from Mysql from table person(id, name, email). The table has many rows.
I'm trying to put into a json array in a loop. But in the json array it gets overwritten with the new array.
...
6
votes
3answers
3k views
How do I `jsonify` a list in Flask?
Currently Flask would raise an error when jsonifying a list.
I know there could be security reasons https://github.com/mitsuhiko/flask/issues/170, but I still would like to have a way to return a ...
1
vote
1answer
160 views
Starting out with a REST server and a Coffeescript frontend
Looking for some help on where to begin, there are so many competing libraries and acronyms I get all dizzy trying to sort it all out.
I would like to
Create a REST backend (probably Python with ...
8
votes
2answers
2k views
Forcing application/json MIME type in a view (Flask)
I can't figure out how to force the MIME type application/json for a view in Flask. Here is a simple view I've thrown together for demonstration purposes:
@app.route("/")
def testView():
ret = ...
0
votes
3answers
3k views
Python Mongodb Pymongo Json encoding and decoding
I'm having some trouble with Mongodb and Python (Flask).
I have this api.py file, and I want all requests and responses to be in JSON, so I implement as such.
#
# Imports
#
from datetime import ...
2
votes
1answer
576 views
Flask - custom decorator breaks the routing
I have the following Flask routes and a custom helper:
from spots import app, db
from flask import Response
import simplejson as json
def json_response(action_func):
def ...
0
votes
1answer
544 views
UTF8 and JSON in Flask
In Flask/Python We have a dictionary like this created by the json.loads function:
{ "msg": [
"Dobr\u00fd den."
] }
We return a JSON response from our HTTP GET web method like return ...
0
votes
1answer
728 views
jsonify is not defined - Internal Server Error
Playing around with Flask and just wanted to print out some data as JSON formatted, but I keep getting the error:
NameError: global name 'jsonify' is not defined
from flask import Flask
from ...
3
votes
1answer
3k views
Flask POST request is causing server to crash
I am trying to make a simple api in Flask, the first step being getting the POST json data. (I just want to print it for now) This is my code and when I request /api with json data, it returns a 500 ...
0
votes
1answer
2k views
Flask with Backbone.js REST API
Model.save() in backbone.js sends the model data as POST to server as a JSON encoded string. Its just a string and not variable=jsonString as in a normal POST request. So I cant access it in Flask as ...
0
votes
1answer
919 views
Displaying stackOverflow API JSON data using Flask
I've been trying to display my username and reputation from the JSON data retrieved from the StackOverflow API.
Im using the python module Requests to retrieve the data.
Here is the code
from ...
0
votes
1answer
555 views
Python - Flask - Request.form not working
I'm working with the Flask framework for Python, and I am trying to use backbone.js as a frontend, at the end of the function, I do
return jsonify(results=data)
to return a json result. The issue ...
22
votes
3answers
10k views
json.dumps vs flask.jsonify
I am not sure I understand the purpose of flask.jsonify method. I try to make json string from this:
data = {"id": str(album.id), "title": album.title}
but what I get with json.dumps differs from ...




