Tagged Questions
0
votes
2answers
30 views
Need way to unserialize objects from PHP in Python [closed]
I have a PHP serialized object that I need to un-serialize for use in Python. I know, it is not an open format but it is what I have to work with. I saw a topic that seemed to address this here but ...
0
votes
3answers
52 views
Decoding nested JSON with multiple 'for' loops
I'm new to Python (last week), and have reached my limit. Spent three days on this, most of my time in stackoverflow, but I cannot work out how to go any further!
The Json has multiple nested arrays. ...
1
vote
4answers
36 views
Output Pyodbc cursor output as Python dictionary?
How do I serialize pyodbc cursor output (from .fetchone, .fetchmany or .fetchall) as a Python dictionary?
I'm using bottlepy and need to return dict so it can return it as JSON.
0
votes
2answers
39 views
Python query objects are not serializable
When I tried to encode the query objects I get the following error:
File "C:\Program File\Python27\lib\json\encoder.py", line 264, in iterencode
return _iterencode(o, 0)
File ...
1
vote
1answer
37 views
How to make a custom exception class with multiple init args pickleable
Why does my custom Exception class below not serialize/unserialize correctly using the pickle module?
import pickle
class MyException(Exception):
def __init__(self, arg1, arg2):
...
0
votes
0answers
54 views
I am trying to build a knowledge management system that learns dynamically. As it comes
I am trying to build a knowledge management system that in small way tries to mimic human ability to learn. It deals with both, new instances of concepts that it already knows, which allows it to ...
2
votes
3answers
82 views
Object schemas/models without ORM, DOM or forms
I've used MongoEngine a lot lately. Apart from the MongoDB integration, I like the idea of defining the structures of entities explicitly. Field definitions make code easier to understand. Also, using ...
2
votes
3answers
72 views
Save a dictionary to a file Python
Say I got a dictionary like this:
Test = {"apple":[3,{1:1,3:5,6:7}],"banana":[4,{1:1,3:5,6:7,11:2}]}
Now I want to save this dictionary into a temporary file so that I can reconstruct the ...
0
votes
1answer
46 views
How to use Data.MessagePack in Haskell
MessagePack is a binary serialization format, which apparently can be used from both Haskell and Python, languages that I need to mix in a project of mine.
The structures that I need to serialize ...
0
votes
1answer
157 views
json.dump unable to serialize a dictionary containing a list in python
I have this part [{'scenariotestinputid': 1, 'scenarioid_id': 1, 'testinputid_id': 1}] inside a python dictionary called result. When I call json.dumps(result), I get a TypeError saying that ...
0
votes
2answers
66 views
Python list, tuple and dictionary to JSON?
What's the best way of displaying this as JSON?
{'foo': 'bar'}
[1,2,3,4,5]
My partial solution:
import json
def json_tuple(*args, **kwargs):
if args:
if kwargs:
...
0
votes
2answers
50 views
How to JSON serialize hh:mm:ss in Python? How to query its type?
I need to serialize a python object into JSON and am having a hard time converting time-counters into JSON-play-nice form
Say I have something like this:
01:20:24 # hh:mm:ss
which is a time ...
15
votes
4answers
316 views
Python-like pickling of full Javascript objects
Is there any serialization framework for Javascript which would retain class and reference information like Python pickles? I.e. one could directly take a prototypial inherited class instance (not ...
0
votes
1answer
34 views
Python multithreading : manager dict not serializable
I managed to put multithreading in a python script. I use the manager of the multiprocessing module to create and share a dictionnay upon multiple threads.
At the end of my script, i want to ouput ...
2
votes
3answers
108 views
Is there a python pickle equivalent library which dumps out ascii instead of binary stream?
Currently, the output from pickle is non-human readable, and thus, non editable.
I'm looking for something which can do exactly the same (or very close to) pickle, whereby it can dump out all the ...
2
votes
1answer
46 views
Serializing Django model objects: Referencing to self
I have implemented natural keys on my objects and they worked. Except for one model that reference to itself.
from django.db import models
class Person(models.Model):
name = ...
0
votes
3answers
68 views
How to obtain an object from a string?
Say I have the following class
class Test:
def TestFunc(self):
print 'this is Test::TestFunc method'
Now, I create an instance of the class Test
>>>
>>> t = Test()
...
0
votes
2answers
74 views
Textual reference of a method
Say I have the following:
def func():
print 'this is a function and not a method!!!'
class Test:
def TestFunc(self):
print 'this is Test::TestFunc method'
I have the following ...
1
vote
2answers
185 views
Django : <django.utils.functional.__proxy__ object at 0x7feaac2761d0> is not JSON serializable
I am getting a problem in django serialization
Here is my model for the state
class State(models.Model):
class Translation(translation.Translation):
name = ...
0
votes
1answer
63 views
Unpickle sometimes makes blank objects
I'm trying to use pickle to save a custom class; something very much like the code below (though with a few methods defined on the class, and several more dicts and such for data). However, often ...
0
votes
2answers
70 views
Python: In class Foo: x = MyClass() can MyClass know the name of the variable it is assigned to?
I'd like to be able to do the following:
class PrintName:
def __init__( self, obj ):
print obj._name
class SetName:
def __init__( self, name = None ): # Default name is None
...
0
votes
0answers
119 views
Serializing knn model opencv in python
I have a knn-classifier with OpenCV in a python 2.7 module and works ok, but now, I want to introduce it in my web app, I want the training method only run once and every time I send a new image, I ...
2
votes
1answer
78 views
Allowing the repr() of my class's instances to be parsed by eval()
Say I have defined a class myself and I defined a __repr__ method for it. I want to about convert it back to my object. I know that object serialization may be a good way of doing so (using the json ...
0
votes
1answer
63 views
json string fiddling
I have a python dictionary of JSON serialized values.
I want to add to these serialized strings without first doing loads(...), then later doing dumps(...) - so I 'fiddle' with the serialized values:
...
4
votes
1answer
102 views
Dump JSON from string in unknown character encoding
I'm trying to dump HTML from websites into JSON, and I need a way to handle the different character encodings.
I've read that if it isn't utf-8, it's probably ISO-8859-1, so what I'm doing now is:
...
0
votes
0answers
52 views
How can I serialize dynamically generated class?
I have a WTForms form building function for web survey data. since no two survey have same number and types of questions, a form class for each survey has to be created.
Like:
def ...
1
vote
5answers
121 views
Best method of saving data
I've made a class in which I want to keep track of stats of students. I intend to make a GUI later to manipulate this data.
My main question is: what is the best way to save and later retrieve this ...
1
vote
1answer
66 views
addressing slow unpickling of scikit-learn OneVsRest RandomForests
I've got an application where I'm loading very large python objects-- they're serialized scikit-learn classifiers and their associated vocabularies.
The classifiers are large enough (on the order of ...
1
vote
1answer
41 views
has_no_attribute error python
I am trying to send serialized objects over a network and until today, that worked fine.
Now I have an error:
@staticmethod
def processkeys(self):
'''
This method has to ...
2
votes
2answers
78 views
Shelve: choice of database
shelve documentation says:
The choice of which database package will be used (such as dbm, gdbm
or bsddb) depends on which interface is available.
What is that mean? How to determine which ...
0
votes
3answers
95 views
Django model as part of Ajax response
I want to put a Django model in de response for my Ajax request. Currently I have this in my views.py:
def get_account(request, account_id):
try:
account = ...
4
votes
4answers
57 views
How can I build a python datastructure by reading it from a file
I would like to build a list or a list of list by reading it from a text file.
For example, I have a file 'mylist.txt' saying
mylist = [
1,
2,
3,
4]
myotherlist = [
[1, 3, 4, 5],
[3, 5, 3, 6]
]
...
0
votes
1answer
70 views
sqlalchemy serializer merging
Im sending sqlalchemy objects trough net to another machine. First I serialize it to a string, then crypting and sending.
I serialize it with:
from sqlalchemy import create_engine
from sqlalchemy.orm ...
3
votes
4answers
117 views
Python Serialisation c# Deserialisation
I have python server that serialize some dictionary by using the marshal module. And send serialized message to the c# client socket. How I can deserialize this message on the client (c#) side. I can ...
0
votes
2answers
106 views
Sending a serialized data from js to server side in a variable
I am trying to send a serialized data through query string/variable in a url. As you know when we do a serialize in js it builds a query string itself. I am sending this data to server side which is ...
2
votes
1answer
116 views
How to serialize networkx (python) node to json format?
I have a networkx graph, and I would like to send a node (including its attributes) through a connection using json format. I know how to serialize the whole graph:
import networkx as nx
G=nx.Graph()
...
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
63 views
Why can't we picke an instance of InteractiveInterpreter?
An attempt to pickle an instance of InteractiveInterpreter results in the following error
File "", line 1, in
File "/usr/lib/python2.7/pickle.py", line 224, in dump
self.save(obj)
File ...
0
votes
1answer
614 views
Typed JSON serialization/deserialization in Python
class Person:
first_name = superjson.Property()
last_name = superjson.Property()
posts = superjson.Collection(Post)
class Post:
title = superjson.Property()
description = ...
1
vote
1answer
39 views
Complete representation of a dict extended superclass
Given this code:
class XmlObj(dict):
def __init__(self,xml,*args,**kwargs):
super(dict,self).__init__(*args,**kwargs)
if xml.firstChild.nodeName == '#text':
...
0
votes
0answers
63 views
python shell: pickle entire state
When using either "ipython" or "code.interact(local=locals())", I'd like to have a way to save the entire program address space into a pickle file, and similarly a way to load such a file and then ...
1
vote
3answers
165 views
How to efficiently serialize 64-bit floats so that the byte arrays preserve natural numeric order?
The project I'm working on requires me to store javascript numbers(which are doubles) as BLOB primary keys in a database table(can't use the database native float data type). So basically I need to ...
0
votes
0answers
78 views
Aggregate function cannot be serialized in django
I'm trying to serialize a django-object list and use it in a template. It works ok until I add some extra columns to my query with the annotate function. The "serializers.serialize" doesn't recognize ...
3
votes
3answers
188 views
Why does python pickle load and dump inflate the size of of an object on disk?
I have a pickled object in a file named b1.pkl:
$ ls -l b*
-rw-r--r-- 1 fireball staff 64743950 Oct 11 15:32 b1.pkl
Then I run the following python code to load the object and dump it to a new ...
2
votes
1answer
66 views
Are there any Tools like Schematics (Python) for Java?
Are there similar tools to this neat Python library: https://github.com/j2labs/schematics in Java?
Schematics is an easy way to model data. It provides mechanisms for structuring data, ...
2
votes
3answers
195 views
Python xml marshalling
I'm learning Python, my background is Java EE. I have used JAXB before, where I can basically define a regular class, throw some annotations in there and then use JAXB to marshall objects to xml. This ...
0
votes
1answer
93 views
Selectively dump object attributes with PyYAML
I can use YAML to dump a hierarchy of python objects, so:
import yaml
class C():
def __init__(self, x, y):
self.x = x
self.y = y
class D():
def __init__(self, c, d):
...
0
votes
2answers
322 views
Serialization to JSON two querysets in Django
I've some problem with JSON serialization two objects of type queryset in my Django project. For example I have:
collectionA = A.objects.all()
collectionB = B.objects.all()
When I try ot serialize ...
1
vote
1answer
147 views
How to model foreign key references to initialise Django model using YAML
I'm trying to initialise some Django models with the following yaml code:
- model: app.block &block_1
pk: 1
- model: app.vertex
fields:
x: 804837.500000
y: 7508312.500000
z: ...
0
votes
3answers
38 views
Safe-reading of Python literals
In short words, I want know if there is something (in particular some sort of safe serializer) for Python like JSON is for Javascript. I know that Python has a JSON module, but I would like something ...
