Hey Guys, [Using Python 3.1] Anyone have any idea how to make a python 3 application which alows the user to write a text file with multiple words seperated with comors, the program should read the file, a download the wikipedia page of the requested item. e.g. if they typed hello,python-3,chicken ir would go to wikipedia and download http://www.wikipedia.com/wiki/hello, http://www.wikip... Anyone think they can do this? When I say "download" i mean download the text, doesnt matter about images.

Thanks, I know this place is realy helpful.

link|improve this question

2  
This sounds like homework to me. If you expect to get some help, put some effort and show us some code. – faif Mar 11 '11 at 21:28
2  
I have an idea of how to make it, yeah. Show me yours and I'll show you mine. – Daniel DiPaolo Mar 11 '11 at 21:30
^^^^ bofh! ^^^^ – tiagoboldt Mar 11 '11 at 21:42
feedback

2 Answers

up vote 1 down vote accepted

Look up urllib.request.

link|improve this answer
feedback

You described exactly how to make such a program. So what is the question?

You read the file, split on commas, and download the URL. Done!

link|improve this answer
i know how to do the extra stuff, reading text files... but i dont know how to do the downloading of the page? – Alex Mar 12 '11 at 10:28
@Alex: You use urllib. – Lennart Regebro Mar 12 '11 at 12:48
feedback

Your Answer

 
or
required, but never shown

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