[Tutor] file fetcher class object through http

2011-08-19 Thread Artie Ziff
Hello.. I like reading different people's implementations of python as it helps me decide what is necessary vs what is not. Essentially, I want to write a class that finds, and downloads a file from a web server. Of course I may add some file matching features through regex... and other th

[Tutor] running & debugging in python interactive shell

2009-01-14 Thread Artie Ziff
Greetings. I am attempting to search archives, however I thought it would be OK to ask while I search... thank you to those who responded to my previous inquiry. Your response was very helpful to me. My environment is embedded so I have only a python interactive shell for running python scripts.

[Tutor] simple array access

2009-01-07 Thread Artie Ziff
Hello, I used python list comprehension to create a grid (list of lists) of Objects (instances of MyItem class). Can anyone make recommendations to achieve a simple access to the elements. My attempt at array access (like this: array[1,2] ) does not work. What am I overlooking? Thanks in advance!