On Saturday, 29 September 2012 02:05:07 UTC+5:30, Prasad, Ramit wrote:
> Benjamin Jessup wrote:
>
> > Hello all,
>
> >
>
> > What do people recommend for a file format for a python desktop
>
> > application? Data is complex with 100s/1000s of class instances, which
>
> > reference each other
Benjamin Jessup wrote:
> Hello all,
>
> What do people recommend for a file format for a python desktop
> application? Data is complex with 100s/1000s of class instances, which
> reference each other.
>
> Write the file with struct module? (Rebuild object pointers, safe,
> compact, portable, not
Benjamin Jessup writes:
> ...
> What do people recommend for a file format for a python desktop
> application? Data is complex with 100s/1000s of class instances, which
> reference each other.
>
> ...
> Use cPickle with a module/class whitelist? (Can't easily port, not
> entirely safe, compact en
On Wednesday, 26 September 2012 18:29:14 UTC+5:30, Benjamin Jessup wrote:
> Hello all,
>
>
>
> What do people recommend for a file format for a python desktop
>
> application? Data is complex with 100s/1000s of class instances, which
>
> reference each other.
>
>
>
> Write the file with
Hello all,
What do people recommend for a file format for a python desktop
application? Data is complex with 100s/1000s of class instances, which
reference each other.
Write the file with struct module? (Rebuild object pointers, safe,
compact, portable, not expandable without reserved space)