Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~635 People Reached
Member Avatar for tiddster

I am using regular expressions to look for certain keyword sin a string. At the moment I have got: import re thisText = "<meta http-equiv='content-type' content='text/html; cHarSet=gBk' />" n = re.compile(r'\b\s*charset=gbk[a-z]*', re.IGNORECASE|re.VERBOSE) print n.findall(thisText) this allows me to get the string, ignoring the case of the text. I also want …

Member Avatar for snippsat
0
107
Member Avatar for tiddster

I have been asked to download the index page from the website, anyone know how to do this using a python script, or just how to do this at all?! Google doesn't seem to throw anything relevant up.

Member Avatar for drjohn
1
55
Member Avatar for tiddster

Is there anyway, without using threading, to get python to do the following do for 5 seconds do action else do something else

Member Avatar for TrustyTony
0
59
Member Avatar for tiddster

Does anyone know how to download the index page from the website using a python script? For a start, I don't understand the concept, google doesnt seem to throw up any relevant articles so am a little lost!

Member Avatar for Tech B
0
148
Member Avatar for tiddster

I have a list containing strings. I want to make a directory for each item in the list, with the name of the directory being the string. Does anyone know if this can be done, and it so, how?

Member Avatar for raj_developer
0
213
Member Avatar for tiddster

I have an HTML form that has fields that allows a database to be searched and the results displayed. When initially displaying the page, all the records of the database appear, as if a search was performed without any query values. Is there any javascript coding that will stop the …

Member Avatar for Graphix
0
53