Tagged Questions
0
votes
1answer
35 views
How to serialize the result of a query in python?
I'm having trouble to serialize the result array from a query where one of its projection is of datetime property.
My model class looks as follows:
class ActivitySummaries(ndb.Model):
...
5
votes
4answers
351 views
Parsing JSON with python: blank fields
I'm having problems while parsing a JSON with python, and now I'm stuck.
The problem is what the entities of my JSON are not always the same. The JSON is something like:
"entries":[
{
"summary": ...
0
votes
1answer
44 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': ...
1
vote
1answer
55 views
Code runs in shell but not from the module
This code for downloading a json file from a url runs alright when I type commands one by one in the python shell. However, when I try to run the module containing this code I get: ValueError: No JSON ...
1
vote
0answers
86 views
Python/Json/bs4 : How to preserve html formatting in the json object?
Background: I am using bs4 to scrape from a page, use the data to make a json object.
Problem: I need to store piece of html formatted text, and preserve the formatting, so that I can reproduce it in ...
0
votes
1answer
59 views
Work with twitter JSON responses
I'm working with Twitter API and python and I'm facing a problem when I try to merge JSON pages that I retrieve.
The structure of the JSON retrieved for each request is:
{
"previous_cursor": 0,
...
0
votes
0answers
57 views
Google App Engine Python 2.7 JSON
I'm new to the Python side of GAE and am learning, have done some reading on simplejson and json. Appreciate any thoughts/help on the following.
1) Quickly generate JSON on ONLY the XxxProperty ...
1
vote
2answers
28 views
Retrieve the object from dict to that it can easily be dumped via json.dumps()
How can I get it to print out like below in a pythonic like way (I could manually craft it but feel like there is a better pythonic way), was originally thinking I could use dict for this but with my ...
0
votes
0answers
70 views
json.dumps fails for some results of GqlQuery with ORDER BY and not others
This problem is hard to explain. I'm almost done with this massive project for school, but the last sticking point is this bizarre error. I'm using the Python API for Google App Engine. My models ...
0
votes
1answer
29 views
Python 27 and Json - Finding values
What I'm trying to do is find the market value which is under the key "symbol".
With this code I get the error
File "C:\Python27\bitcoinAPI", line 9, in getmarket
for key, value in data.items():
...
0
votes
1answer
106 views
How can I load a string into a JSON object if the string contains \n?
I need to load some text from a UTF-8 data file that contains text in JSON format into a JSON object, then parse it. I do not have control over the content or format of the file and must deal with ...
-1
votes
1answer
54 views
how to use Json in Python [closed]
How i can redo this code into Json
def getStatusData(self):
return eval(self.__statusdata)
def setStatusData(self, statusdata):
self.__statusdata = str(statusdata)
statusdata = ...
0
votes
0answers
36 views
Homework for newbie Python student - Answered
I am trying to do some Trident college on-line homework and trying to understand the json module. I am running Windows 8-64 bit and Python 2.73. I had issues with fp but am editing this with the ...
0
votes
1answer
65 views
How to grab values from key:value pairs in parsed JSON in Python
I am trying to extract data from a JSON file. Here is my code.
import json
json_file = open('test.json') ...
2
votes
1answer
68 views
grouping / order by in sqlalchemy query
This group by / order by wont work, the point is to count HTTP.statusline on minute and then return it. Now it return multiple time of minute. In the database the date is saved as String.
Example on ...
0
votes
2answers
471 views
How to call a REST API using Python using json request/response- Crucible Development
I am a newbie to python and am trying to create a script to login to crucible and use the token to pass to other services.
1) I am able to make a xml request and get a response but as soon as I pass ...
1
vote
0answers
40 views
Python GAE: raised ValueError(Unpaired high surrogate) with json.loads only on production server
On GAE with Python, I'm using urlfetch to fetch a json string from Flickr. When I try to load that string with json.loads on the production server the exception "raised ValueError(Unpaired high ...
0
votes
1answer
236 views
Find if nested key exists in json python
In the following JSON response, what's the proper way to check if the nested key "C" exists in python 2.7?
{
"A": {
"B": {
"C": {"D": "yes"}
}
}
}
one line JSON
{ ...
0
votes
2answers
91 views
Parsing json data in .txt results ValueError
IN json.txt I have this data:
"""{"iPod": "apple"}"""
This code is that parsing json.txt:
f = open("json.txt", "r")
json_data = f.read()
f.close
print json.loads(json_data)
It results in:
...
0
votes
2answers
93 views
How can I convert a JSON dictionary to a python dictionary? [duplicate]
I have a JSON file that only contains a JSON dictionary (example: http://www.collegeswimming.com/results/17172/event/4/). Is there any module in Python that will easily convert this into an object I ...
0
votes
2answers
54 views
Parsing json including null result NameError with Python 2.7
I want to pick out "b"tag from this json data.
But it results NameError.
Please tell how to improve this code.
json_data = {"one": null,
"two": {"a": "1", "b": null},
"three": "3"
...
0
votes
0answers
80 views
Why do I get error 401 when I post a json array
Python's urllib2: Why do I get error 401 when I post a json array to a url?
I used python 2.7. Following is the error message I got:
response = urllib2.urlopen(req, json.dumps(jsonArray))
File ...
1
vote
1answer
82 views
Error handling in Python with JSON and a dictionary
I currently have a Python 2.7 script which scrapes Facebook and captures some JSON data from each page. The JSON data contains personal information. A sample of the JSON data is below:-
{
"id": ...
0
votes
3answers
66 views
JSON Python get field as array
This is my response to a get request for some json goodness.
I'm getting this in Python, everything works up to here.
I've been searching for json documentation and reading quite a bit but can't ...
-1
votes
1answer
67 views
Dictionary / JSON issue using Python 2.7
I'm looking at scraping some data from Facebook using Python 2.7. My code basically augments by 1 changing the Facebook profile ID to then capture details returned by the page.
An example of the page ...
1
vote
2answers
86 views
Issue in using json.loads() in python
I am trying to get data from a nested java script structure. I want to use json.loads() for this. However, I am getting an error saying "No JSON object could be decoded"
Following is the code that I ...
0
votes
1answer
227 views
Converting JSON to CSV using json2csv.py
I did some online research and I found a script to convert JSON files to CSV file which I downloaded and stored on my local filesystem as json2csv.py. The tutorial says I have to execute this:
...
0
votes
1answer
67 views
How to get data from json array by python
I have following json object data, how can I using python to get both "BuildId" and second "ftp" (note: it is within "ArchiveLocation") value?
{"BuildId":"4c53575f-36f48a7f1f37",
...
-3
votes
1answer
42 views
How do you format this in Python?These are just 6 records as Json objects
I need to format this string.These are just 6 records of JSON arrays/objects.I need to write a python code to remove all " ,. I want to see only real data in a single row.
Can someone help me with ...
0
votes
1answer
110 views
How to read Json object with a python wsgi application
I need to develop a phython (v2.7) wsgi application to receive and parse data in json object posted from another web.
The format of an example JSON object is as below.
{
...
0
votes
1answer
121 views
Format JSON objects in python
I have json objects in a notepad(C:\data.txt).There are millions of records I just used one record as an example.But I want to see only data on my notepad like:
1 123-567-9876 TEST1 TEST 717-567-9876 ...
0
votes
2answers
53 views
How do you output Json object into a notepad
I have api's that run and fetch the data as JSON objects.How do I store these objects directly into a database?The database we are using now is SQL Server 2008?Can I store theis data directly into the ...
1
vote
2answers
108 views
How to convert json string into normal string?
I had an earlier question, which I have deleted in favour of this one. Since I was under the wrong assumption that it had something to do with the dateutil version.
test1 = ...
0
votes
1answer
124 views
Google app engine JSON/AJAX not working
Here is my JS code:
<script>
$("#comments").click(function(event) {
$.ajax({
type: "GET",
url: '/localhost:8080/comment',
...
0
votes
1answer
72 views
Issue with extracting data from a javascript structure on a website using beautiful soup in Python
I am trying to scrape data from a website which uses Javascript structure to load the data. I used solution to this question Issue with html tags while scraping data using beautiful soup to accomplish ...
0
votes
1answer
433 views
Serializing output to JSON - ValueError: Circular reference detected
I'm trying to output results of my mysql query to JSON.
I have problem with serializing datetime.datetime field, so I wrote small function to do that:
def date_handler(obj):
if hasattr(obj, ...
1
vote
1answer
91 views
Issues in getting the information from nested json dictionary using Python
I am trying to get the pricing information about devices from a website which uses javascripts to load the data. I am getting the data in a JSON dictionary structure. Below is the code I am using:
# ...
0
votes
1answer
157 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 ...
3
votes
3answers
113 views
Using Multiline Regular Expressions in Python?
I am using regular expressions in Python to search through a page source, and find all the json information in the javascript. Specifically an example would look something like this:
var fooData = {
...
0
votes
1answer
41 views
How do I read a list of JSON files from file in python?
I have a list of JSON files saved to disk that I would like to read. Sometimes the JSON files span more than one line and so, I think that a simple list comprehension that loops over ...
0
votes
2answers
244 views
JSON Decoding String
I am trying to decode a JSON string using
json.loads(request.POST.get('d'))
where d is a POST parameter containing a JSON string.
I get the following error in the stacktrace:
ValueError: ...
1
vote
1answer
119 views
pass list of JSON blobs to django template
How do I pass a python list of JSON blobs to a django template so i can parse it from JSON into a javascript object?
With jquery I have tried the likes of ...
0
votes
1answer
192 views
Parsing through a JSON file with Python 2.x
I'm currently trying to parse through a text file containing a number of Facebook chat fragments. The fragments are stored as below:-
...
3
votes
4answers
268 views
Can I implement custom indentation for pretty-printing in Python’s JSON module?
So I'm using Python 2.7, using the json module to encode the following data structure.
'layer1': {
'layer2': {
'layer3_1': [ long_list_of_stuff ],
'layer3_2': 'string'
}
}
...
0
votes
1answer
243 views
Custom JSON encoder in Python 2.7 to insert plain JavaScript code
I'm trying to upgrade a portion of Python 2.6 code to Python 2.7. This code uses the json module to produce some JavaScript (not JSON-compliant), which is then inserted into the rest of a script.
The ...
0
votes
1answer
459 views
JSON object not decoded while doing jQuery.post to python app engine
I have been working on the app engine for some time, and this problem has been bugging me ever since. Could not find a solution to this, so thought I had ask.
I got a simple post handler in python in ...
0
votes
1answer
167 views
parse json data in template Google App engine python
I am storing json data in the database in my google app engine, There is no problem in stroing the data to DB, But I am not sure how to parse it in the view, For e.g I get all the topics from my MODEL ...
0
votes
2answers
124 views
Garbled text returned while opening a URL in Python 2.7
I would like to open a StackExchange API (search endpoint) URL and parse the result [0]. The documentation says that all results are in JSON format [1]. I open up this URL in my web browser and the ...
0
votes
2answers
258 views
django/python reading json?
I'm trying to learn django/python and I'm trying to figure out how to read json data...
I have something like :
{
region: {
span: {
latitude_delta: 0.08762885999999526,
...
1
vote
2answers
104 views
Loading Class Variables from JSON?
I have a class that I'll be instantiating a lot from lines of JSON. Something like:
class Something:
def __init__(self, json):
#load all self variables from simplejson.loads(json) here
...
