Is there a way to write python data structs to a file as text.
e.g. an app is running and has a variable/object: OPTIONS = ('ON', 'OFF', )
I need to write/merge the OPTIONS tuple into another file, not as a pickled object, but as text, verbatim: OPTIONS = ('ON', 'OFF', )
I could traverse the tuple, and one by one write the elements into the target file, but was wondering if there's an easier way.
note: if i do a "straight" write, i get the following:
fout.write(OPTIONS)
...
TypeError: argument 1 must be string or read-only character buffer, not tuple
