vote up 2 vote down star
1

I have a very simple python script that should scan a text file, which contains lines formatted as id='value' and put them into a dict. the python module is called chval.py and the input file is in.txt. here's the code:

import os,sys
from os import *
from sys import *

vals = {}

f = open(sys.argv[1], 'r')

for line in val_f:
    t = line.split('=')
    t[1].strip('\'')
    vals.append(t[0], t[1])

print vals

f.close()

when i try to run it i get:

Traceback (most recent call last):
File "chval.py", line 9, in ? f = open(sys.argv[1], 'r') TypeError: an integer is required

I'm using python 2.4... because i've been challenged to not use anything newer, is there something about open() that I don't know about? Why does it want an integer?

anything after that line is untested. in short: why is it giving me the error and how do i fix it?

flag

67% accept rate
1  
Your script has a bug in it. vals is a dictionary, which does not have an append method. You want to just assign with vals[t[0]]=t[1] – Christopher Jun 25 at 23:19
also, it's supposed to be "for line in f:" as opposed to val_f – Sev Jun 25 at 23:23
yeah sev, i had gone through and changed my variable halfway through... thanks for pointing that out. – Victor Jun 25 at 23:30
so i had added another issue to my problem where i was getting a "file not found error" the machine i'm on at work is set to hide extensions so the file was called in.txt.txt instead of just in.txt – Victor Jun 25 at 23:33
cause == "machine ... is set to hide extensions"; effect = "the file was called in.txt.txt"??? – John Machin Jun 25 at 23:44
show 1 more comment

4 Answers

vote up 6 vote down check

Here you go -- rather than copy and paste, I'll let Alex Martelli keep his props:

don't use: from os import *

link|flag
vote up 3 vote down

Because you did from os import *, you are (accidenally) using os.open, which indeed requires an integer flag instead of a textual "r" or "w". Take out that line and you'll get past that error.

link|flag
vote up 1 vote down

Don't do import * from wherever without a good reason (and there aren't many).

Your code is picking up the os.open() function instead of the built-in open() function. If you really want to use os.open(), do import os then call os.open(....). Whichever open you want to call, read the documentation about what arguments it requires.

link|flag
vote up 0 vote down

Also of note is that starting with Python 2.6 the built-in function open() is now an alias for the io.open() function. It was even considered removing the built-in open() in Python 3 and requiring the usage of io.open, in order to avoid accidental namespace collisions resulting from things such as "from blah import *". In Python 2.6+ you can write (and can also consider this style to be good practice):

import io
filehandle = io.open(sys.argv[1], 'r')
link|flag

Your Answer

Get an OpenID
or

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