vote up 1 vote down star

Is there any way to access the file object used by a CSV writer/reader object after it has been instantiated? I openned up the csv module, and it appears it's contest are builtin. I also tried setting the file object as a property but I get the following error:

AttributeError: '_csv.writer' object has no attribute 'fileobj'
flag

77% accept rate

1 Answer

vote up 3 vote down check

csv.writer is a "builtin" function. That is, it is written in compiled C code rather than Python. So its internal variables can't be accessed from Python code.

That being said, I'm not sure why you would need to inspect the csv.writer object to find out the file object. That object is specified when creating the object:

w = csv.writer(fileobj, dialect, ...)

So if you need to access that object later, just save it in another variable.

link|flag
I'm not creating the writer, a factory function is creating the csv.writer object so I never actually have a reference to the file object. – Mark Roddy Oct 13 '08 at 18:41
What is that factory function? Is it written in Python? Can you inspect its code to figure out how to get the file object? – Dan Oct 13 '08 at 18:54

Your Answer

Get an OpenID
or

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