Hi all,
I am learning python, i have written a script per an example in the book I am reading where it imports the urllib library. This works fine when i run it from IDLE but if i go to the folder when the file is and run "python test.py" i get an error where it tells me that
Traceback (most recent call last):
File "test.py", line 1, in ?
import urllib.request
ImportError: No module named request
I verified that I am using python 3.1.2, any suggestions or ideas why this fails on the command line? Thanks in advance.
my code:
import urllib.request
import time
price = 99.99
while price > 1.01:
time.sleep(3)
page = urllib.request.urlopen("http://www.beans-r-us.biz/prices.html")
text = page.read().decode("utf8")
where = text.find('>$')
start_of_price = where + 2
end_of_price = start_of_price + 4
price = float(text[start_of_price:end_of_price])
print ("Buy!")