User Florian Bösch - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T05:25:28Zhttp://stackoverflow.com/feeds/user/19435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115819/lightweight-x-window-manager-environment/115825#11582510Answer by Florian Bösch for Lightweight X window manager/environmentFlorian Bösch2008-09-22T16:15:52Z2009-10-28T21:14:09Z<p>The window managers listed below all subscribe to the lightweight and fast approach.
They are faster than fully fledged window managers like KDE or Gnome and trim down on most visual distractions. Which one you pick will be mostly determined by your own taste and what you can get to run.</p>
<p>There's a subfamily of these window managers, notably those which attempt to let you do everything by keyboard and let you tile your applications with minimal screen real estate waste. These can feel funny if you come from mouse-oriented window managers. XMonad and ratpoison are members of this family.</p>
<ul>
<li><a href="http://www.xfce.org/" rel="nofollow">xfce</a></li>
<li><a href="http://www.nongnu.org/ratpoison/" rel="nofollow">ratpoison</a></li>
<li><a href="http://www.fluxbox.org/" rel="nofollow">fluxbox</a></li>
<li><a href="http://awesome.naquadah.org/" rel="nofollow">awesome</a> -1, cannot handle minimize to tray</li>
<li><a href="http://xmonad.org/" rel="nofollow">XMonad</a></li>
<li><a href="http://dwm.suckless.org/" rel="nofollow">dwm</a></li>
<li><a href="http://www.fvwm.org/" rel="nofollow">fvwm</a></li>
<li><a href="http://www.icewm.org/" rel="nofollow">icewm</a></li>
<li><a href="http://www.enlightenment.org/" rel="nofollow">Englightenment</a></li>
<li><a href="http://www.suckless.org/wmii/" rel="nofollow">wmii</a></li>
<li><a href="http://icculus.org/openbox/index.php/Main%5FPage" rel="nofollow">openbox</a></li>
<li><a href="http://www.pekwm.org/projects/pekwm" rel="nofollow">pekwm</a></li>
</ul>
http://stackoverflow.com/questions/118260/how-to-start-idle-python-editor-without-using-the-shortcut-on-windows-vista/118275#1182754Answer by Florian Bösch for How to start IDLE (Python editor) without using the shortcut on Windows Vista?Florian Bösch2008-09-22T23:49:11Z2009-10-08T11:30:52Z<p>There's a file called idle.py in your Python installation directory in Lib\idlelib\idle.py</p>
<p>If you run that file with Python, then IDLE should start.</p>
<p>c:\Python25\pythonw.exe c:\Python25\Lib\idlelib\idle.py</p>
http://stackoverflow.com/questions/123499/passing-apache2-digest-authentication-information-to-a-wsgi-script-run-by-modwsg1Passing apache2 digest authentication information to a wsgi script run by mod_wsgiFlorian Bösch2008-09-23T20:05:07Z2009-06-24T12:43:03Z
<p>I've got the directive</p>
<pre><code><VirtualHost *>
<Location />
AuthType Digest
AuthName "global"
AuthDigestDomain /
AuthUserFile /root/apache_users
<Limit GET>
Require valid-user
</Limit>
</Location>
WSGIScriptAlias / /some/script.wsgi
WSGIDaemonProcess mywsgi user=someuser group=somegroup processes=2 threads=25
WSGIProcessGroup mywsgi
ServerName some.example.org
</VirtualHost>
</code></pre>
<p>I'd like to know in the /some/script.wsgi</p>
<pre><code>def application(environ, start_response):
start_response('200 OK', [
('Content-Type', 'text/plain'),
])
return ['Hello']
</code></pre>
<p>What user is logged in.</p>
<p>How do I do that?</p>
http://stackoverflow.com/questions/110927/do-you-recommend-postgresql-over-mysql/111032#11103249Answer by Florian Bösch for Do you recommend PostgreSQL over MySQL?Florian Bösch2008-09-21T13:38:36Z2009-03-31T00:29:40Z<p>I prefer <a href="http://www.postgresql.org/" rel="nofollow">Postgres</a>. This is mostly because Postgres is a little better with joins and subqueries, has a great explain analyze, has less quirks, provides nicer error messages and has a better command line than <a href="http://www.mysql.com/" rel="nofollow">MySQL</a>.</p>
<h2>MySQL</h2>
<p>The database is very common, especially amongst web developers.</p>
<p>A subquery with a depth of 3 levels cannot be optimized by MySQL anymore and is executed on every row.</p>
<p>There are a lot of little quirks that are annoying, for instance that time fields do not record milliseconds, subqueries with joins may return no data, unexplainable crashes may happen etc.</p>
<p>It is nice that you can <a href="http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html" rel="nofollow">exchange database engines underneath</a>, which might be very handy. On the other hand almost all engines except InnoDB are not very good because they don't support Transactions and Replication. In particular MyISAM does not enforce constraints at all.</p>
<p>Error messages on MySQL are often just a number, this is quite like Oracle does things and it stinks.</p>
<p>I found that MySQL seems to be a bit faster for single table queries on MyISAM. That might be because of better caching.</p>
<p>The command line for is easy to use, but MySQL extended SQL in order to provide functionality other command line clients offer with \shortcuts; I find this improper.</p>
<p>The <a href="http://dev.mysql.com/doc/refman/5.0/en/explain.html" rel="nofollow">EXPLAIN/DESCRIBE</a> command for analysis although this command is not as useful as the one in postgres.</p>
<h2>Postgres</h2>
<p>Postgres does its best to optimize what you throw at it. The most common reason for badly performing postgres queries is missing or wrong indexes.</p>
<p><a href="http://www.postgresql.org/docs/7.4/interactive/sql-explain.html" rel="nofollow">The "explain analyze ..." command</a> that is really helpful at analyzing query performance.</p>
<p>You cannot switch engines, but transactions are support by default and as of recently, it can also do replication out of the box.</p>
<p>Error messages in Postgres are often descriptive and somtimes even explain to you what you have to do quite accurately.</p>
<p>The command line is easy to use and whenever you wonder what to do with it you can type \help</p>
<h2>Your specific problem</h2>
<p>Probably if a delete takes 10 minutes, your condition for deletion is very time consuming or you do a cascade delete that necessarily needs to join a lot. </p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/blob.html" rel="nofollow">The Blob Data type in MySQL</a> is probably more complex to store, iterate and retrieve than fixed length text fields. Blobs are also size limited, and if a file should exceed that limit the trailing bytes get cut off. You might try to store the files as files on the file system and create a fixed length text field in your table that stores the filename. If you are serving that data with a web server, that would also make it faster since it is way faster to let apache serve a file than fetching it from a database and streaming it through your code.</p>
http://stackoverflow.com/questions/244720/opengl-set-texture-color-with-vertex-color0opengl set texture color with vertex colorFlorian Bösch2008-10-28T20:25:55Z2009-01-02T02:00:08Z
<p>Because I need to display a <a href="http://codeflow.org/ubuntu.png" rel="nofollow">huge number of labels</a> that <a href="http://www.youtube.com/watch?v=A_ah-SE-cNY" rel="nofollow">move independently</a>, I need to render a label in <a href="http://pyglet.org" rel="nofollow">pyglet</a> to a texture (otherwise updating the vertex list for each glyph is too slow).</p>
<p>I have a solution to do this, but my problem is that the texture that contains the glyphs is black, but I'd like it to be red. See the example below:</p>
<pre><code>from pyglet.gl import *
def label2texture(label):
vertex_list = label._vertex_lists[0].vertices[:]
xpos = map(int, vertex_list[::8])
ypos = map(int, vertex_list[1::8])
glyphs = label._get_glyphs()
xstart = xpos[0]
xend = xpos[-1] + glyphs[-1].width
width = xend - xstart
ystart = min(ypos)
yend = max(ystart+glyph.height for glyph in glyphs)
height = yend - ystart
texture = pyglet.image.Texture.create(width, height, pyglet.gl.GL_RGBA)
for glyph, x, y in zip(glyphs, xpos, ypos):
data = glyph.get_image_data()
x = x - xstart
y = height - glyph.height - y + ystart
texture.blit_into(data, x, y, 0)
return texture.get_transform(flip_y=True)
window = pyglet.window.Window()
label = pyglet.text.Label('Hello World!', font_size = 36)
texture = label2texture(label)
@window.event
def on_draw():
hoff = (window.width / 2) - (texture.width / 2)
voff = (window.height / 2) - (texture.height / 2)
glClear(GL_COLOR_BUFFER_BIT)
glEnable(GL_BLEND)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
glClearColor(0.0, 1.0, 0.0, 1.0)
window.clear()
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture.id)
glColor4f(1.0, 0.0, 0.0, 1.0) #I'd like the font to be red
glBegin(GL_QUADS);
glTexCoord2d(0.0,1.0); glVertex2d(hoff,voff);
glTexCoord2d(1.0,1.0); glVertex2d(hoff+texture.width,voff);
glTexCoord2d(1.0,0.0); glVertex2d(hoff+texture.width,voff+texture.height);
glTexCoord2d(0.0,0.0); glVertex2d(hoff, voff+texture.height);
glEnd();
pyglet.app.run()
</code></pre>
<p>Any idea how I could color this?</p>
http://stackoverflow.com/questions/135802/put-a-process-in-a-sandbox-where-it-can-do-least-harm-1Put a process in a sandbox where it can do least harmFlorian Bösch2008-09-25T20:24:56Z2008-12-27T07:22:33Z
<p>I'm looking for the concept to <strong>spawn a process</strong> such that:</p>
<ul>
<li>it has only access to certain libraries/APIs</li>
<li>it cannot acess the file system or only specific parts</li>
<li>it can <strong>do least harm should malicious code run in it</strong></li>
</ul>
<p>This concept is known as sandbox or jail.</p>
<p>It is required to do this <strong>for each major Operating system (Windows, MacOSX and Linux)</strong> and the question is conceptual (as in what to do, <strong>which APIs to use and and what to observe</strong>) rather then language specific.</p>
<h2>answer requirements</h2>
<p>I <strong>really</strong> want to accept an answer and give you 20 points for that. I cannot accept my own answer, and I don't have it yet anyway. So if you <strong>really</strong> want your answer to be accepted, please observe:</p>
<ul>
<li>The answer has to be specific and complete</li>
<li>With specific I mean that it is more then a pointer to some resource on the internet. It has to summarize what the resource says about the topic at least.</li>
<li>It may or may not contain example code, but if it does please write it in C</li>
<li>I cannot accept an answer that is 2/3 complete even if the 2/3 that are there are perfect.</li>
</ul>
<h2>this question FAQ</h2>
<ul>
<li>Is this homework? No.</li>
<li>Why do you ask this like a homework question? If you ask a specific question and you want to get a specific answer, and you know how that answer should look like, even though you don't know <em>the</em> answer, that's the style of question you get.</li>
<li>If you know how it should look like, why do you ask? 1) because I don't know all the answer 2) because on the internet there's no single place that contains all the details to this question in one place. Please also read the stackoverflow FAQ</li>
<li>Why is the main part of your question how to answer this question? Because nobody reads the FAQ.</li>
</ul>
http://stackoverflow.com/questions/340093/proxy-objects-in-ironpython/340220#3402201Answer by Florian Bösch for Proxy objects in IronPythonFlorian Bösch2008-12-04T11:03:33Z2008-12-04T11:03:33Z<p>The usual implementation of what you want in python would be this:</p>
<pre><code>class CallProxy(object):
'this class wraps a callable in an object'
def __init__(self, fun):
self.fun = fun
def __call__(self, *args, **kwargs):
return self.fun(*args, **kwargs)
class ObjProxy(object):
''' a proxy object intercepting attribute access
'''
def __init__(self, obj):
self.__dict__['_ObjProxy__obj'] = obj
def __getattr__(self, name):
attr = getattr(self.__obj, name)
if callable(attr):
return CallProxy(attr)
else:
return attr
def __setattr__(self, name, value):
setattr(self.__obj, name, value)
</code></pre>
<p>I wrote a test to prove that this behaves as expected:</p>
<pre><code>#keep a list of calls to the TestObj for verification
call_log = list()
class TestObj(object):
''' test object on which to prove
that the proxy implementation is correct
'''
def __init__(self):
#example attribute
self.a = 1
self._c = 3
def b(self):
'example method'
call_log.append('b')
return 2
def get_c(self):
call_log.append('get_c')
return self._c
def set_c(self, value):
call_log.append('set_c')
self._c = value
c = property(get_c, set_c, 'example property')
def verify(obj, a_val, b_val, c_val):
'testing of the usual object semantics'
assert obj.a == a_val
obj.a = a_val + 1
assert obj.a == a_val + 1
assert obj.b() == b_val
assert call_log[-1] == 'b'
assert obj.c == c_val
assert call_log[-1] == 'get_c'
obj.c = c_val + 1
assert call_log[-1] == 'set_c'
assert obj.c == c_val + 1
def test():
test = TestObj()
proxy = ObjProxy(test)
#check validity of the test
verify(test, 1, 2, 3)
#check proxy equivalent behavior
verify(proxy, 2, 2, 4)
#check that change is in the original object
verify(test, 3, 2, 5)
if __name__ == '__main__':
test()
</code></pre>
<p>This executes on CPython without any assert throwing an exception. IronPython should be equivalent, otherwise it's broken and this test should be added to its unit test suite.</p>
http://stackoverflow.com/questions/324132/split-twice-in-the-same-expression/324141#32414120Answer by Florian Bösch for split twice in the same expression?Florian Bösch2008-11-27T16:16:23Z2008-11-27T23:48:35Z<p>You can get what you want platform independently by using <a href="http://docs.python.org/library/os.path.html#os.path.basename" rel="nofollow">os.path.basename</a> to get the last part of a path and then use <a href="http://docs.python.org/library/os.path.html#os.path.splitext" rel="nofollow">os.path.splitext</a> to get the filename without extension.</p>
<pre><code>from os.path import basename, splitext
pathname = "/adda/adas/sdas/hello.txt"
name, extension = splitext(basename(pathname))
print name # --> "hello"
</code></pre>
<p>Using <a href="http://docs.python.org/library/os.path.html#os.path.basename" rel="nofollow">os.path.basename</a> and <a href="http://docs.python.org/library/os.path.html#os.path.splitext" rel="nofollow">os.path.splitext</a> instead of str.split, or re.split is more proper (and therefore received more points then any other answer) because it does not break down on other <a href="http://en.wikipedia.org/wiki/Path_(computing)#Representations_of_paths_by_operating_system_and_shell" rel="nofollow">platforms that use different path separators (you would be surprised how varried this can be)</a>.</p>
<p>It also carries most points because it answers your question for "one line" precisely and is aesthetically more pleasing then your example (even though that is debatable as are all questions of taste) </p>
http://stackoverflow.com/questions/242485/starting-python-debugger-automatically-on-error/242514#24251411Answer by Florian Bösch for Starting python debugger automatically on errorFlorian Bösch2008-10-28T07:56:24Z2008-10-28T08:13:02Z<p>You can use <a href="http://docs.python.org/library/traceback.html#traceback.print_exc" rel="nofollow">traceback.print_exc</a> to print the exceptions traceback. Then use <a href="http://docs.python.org/library/sys#sys.exc_info" rel="nofollow">sys.exc_info</a> to extract the traceback and finally call <a href="http://docs.python.org/library/pdb#pdb.post_mortem" rel="nofollow">pdb.post_mortem</a> with that traceback</p>
<pre><code>import pdb, traceback, sys
def bombs():
a = []
print a[0]
if __name__ == '__main__':
try:
bombs()
except:
type, value, tb = sys.exc_info()
traceback.print_exc()
pdb.post_mortem(tb)
</code></pre>
<p>If you want to start an interactive command line with <a href="http://docs.python.org/library/code#code.interact" rel="nofollow">code.interact</a> using the locals of the frame where the exception originated you can do</p>
<pre><code>import traceback, sys, code
def bombs():
a = []
print a[0]
if __name__ == '__main__':
try:
bombs()
except:
type, value, tb = sys.exc_info()
traceback.print_exc()
last_frame = lambda tb=tb: last_frame(tb.tb_next) if tb.tb_next else tb
frame = last_frame().tb_frame
ns = dict(frame.f_globals)
ns.update(frame.f_locals)
code.interact(local=ns)
</code></pre>
http://stackoverflow.com/questions/238523/is-python-and-pygame-a-good-way-to-learn-sdl/238659#2386593Answer by Florian Bösch for Is Python and pygame a good way to learn SDL?Florian Bösch2008-10-26T21:28:02Z2008-10-26T21:28:02Z<p>pygame abstracts the SDL interface quite a lot, therefore I don't think there's much of an advantage carried over.</p>
http://stackoverflow.com/questions/238223/match-unicode-in-plys-regexes/238646#2386462Answer by Florian Bösch for Match unicode in ply's regexesFlorian Bösch2008-10-26T21:18:53Z2008-10-26T21:18:53Z<p>the <a href="http://docs.python.org/library/re#regular-expression-syntax" rel="nofollow">re</a> module supports the \w syntax which:</p>
<blockquote>
<p>If UNICODE is set, this will match the
characters [0-9_] plus whatever is
classified as alphanumeric in the
Unicode character properties database.</p>
</blockquote>
<p>therefore the following examples shows how to match unicode identifiers:</p>
<pre><code>>>> import re
>>> m = re.compile('(?u)[^\W0-9]\w*')
>>> m.match('a')
<_sre.SRE_Match object at 0xb7d75410>
>>> m.match('9')
>>> m.match('ab')
<_sre.SRE_Match object at 0xb7c258e0>
>>> m.match('a9')
<_sre.SRE_Match object at 0xb7d75410>
>>> m.match('unicöde')
<_sre.SRE_Match object at 0xb7c258e0>
>>> m.match('ödipus')
<_sre.SRE_Match object at 0xb7d75410>
</code></pre>
<p>So the expression you look for is: (?u)[^\W0-9]\w*</p>
http://stackoverflow.com/questions/227318/whats-a-good-resource-for-learning-cgi-programming-in-python/227857#2278571Answer by Florian Bösch for What's a good resource for learning CGI programming in Python?Florian Bösch2008-10-22T23:01:27Z2008-10-22T23:01:27Z<p>What I don't understand is why you insist on CGI, because that's a Common Gateway Interface meant to be used in conjunction with a webserver like apache, which you surely do not have on that device.</p>
<p>I would suggest you use <a href="http://docs.python.org/library/wsgiref.html#module-wsgiref.simple_server" rel="nofollow">wsgiref.simple_server</a> which is a single threaded buildin webserver shipped with python 2.5 and up (if you have 2.4 or below you can <a href="http://pypi.python.org/pypi/wsgiref/0.1.2" rel="nofollow">d/l wsgiref from pypi</a>, it is a pure python package). That way you can also sidestep messy CGI programming and write a <a href="http://wsgi.org/wsgi/" rel="nofollow">wsgi</a> application:</p>
<pre><code>from wsgiref.simple_server import make_server
def application(environ, start_response):
start_response('200 OK', [
('Content-Type', 'text/plain'),
])
return ['Hello World!']
httpd = make_server('', 8000, application)
httpd.serve_forever()
</code></pre>
http://stackoverflow.com/questions/225086/rfc-1123-date-representation-in-python/225106#2251066Answer by Florian Bösch for RFC 1123 Date Representation in Python?Florian Bösch2008-10-22T10:07:19Z2008-10-22T10:59:29Z<p>You can use wsgiref.handlers.format_date_time from the stdlib which does not rely on locale settings</p>
<pre><code>from wsgiref.handlers import format_date_time
from datetime import datetime
from time import mktime
now = datetime.now()
stamp = mktime(now.timetuple())
print format_date_time(stamp) #--> Wed, 22 Oct 2008 10:52:40 GMT
</code></pre>
<p>You can use email.utils.formatdate from the stdlib which does not rely on locale settings </p>
<pre><code>from email.utils import formatdate
from datetime import datetime
from time import mktime
now = datetime.now()
stamp = mktime(now.timetuple())
print formatdate(
timeval = stamp,
localtime = False,
usegmt = True
) #--> Wed, 22 Oct 2008 10:55:46 GMT
</code></pre>
<p>If you can set the locale process wide then you can do:</p>
<pre><code>import locale, datetime
locale.setlocale(locale.LC_TIME, 'en_US')
datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')
</code></pre>
<p>If you don't want to set the locale process wide you could use <a href="http://babel.edgewall.org/" rel="nofollow">Babel</a> <a href="http://babel.edgewall.org/wiki/Documentation/dates.html" rel="nofollow">date formating</a></p>
<pre><code>from datetime import datetime
from babel.dates import format_datetime
now = datetime.utcnow()
format = 'EEE, dd LLL yyyy hh:mm:ss'
print format_datetime(now, format, locale='en') + ' GMT'
</code></pre>
<p>A manual way to format it which is identical with wsgiref.handlers.format_date_time is:</p>
<pre><code>def httpdate(dt):
"""Return a string representation of a date according to RFC 1123
(HTTP/1.1).
The supplied date must be in UTC.
"""
weekday = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][dt.weekday()]
month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep",
"Oct", "Nov", "Dec"][dt.month - 1]
return "%s, %02d %s %04d %02d:%02d:%02d GMT" % (weekday, dt.day, month,
dt.year, dt.hour, dt.minute, dt.second)
</code></pre>
http://stackoverflow.com/questions/222375/elementtree-xpath-select-element-based-on-attribute/222473#2224734Answer by Florian Bösch for ElementTree XPath - Select Element based on attribute.Florian Bösch2008-10-21T16:16:06Z2008-10-21T16:16:06Z<p>The syntax you're trying to use is new in <a href="http://effbot.org/zone/element-xpath.htm" rel="nofollow">ElementTree 1.3</a> the version shipped with python is 1.2.6</p>
http://stackoverflow.com/questions/221267/copying-symbolic-links-in-mac-os-x/221305#2213052Answer by Florian Bösch for Copying symbolic links in Mac OS XFlorian Bösch2008-10-21T09:36:43Z2008-10-21T10:00:30Z<p>In python you can use <a href="http://docs.python.org/library/os.html#os.readlink" rel="nofollow">os.readlink</a> and <a href="http://docs.python.org/library/os.html#os.symlink" rel="nofollow">os.symlink</a> to perform this action. You should check if what you operate on is actually a symbolic link with <a href="http://docs.python.org/library/os.html#os.lstat" rel="nofollow">os.lstat</a> and <a href="http://docs.python.org/library/stat.html#stat.S_ISLNK" rel="nofollow">stat.S_ISLNK</a></p>
<pre><code>import os, stat
if stat.S_ISLNK(os.lstat('foo').st_mode):
src = os.readlink('source')
os.symlink(src, 'destination')
</code></pre>
<p>You could do it with the <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/cp.1.html" rel="nofollow">-R option of cp</a>. This works because cp by default does not follow symbolic links but barks at copying non-files without specifying -R which means recursion.</p>
<pre><code>cp -R source destination
</code></pre>
<p>In python that would be with the <a href="http://docs.python.org/library/subprocess.html#subprocess.call" rel="nofollow">subprocess.call</a></p>
<pre><code>from subprocess import call
call(['cp', '-R', 'source', 'destination'])
</code></pre>
<p>Note that a <a href="http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/Articles/Aliases.html" rel="nofollow">macosx alias</a> is not a symbolic link and therefore symbolic link specific treatment will fail on it.</p>
http://stackoverflow.com/questions/221097/what-is-the-best-way-on-python-2-3-for-windows-to-execute-a-program-like-ghostscr/221113#2211132Answer by Florian Bösch for What is the best way on python 2.3 for windows to execute a program like ghostscript with multiple arguments and spaces in paths?Florian Bösch2008-10-21T08:00:56Z2008-10-21T08:31:31Z<p>Use <a href="http://docs.python.org/library/subprocess" rel="nofollow">subprocess</a>, it superseeds os.popen, though it is not much more of an abstraction:</p>
<pre><code>from subprocess import Popen, PIPE
output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
#this is how I'd mangle the arguments together
output = Popen([
self._ghostscriptPath,
'gswin32c',
'-q',
'-dNOPAUSE',
'-dBATCH',
'-sDEVICE=tiffg4',
'-r196X204',
'-sPAPERSIZE=a4',
'-sOutputFile="%s %s"' % (tifDest, pdfSource),
], stdout=PIPE).communicate()[0]
</code></pre>
<p>If you have only python 2.3 which has no subprocess module, you can still use os.popen</p>
<pre><code>os.popen(' '.join([
self._ghostscriptPath,
'gswin32c',
'-q',
'-dNOPAUSE',
'-dBATCH',
'-sDEVICE=tiffg4',
'-r196X204',
'-sPAPERSIZE=a4',
'-sOutputFile="%s %s"' % (tifDest, pdfSource),
]))
</code></pre>
http://stackoverflow.com/questions/218935/how-do-you-share-data-between-a-parent-and-forked-child-process-in-python/219048#2190488Answer by Florian Bösch for How do you share data between a parent and forked child process in Python?Florian Bösch2008-10-20T16:26:05Z2008-10-21T08:21:04Z<p><a href="http://docs.python.org/library/subprocess" rel="nofollow">Subprocess</a> replaces os.popen, os.system, os.spawn, popen2 and commands. A <a href="http://docs.python.org/library/subprocess#replacing-shell-pipe-line" rel="nofollow">simple example for piping</a> would be:</p>
<pre><code>p1 = Popen(["dmesg"], stdout=PIPE)
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
output = p2.communicate()[0]
</code></pre>
<p>You could also use a <a href="http://docs.python.org/library/mmap.html" rel="nofollow">memory mapped file</a> with the flag=MAP_SHARED for shared memory between processes.</p>
<p><a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a> abstracts both <a href="http://docs.python.org/library/multiprocessing.html#exchanging-objects-between-processes" rel="nofollow">pipes</a> and <a href="http://docs.python.org/library/multiprocessing.html#sharing-state-between-processes" rel="nofollow">shared memory</a> and provides a higher level interface. Taken from the Processing documentation:</p>
<pre><code>from multiprocessing import Process, Pipe
def f(conn):
conn.send([42, None, 'hello'])
conn.close()
if __name__ == '__main__':
parent_conn, child_conn = Pipe()
p = Process(target=f, args=(child_conn,))
p.start()
print parent_conn.recv() # prints "[42, None, 'hello']"
p.join()
</code></pre>
http://stackoverflow.com/questions/219547/im-stunned-weird-problem-with-python-and-sockets-threads/219824#2198244Answer by Florian Bösch for I’m stunned: weird problem with python and sockets + threadsFlorian Bösch2008-10-20T20:37:12Z2008-10-21T08:12:36Z<p>For the heck of it I also implemented an asynchronous version:</p>
<pre><code>import socket, Queue, select
class Request(object):
def __init__(self, conn):
self.conn = conn
self.fileno = conn.fileno
self.perform = self._perform().next
def _perform(self):
data = self.conn.recv(4048)
while '\r\n\r\n' not in data:
msg = self.conn.recv(4048)
if msg:
data += msg
yield
else:
break
reading.remove(self)
writing.append(self)
data = 'HTTP/1.1 200 OK\r\n\r\nHello World'
while data:
sent = self.conn.send(data)
data = data[sent:]
yield
writing.remove(self)
self.conn.close()
class Acceptor:
def __init__(self):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(('', 1234))
sock.listen(10)
self.sock = sock
self.fileno = sock.fileno
def perform(self):
conn, addr = self.sock.accept()
reading.append(Request(conn))
if __name__ == '__main__':
reading = [Acceptor()]
writing = list()
while 1:
readable, writable, error = select.select(reading, writing, [])
for action in readable + writable:
try: action.perform()
except StopIteration: pass
</code></pre>
<p>which performs:</p>
<pre><code>ab -n 10000 -c 10 http://127.0.0.1:1234/ --> 16822.13 [#/sec]
ab -n 10000 -c 11 http://127.0.0.1:1234/ --> 15704.41 [#/sec]
</code></pre>
http://stackoverflow.com/questions/218717/what-is-a-good-open-source-pastebin-in-python-or-perl/218865#2188657Answer by Florian Bösch for What is a good open source pastebin in Python or Perl?Florian Bösch2008-10-20T15:41:29Z2008-10-20T21:05:43Z<p><a href="http://dev.pocoo.org/projects/lodgeit/" rel="nofollow">Lodgeit</a> is written in Python and is a nice pastebin</p>
http://stackoverflow.com/questions/219547/im-stunned-weird-problem-with-python-and-sockets-threads/219671#2196717Answer by Florian Bösch for I’m stunned: weird problem with python and sockets + threadsFlorian Bösch2008-10-20T19:56:00Z2008-10-20T19:56:00Z<p>I cannot confirm your results, and your server is coded fishy. I whipped up my own server and do not have this problem either. Let's move the discussion to a simpler level:</p>
<pre><code>import thread, socket, Queue
connections = Queue.Queue()
num_threads = 10
backlog = 10
def request():
while 1:
conn = connections.get()
data = ''
while '\r\n\r\n' not in data:
data += conn.recv(4048)
conn.sendall('HTTP/1.1 200 OK\r\n\r\nHello World')
conn.close()
if __name__ == '__main__':
for _ in range(num_threads):
thread.start_new_thread(request, ())
acceptor = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
acceptor.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
acceptor.bind(('', 1234))
acceptor.listen(backlog)
while 1:
conn, addr = acceptor.accept()
connections.put(conn)
</code></pre>
<p>which on my machine does:</p>
<pre><code>ab -n 10000 -c 10 http://127.0.0.1:1234/ --> 8695.03 [#/sec]
ab -n 10000 -c 11 http://127.0.0.1:1234/ --> 8529.41 [#/sec]
</code></pre>
http://stackoverflow.com/questions/219215/how-do-i-use-tkinter-with-python-on-windows-vista/219326#2193261Answer by Florian Bösch for How do I use Tkinter with Python on Windows Vista?Florian Bösch2008-10-20T18:03:30Z2008-10-20T18:03:30Z<p>It seems this is a one of the many weird Vista problems and some random reinstalling, installing/upgrading of the visual studio runtime or some such seems sometimes to help, or disabling sxs in the system configuration or writing a manifest file etc.</p>
<p>Though I think you should downgrade to windows XP.</p>
http://stackoverflow.com/questions/127736/how-to-implement-a-decorator-with-non-local-equality/219303#2193031Answer by Florian Bösch for How to implement a Decorator with non-local equality?Florian Bösch2008-10-20T17:53:19Z2008-10-20T17:53:19Z<p>I think its clear that nobody really understands your question. I would suggest putting it in context and making it shorter. As an example, here's one possible implementation of the state pattern in python, please study it to get an idea.</p>
<pre><code>class State(object):
def __init__(self, name):
self.name = name
def __repr__(self):
return self.name
class Automaton(object):
def __init__(self, instance, start):
self._state = start
self.transitions = instance.transitions()
def get_state(self):
return self._state
def set_state(self, target):
transition = self.transitions.get((self.state, target))
if transition:
action, condition = transition
if condition:
if condition():
if action:
action()
self._state = target
else:
self._state = target
else:
self._state = target
state = property(get_state, set_state)
class Door(object):
open = State('open')
closed = State('closed')
def __init__(self, blocked=False):
self.blocked = blocked
def close(self):
print 'closing door'
def do_open(self):
print 'opening door'
def not_blocked(self):
return not self.blocked
def transitions(self):
return {
(self.open, self.closed):(self.close, self.not_blocked),
(self.closed, self.open):(self.do_open, self.not_blocked),
}
if __name__ == '__main__':
door = Door()
automaton = Automaton(door, door.open)
print 'door is', automaton.state
automaton.state = door.closed
print 'door is', automaton.state
automaton.state = door.open
print 'door is', automaton.state
door.blocked = True
automaton.state = door.closed
print 'door is', automaton.state
</code></pre>
<p>the output of this programm would be:</p>
<pre><code>door is open
closing door
door is closed
opening door
door is open
door is open
</code></pre>
http://stackoverflow.com/questions/219110/how-python-web-frameworks-wsgi-and-cgi-fit-together/219124#21912410Answer by Florian Bösch for How Python web frameworks, WSGI and CGI fit togetherFlorian Bösch2008-10-20T16:49:17Z2008-10-20T17:24:35Z<p>You can <a href="http://www.python.org/dev/peps/pep-0333/#the-server-gateway-side" rel="nofollow">run wsgi over cgi as Pep333 demonstrates</a> as an example. However everytime there is a request a new python interpreter is started and the whole context (database connections etc.) needs to be build which all take time.</p>
<p>The best if you want to run wsgi would be if your host would install <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> and made an appropriate configuration to defer control to an application of yours.</p>
<p><a href="http://trac.saddi.com/flup" rel="nofollow">Flup</a> is another way to run with wsgi for any webserver that can speak <a href="http://www.fastcgi.com/drupal/" rel="nofollow">FCGI</a>, <a href="http://www.mems-exchange.org/software/scgi/" rel="nofollow">SCGI</a> or AJP. From my experience only FCGI really works, and it can be used in apache either via <a href="http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html" rel="nofollow">mod_fastcgi</a> or if you can run a seperate python daemon with <a href="http://mproxyfcgi.sourceforge.net/" rel="nofollow">mod_proxy_fcgi</a></p>
<p><a href="http://wsgi.org" rel="nofollow">Wsgi</a> is a protocol much like CGI, which defines a set of rules how webserver and python code can interact, it is defined as <a href="http://www.python.org/dev/peps/pep-0333" rel="nofollow">Pep333</a>. It makes it possible that many different webservers can use many different frameworks and applications using the same application protocol. This is very beneficial and makes it so useful.</p>
http://stackoverflow.com/questions/208085/how-to-make-apache-modpython-process-collect-its-zombies/219073#2190731Answer by Florian Bösch for How to make Apache/mod_python process collect its zombies?Florian Bösch2008-10-20T16:31:46Z2008-10-20T16:31:46Z<p>Drop mod_python in favor of <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> (is used for <a href="http://wsgi.org/wsgi/" rel="nofollow">wsgi</a>), which does not leave orphaned zombies around afaik.</p>
http://stackoverflow.com/questions/215702/how-can-you-use-beautifulsoup-to-get-colindex-numbers/219000#2190001Answer by Florian Bösch for How can you use BeautifulSoup to get colindex numbers?Florian Bösch2008-10-20T16:13:14Z2008-10-20T16:13:14Z<p>The code below produces [3, 7, 11, 15] which is what I understand you seek</p>
<pre><code>from BeautifulSoup import BeautifulSoup
from re import compile
soup = BeautifulSoup(
'''<HTML><BODY>
<TABLE>
<TR style="font-size: 1pt" valign="bottom">
<TD width="60%"> </TD> <!-- colindex=01 type=maindata -->
<TD width="1%"> </TD> <!-- colindex=02 type=gutter -->
<TD width="1%" align="right"> </TD> <!-- colindex=02 type=lead -->
<TD width="9%" align="right"> </TD> <!-- colindex=02 type=body -->
<TD width="1%" align="left"> </TD> <!-- colindex=02 type=hang1 -->
<TD width="3%"> </TD> <!-- colindex=03 type=gutter -->
<TD width="1%" align="right"> </TD> <!-- colindex=03 type=lead -->
<TD width="4%" align="right"> </TD> <!-- colindex=03 type=body -->
<TD width="1%" align="left"> </TD> <!-- colindex=03 type=hang1 -->
<TD width="3%"> </TD> <!-- colindex=04 type=gutter -->
<TD width="1%" align="right"> </TD> <!-- colindex=04 type=lead -->
<TD width="4%" align="right"> </TD> <!-- colindex=04 type=body -->
<TD width="1%" align="left"> </TD> <!-- colindex=04 type=hang1 -->
<TD width="3%"> </TD> <!-- colindex=05 type=gutter -->
<TD width="1%" align="right"> </TD> <!-- colindex=05 type=lead -->
<TD width="5%" align="right"> </TD> <!-- colindex=05 type=body -->
<TD width="1%" align="left"> </TD> <!-- colindex=05 type=hang1 -->
</TR>
</TABLE> </BODY></HTML>'''
)
tables = soup.findAll('table')
matcher = compile('colindex')
def body_cols(row):
for i, comment in enumerate(row.findAll(text=matcher)):
if 'type=body' in comment:
yield i
for table in soup.findAll('table'):
index_row = table.find('tr')
print list(body_cols(index_row))
</code></pre>
http://stackoverflow.com/questions/205062/is-it-possible-to-compile-python-natively-beyond-pyc-byte-code/205096#20509613Answer by Florian Bösch for Is it possible to compile Python natively (beyond pyc byte code)?Florian Bösch2008-10-15T15:11:26Z2008-10-16T12:10:54Z<ul>
<li>There's <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" rel="nofollow">pyrex</a> that compiles python like source to python extension modules </li>
<li><a href="http://codespeak.net/pypy/dist/pypy/doc/coding-guide.html#our-runtime-interpreter-is-restricted-python" rel="nofollow">rpython</a> which allows you to compile python with some restrictions to various backends like C, LLVM, .Net etc. </li>
<li>There's also <a href="http://shed-skin.blogspot.com/" rel="nofollow">shed-skin</a> which translates python to C++, but I can't say if it's any good. </li>
<li><a href="http://codespeak.net/pypy/dist/pypy/doc/home.html" rel="nofollow">PyPy</a> implements a JIT compiler which attempts to optimize runtime by translating pieces of what's running at runtime to machine code, if you write for the PyPy interpreter that might be a feasible path. </li>
<li>The same author that is working on JIT in PyPy wrote <a href="http://psyco.sourceforge.net/" rel="nofollow">psyco</a> previously which optimizes python in the CPython interpreter.</li>
</ul>
http://stackoverflow.com/questions/183042/how-can-i-use-uuids-in-sqlalchemy/188427#1884273Answer by Florian Bösch for How can I use UUIDs in SQLAlchemy?Florian Bösch2008-10-09T18:01:58Z2008-10-09T18:01:58Z<p>You could try writing a <a href="http://www.sqlalchemy.org/docs/05/types.html#types_custom" rel="nofollow">custom type</a>, for instance:</p>
<pre><code>import sqlalchemy.types as types
class UUID(types.TypeEngine):
def get_col_spec(self):
return "uuid"
def bind_processor(self, dialect):
def process(value):
return value
return process
def result_processor(self, dialect):
def process(value):
return value
return process
table = Table('foo', meta,
Column('id', UUID(), primary_key=True),
)
</code></pre>
http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-inte/187701#18770113Answer by Florian Bösch for How to make a python, command-line program autocomplete arbitrary things NOT interpreterFlorian Bösch2008-10-09T15:08:18Z2008-10-09T15:08:18Z<p>Follow the <a href="http://docs.python.org/library/cmd.html#cmd.Cmd.cmdloop" rel="nofollow">cmd documentation</a> and you'll be fine</p>
<pre><code>import cmd
addresses = [
'here@blubb.com',
'foo@bar.com',
'whatever@wherever.org',
]
class MyCmd(cmd.Cmd):
def do_send(self, line):
pass
def complete_send(self, text, line, start_index, end_index):
if text:
return [
address for address in addresses
if address.startswith(text)
]
else:
return addresses
if __name__ == '__main__':
my_cmd = MyCmd()
my_cmd.cmdloop()
</code></pre>
<p>Output for tab -> tab -> send -> tab -> tab -> f -> tab</p>
<pre><code>(Cmd)
help send
(Cmd) send
foo@bar.com here@blubb.com whatever@wherever.org
(Cmd) send foo@bar.com
(Cmd)
</code></pre>
http://stackoverflow.com/questions/173687/is-it-possible-to-pass-arguments-into-event-bindings/173694#1736944Answer by Florian Bösch for Is it possible to pass arguments into event bindings?Florian Bösch2008-10-06T09:38:08Z2008-10-06T09:47:20Z<p>You can always use a lambda or another function to wrap up your method and pass another argument, not WX specific.</p>
<pre><code>b = wx.Button(self, 10, "Default Button", (20, 20))
self.Bind(wx.EVT_BUTTON, lambda event: self.OnClick(event, 'somevalue'), b)
def OnClick(self, event, somearg):
self.log.write("Click! (%d)\n" % event.GetId())
</code></pre>
<p>If you're out to reduce the amount of code to type, you might also try a little automatism like:</p>
<pre><code>class foo(whateverwxobject):
def better_bind(self, type, instance, handler, *args, **kwargs):
self.Bind(type, lambda event: handler(event, *args, **kwargs), instance)
def __init__(self):
self.better_bind(wx.EVT_BUTTON, b, self.OnClick, 'somevalue')
</code></pre>
http://stackoverflow.com/questions/167426/problem-with-python-sockets-how-to-get-reliably-posted-data-whatever-the-browser/170005#1700051Answer by Florian Bösch for Problem With Python Sockets: How To Get Reliably POSTed data whatever the browser?Florian Bösch2008-10-04T08:47:12Z2008-10-04T08:58:58Z<p>The problem you have is that</p>
<ul>
<li>your tcp socket handling isn't reading as much as it should</li>
<li>your http handling is not complete</li>
</ul>
<p>I recommend the following lectures:</p>
<ul>
<li><a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html" rel="nofollow">rfc2616</a></li>
<li><a href="http://www.kohala.com/start/unpv12e.html" rel="nofollow">The sockets Networking API</a> by Stevens</li>
</ul>
<p>See the example below for a working http server that can process posts</p>
<pre><code>index = '''
<html>
<head>
</head>
<body>
<form action="/" method="POST">
<textarea name="foo"></textarea>
<button type="submit">post</button>
</form>
<h3>data posted</h3>
<div>
%s
</div>
</body>
</html>
'''
bufsize = 4048
import socket
import re
from urlparse import urlparse
class Headers(object):
def __init__(self, headers):
self.__dict__.update(headers)
def __getitem__(self, name):
return getattr(self, name)
def get(self, name, default=None):
return getattr(self, name, default)
class Request(object):
header_re = re.compile(r'([a-zA-Z-]+):? ([^\r]+)', re.M)
def __init__(self, sock):
header_off = -1
data = ''
while header_off == -1:
data += sock.recv(bufsize)
header_off = data.find('\r\n\r\n')
header_string = data[:header_off]
self.content = data[header_off+4:]
lines = self.header_re.findall(header_string)
self.method, path = lines.pop(0)
path, protocol = path.split(' ')
self.headers = Headers(
(name.lower().replace('-', '_'), value)
for name, value in lines
)
if self.method in ['POST', 'PUT']:
content_length = int(self.headers.get('content_length', 0))
while len(self.content) < content_length:
self.content += sock.recv(bufsize)
self.query = urlparse(path)[4]
acceptor = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
acceptor.setsockopt(
socket.SOL_SOCKET,
socket.SO_REUSEADDR,
1,
)
acceptor.bind(('', 2501 ))
acceptor.listen(10)
if __name__ == '__main__':
while True:
sock, info = acceptor.accept()
request = Request(sock)
sock.send('HTTP/1.1 200 OK\n\n' + (index % request.content) )
sock.close()
</code></pre>
http://stackoverflow.com/questions/331666/need-help-refining-this-javascript-regexComment by Florian Bösch on Need help refining this javascript regexFlorian Bösch2008-12-01T18:14:59Z2008-12-01T18:14:59Zthis question makes no sense whatsoever to me. Please reformulate it in any way you think will make it more understandable.http://stackoverflow.com/questions/324132/split-twice-in-the-same-expression/324141#324141Comment by Florian Bösch on split twice in the same expression?Florian Bösch2008-11-27T23:38:47Z2008-11-27T23:38:47Z@Vinko Vrsalovic: basename and splitext from os.path <b>are</b> the proper available functions for that purpose... what other functions would you use for it?http://stackoverflow.com/questions/324132/split-twice-in-the-same-expression/324141#324141Comment by Florian Bösch on split twice in the same expression?Florian Bösch2008-11-27T21:12:16Z2008-11-27T21:12:16Z@Vinko Vrsalovic: Why is it not proper?http://stackoverflow.com/questions/324132/split-twice-in-the-same-expression/324141#324141Comment by Florian Bösch on split twice in the same expression?Florian Bösch2008-11-27T16:40:14Z2008-11-27T16:40:14Z@Vinko Vrsalovic
yours isn't the reverse, and it answers your question perfectly.http://stackoverflow.com/questions/238223/match-unicode-in-plys-regexes/238646#238646Comment by Florian Bösch on Match unicode in ply's regexesFlorian Bösch2008-10-27T07:35:26Z2008-10-27T07:35:26ZWalter, you have not properly read the question: 1) the goal is an identifier in a programming language, which does not start with 0-9 usually. 2) the parser (ply) takes care of parsing, and it can't be controlled how it will invoke match, therefore (?u) is required.http://stackoverflow.com/questions/227318/whats-a-good-resource-for-learning-cgi-programming-in-pythonComment by Florian Bösch on What's a good resource for learning CGI programming in Python?Florian Bösch2008-10-23T08:07:08Z2008-10-23T08:07:08ZI think it would be beneficial if you'd describe a little what you intend to do exactly.http://stackoverflow.com/questions/225675/unexpected-list-comprehension-behaviour-in-pythonComment by Florian Bösch on Unexpected list comprehension behaviour in Python.Florian Bösch2008-10-22T13:30:20Z2008-10-22T13:30:20ZI'm sorry but what's the question?http://stackoverflow.com/questions/225086/rfc-1123-date-representation-in-python/225106#225106Comment by Florian Bösch on RFC 1123 Date Representation in Python?Florian Bösch2008-10-22T10:31:03Z2008-10-22T10:31:03Zthat'd be a good ideahttp://stackoverflow.com/questions/225086/rfc-1123-date-representation-in-python/225106#225106Comment by Florian Bösch on RFC 1123 Date Representation in Python?Florian Bösch2008-10-22T10:24:00Z2008-10-22T10:24:00Zthat's why you ocale.setlocale(locale.LC_TIME, 'en_US')http://stackoverflow.com/questions/221267/copying-symbolic-links-in-mac-os-xComment by Florian Bösch on Copying symbolic links in Mac OS XFlorian Bösch2008-10-21T10:10:25Z2008-10-21T10:10:25Zmissleading title and badly formulated question for what you want to do, please do not waste our time by asking specific questions and then figure out that you need a completely different answer.http://stackoverflow.com/questions/219547/im-stunned-weird-problem-with-python-and-sockets-threads/219671#219671Comment by Florian Bösch on I’m stunned: weird problem with python and sockets + threadsFlorian Bösch2008-10-20T20:18:08Z2008-10-20T20:18:08ZThat's an interesting question, I don't know. You could try removing that multiplexing from your version and test.http://stackoverflow.com/questions/219215/how-do-i-use-tkinter-with-python-on-windows-vista/219326#219326Comment by Florian Bösch on How do I use Tkinter with Python on Windows Vista?Florian Bösch2008-10-20T18:42:47Z2008-10-20T18:42:47ZIf you search for "side-by-side configuration has errors" on google a lot of the entries mess around something with Visual studio and going from 2005 to 2008 and some specifically mention installing an upgrade to the runtime.http://stackoverflow.com/questions/120578/a-good-pattern-solution-to-the-social-web-user-problem-of-point-whoring/158898#158898Comment by Florian Bösch on A good pattern/solution to the social web user problem of point whoring?Florian Bösch2008-10-10T08:33:50Z2008-10-10T08:33:50ZIt is a problem because trivial questions on the frontpage tend to get a ton of crap answers and hard ones get barely any.
I disagree with the dictatorship analogy, since motivating people to behave in line with the sites goals is not dictatorship.http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-inte/187660#187660Comment by Florian Bösch on How to make a python, command-line program autocomplete arbitrary things NOT interpreterFlorian Bösch2008-10-09T15:17:36Z2008-10-09T15:17:36Znote tough that if you write your command line with the cmd module that there are better ways to do it.http://stackoverflow.com/questions/167426/problem-with-python-sockets-how-to-get-reliably-posted-data-whatever-the-browser/170354#170354Comment by Florian Bösch on Problem With Python Sockets: How To Get Reliably POSTed data whatever the browser?Florian Bösch2008-10-04T22:18:21Z2008-10-04T22:18:21Zcan you describe "IE has still a problem with the "long GET" system
When it received the answer to the GET it does not stop to re executing the loop to print the messages." a bit more precisely?