Re: [Tutor] Download file from the web and store it locally.

2006-05-24 Thread S. D. Rose
Matt- Have you tried running this line-by-line in IDLE? I've done a script almost exactly the same as what you're doing ( I downloaded a .jpg file from a web-server ), and when I was trying to learn what commands did what, I quickly changed from trying to write a 'program' to running lines ind

Re: [Tutor] defining __init__

2006-01-13 Thread S. D. Rose
One thing about classes that really tripped me up when I first started using classes was 'self' before the variable. When you have ' self.variable ' that is a variable that can be referenced by the parent. If there's no 'self' before the variable, you can not. For instance, if you have a routi