I need to download n # of files from an http location using urllib2
which start with a given pattern "my_file_$TIMESTAMP.xml"
. I'd like to get all files that start with "my_file"
excluding the timestamp component.
I've seen how this is possible using glob
for local files here: Find all files in a directory with extension .txt in Python but i'm not sure if this is possible over an http connection with basic authentication?