vote up 2 vote down star
1

I'm looking for a simple solution using Python to store data as a flat file, such that each line is a string representation of an array that can be easily parsed.

I'm sure python has library for doing such a task easily but so far all the approaches I have found seemed like it would have been sloppy to get it to work and I'm sure there is a better approach. So far I've tried:

  • the array.toFile() method but couldn't figure out how to get it to work with nested arrays of strings, it seemed geared towards integer data.
  • Lists and sets do not have a toFile method built in, so I would have had to parse and encode it manually.
  • CSV seemed like a good approach but this would also require manually parsing it, and did not allow me to simply append new lines at the end - so any new calls the the CSVWriter would overwrite the file existing data.

I'm really trying to avoid using databases (maybe SQLite but it seems a bit overkill) because I'm trying to develop this to have no software prerequisites besides Python.

flag

75% accept rate
parsing and encoding some things "manually" is not a big deal. – SilentGhost May 17 at 19:07
your right, and I don't mean to come off lazy or stubborn - I'm kind of new to Python and just have this nagging obsession with doing things the correct way. I've found with python that I'll spend an hour writing out a method to parse or validate something only to realize there is a built-in method for doing it. – KeyboardInterrupt May 17 at 19:12

6 Answers

vote up 4 vote down check

Must the file be human readable? If not, shelve is really easy to use.

link|flag
Thank you. I didn't look into Pickle so it may or may not be superior however I implemented shelf, it was simple and is exactly what I was looking for. – KeyboardInterrupt May 17 at 20:18
I don't know either, maybe pickle would be even simpler. – kotlinski May 17 at 20:36
vote up 8 vote down

In addition to pickle (mentioned above), there's json (built in to 2.6, available via simplejson before that), and marshal. Also, there's a reader in the same csv module the writer is in.

UPDATE: As S. Lott pointed out in a comment, there's also YAML, available via PyYAML, among others.

link|flag
2  
+1: JSON and YAML and quite nice for this kind of thing. – S.Lott May 17 at 20:32
+1 for JSON. Human and machine readable! – Kiv May 17 at 21:19
vote up 2 vote down

I'm looking for a simple solution using Python to store data as a flat file, such that each line is a string representation of an array that can be easily parsed.

Is the data only ever going to be parsed by Python programs? If not, then I'd avoid pickle et al (shelve and marshal) since they're very Python specific. JSON and YAML have the important advantage that parsers are easily available for most any language.

link|flag
vote up 1 vote down

This solution at SourceForge uses only standard Python modules:

y_serial.py module :: warehouse Python objects with SQLite

"Serialization + persistance :: in a few lines of code, compress and annotate Python objects into SQLite; then later retrieve them chronologically by keywords without any SQL. Most useful "standard" module for a database to store schema-less data."

http://yserial.sourceforge.net

SQLite is not "overkill" at all -- you will be amazed how simple it is; plus it solves more general data persistance issues.

link|flag
vote up 0 vote down

I don't have enough reputation points to up vote Jeremy, but pickle is what you're looking for.

link|flag
2  
This isn't really very helpful. I would be better to delete this and wait another day or two until you amass a reputation of 15, then revisit things like this and upvote. – S.Lott May 17 at 20:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.