User A Nony Mouse - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:03:40Zhttp://stackoverflow.com/feeds/user/7182http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/55391/python-regular-expression-for-html-parsing-beautifulsoup/64983#649835Answer by A Nony Mouse for Python regular expression for HTML parsing (BeautifulSoup)A Nony Mouse2008-09-15T17:35:44Z2009-09-14T13:19:03Z<p>I agree with Vinko <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a> is the way to go. However I suggest using <code>fooId['value']</code> to <a href="http://www.crummy.com/software/BeautifulSoup/documentation.html#The%20attributes%20of%20Tags" rel="nofollow">get the attribute</a> rather than relying on value being the third attribute.</p>
<pre><code>from BeautifulSoup import BeautifulSoup
#Or retrieve it from the web, etc.
html_data = open('/yourwebsite/page.html','r').read()
#Create the soup object from the HTML data
soup = BeautifulSoup(html_data)
fooId = soup.find('input',name='fooId',type='hidden') #Find the proper tag
value = fooId['value'] #The value attribute
</code></pre>
http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/91540#915401Answer by A Nony Mouse for Multiple keyboards and low-level hooksA Nony Mouse2008-09-18T10:44:06Z2008-09-18T10:44:06Z<p>There is a way to do this, I had It working using <a href="http://www.quickmacros.com/" rel="nofollow">quick macros</a> and <a href="http://www.quickmacros.com/forum/viewtopic.php?t=776" rel="nofollow">keyboard detector</a>.</p>
http://stackoverflow.com/questions/91434/javascript-message-box/91477#914770Answer by A Nony Mouse for javascript message boxA Nony Mouse2008-09-18T10:26:05Z2008-09-18T10:26:05Z<p>It isn't possible to apply formatting to a standard dialogue box. However if you <em>really</em> want to format it you could flash up the message in HTML either next to the button or as a absolutely placed div, which you could format with CSS.</p>
http://stackoverflow.com/questions/80963/processing-javascript-regex-submatches/83441#834412Answer by A Nony Mouse for Processing Javascript RegEx submatchesA Nony Mouse2008-09-17T13:51:36Z2008-09-17T13:51:36Z<p>The easiest solution would be to to replace all the tags, whether they are closed or not and let <code>.innerHTML</code> work out if they are matched or not it will much more resilient that way..</p>
<pre><code>var tagreg = /\[(\/?)(b|u|i|s|center|code)]/ig
div.innerHTML="[b][i]helloworld[/b]".replace(tagreg, "<$1$2>") //no closing i
//div.inerHTML=="<b><i>helloworld</i></b>"
</code></pre>
http://stackoverflow.com/questions/64904/parsings-strings-extracting-words-and-phrases-javascript/65085#650850Answer by A Nony Mouse for parsings strings: extracting words and phrases [JavaScript]A Nony Mouse2008-09-15T17:49:19Z2008-09-15T17:57:32Z<p>A simple regular expression will do but leave the quotation marks. e.g.</p>
<pre><code>'foo bar "lorem ipsum" baz'.match(/("[^"]*")|([^\s"]+)/g)
output: ['foo', 'bar', '"lorem ipsum"', 'baz']
</code></pre>
<p>edit: beaten to it by shyamsundar, sorry for the double answer</p>
http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/62780#627803Answer by A Nony Mouse for How would you design a very "Pythonic" UI framework?A Nony Mouse2008-09-15T13:18:54Z2008-09-15T13:18:54Z<p>With some Metaclass magic to keep the ordering I have the following working. I'm not sure how pythonic it is but it is good fun for creating simple things. </p>
<pre><code>class w(Wndw):
title='Hello World'
class txt(Txt): # either a new class
text='Insert name here'
lbl=Lbl(text='Hello') # or an instance
class greet(Bbt):
text='Greet'
def click(self): #on_click method
self.frame.lbl.text='Hello %s.'%self.frame.txt.text
app=w()
</code></pre>