User mhawke - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:50:05Zhttp://stackoverflow.com/feeds/user/21945http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795111/is-there-a-cross-platform-way-to-open-a-file-browser-in-python/1795258#17952580Answer by mhawke for Is there a cross-platform way to open a file browser in Python?mhawke2009-11-25T07:36:46Z2009-11-25T07:36:46Z<p>This is a complete stab in the dark, but take a look at <a href="http://www.wxpython.org/" rel="nofollow">wxPython</a> which provides Python bindings to the underlying <a href="http://wxwidgets.org/" rel="nofollow">wxWidgets</a> library. It has been a long time since I last looked at it, but there might be something there that you can use. Otherwise, it should be relatively easy to make your own file browser that will use the native "widgets" for each OS.</p>
<p>Mind you, wxPython is not light weight, it will really bulk up your application and increase your dependencies.</p>
http://stackoverflow.com/questions/1791818/losing-session-data-when-user-logs-in/1794248#17942480Answer by mhawke for Losing session data when user logs inmhawke2009-11-25T02:13:10Z2009-11-25T02:13:10Z<p>This will probably be something to do with session management.</p>
<p>A user arrives at your site without first logging in, adds a few things to their basket, and then proceeds to the checkout. Upon first arrival at your site a session is established for this user. This might be done through cookies, a session id that is present in the URI, or a combination of both. The session associates the user's shopping basket with the user and is tracked on the server.</p>
<p>Now, in order to checkout on your system the user must log in. This creates a brand new session for the user and your system is losing track of the original session that the user had. The net effect of this is that their basket empties - because they effectively have a new basket.</p>
<p>I have absolutely no idea how sessions are being managed in your system (because, other than django, you provide no details whatsoever), but this is where I'd start looking.</p>
<p>I don't think that you'll find anyone that will do a free code review for you, so you need to figure out how sessions are being managed in your system and then post a more specific question. Good luck.</p>
http://stackoverflow.com/questions/1788236/how-to-determine-if-data-is-valid-tar-file/1788363#17883632Answer by mhawke for How to determine if data is valid tar file mhawke2009-11-24T07:08:50Z2009-11-24T07:08:50Z<p>Say your uploaded data is contained in string <code>data</code>.</p>
<pre><code>from tarfile import TarFile, TarError
from StringIO import StringIO
sio = StringIO(data)
try:
tf = TarFile(fileobj=sio)
# process the file....
except TarError:
print "Not a tar file"
</code></pre>
<p>There are additional complexities such as handling different tar file formats and compression. More info is available in the <a href="http://docs.python.org/library/tarfile.html#module-tarfile" rel="nofollow">tarfile</a> documentation.</p>
http://stackoverflow.com/questions/1788145/searching-for-python-http-lib/1788175#17881753Answer by mhawke for Searching for Python http libmhawke2009-11-24T06:19:23Z2009-11-24T06:19:23Z<p>Maybe <a href="http://code.google.com/p/httplib2/" rel="nofollow">httplib2</a> is what you are after? </p>
http://stackoverflow.com/questions/1780904/adding-even-values-to-new-list-python/1780909#17809097Answer by mhawke for Adding even values to new list Python.mhawke2009-11-23T03:06:19Z2009-11-23T03:06:19Z<p>List comprehension is the way to go:</p>
<pre><code>list1 = [1,2,3,4,5]
list2 = [i for i in list1 if i%2 == 0]
print list2 # => [2, 4]
</code></pre>
http://stackoverflow.com/questions/1767934/why-am-i-getting-this-error-in-python-httplib/1768289#17682891Answer by mhawke for Why am I getting this error in python ? (httplib)mhawke2009-11-20T04:09:02Z2009-11-20T04:23:38Z<p>Are you using a proxy?</p>
<p>If so, perhaps the proxy server is rejecting <code>HEAD</code> requests.</p>
<p>Do you get the same problem if you issue a <code>GET</code> request? If <code>GET</code> works I'd suspect that there is a proxy in your way.</p>
<p>You can see what's going on in more detail by calling <code>conn.set_debuglevel(1)</code> prior to calling <code>conn.request(...)</code>.</p>
http://stackoverflow.com/questions/1760025/limit-python-vm-memory/1760046#17600462Answer by mhawke for Limit Python VM memorymhawke2009-11-19T00:09:04Z2009-11-19T00:09:04Z<p>On *nix you can play around with the <code>ulimit</code> command, specifically the -m (max memory size) and -v (virtual memory).</p>
http://stackoverflow.com/questions/1739543/compress-data-before-storage-on-google-app-engine/1739968#17399681Answer by mhawke for Compress data before storage on Google App Enginemhawke2009-11-16T03:55:14Z2009-11-16T03:55:14Z<p>While the technical limitations (mentioned in other answers) of compressing MP3 files via standard compression or reencoding at a lower bitrate are correct, your aim is to store <strong>30 seconds</strong> of MP3 encoded data. Assuming that you can enforce that on your users, you should be alright without applying additional compression techniques if the MP3 bitrate is 256kbit constant bitrate (CBR) or lower. At 256kbit CBR, 30 seconds of audio would require:</p>
<pre><code>(((256 * 1000) / 8) * 30) / 1048576 = 0.91MB
</code></pre>
<p>The maximum <strong>standard</strong> bitrate is 320kbit which equates to 1.14MB, so you'd have to use 256 or less. The most commonly used bitrate in the wild is 128kbits.</p>
<p>There are additional overheads that will increase the final file size such as ID3 tags and framing, but you should be OK. If not, drop down to 224kbits as your maximum (30 secs = 0.80MB). There are other complexities such as variable bit rate encoding for which the file size is not so predictable and I am ignoring these.</p>
<p>So your problem is no longer how to compress MP3 files, but how to ensure that your users are aware that they can not upload more than 30 seconds encoded at 256kbits CBR, and how to enforce that policy.</p>
http://stackoverflow.com/questions/1733052/pymedia-audio-sound-how-do-i-get-up-and-running-with-this-module/1733773#17337730Answer by mhawke for pymedia.audio.sound - How do I get up and running with this module?mhawke2009-11-14T09:14:44Z2009-11-14T09:14:44Z<p>The homepage for <a href="http://pymedia.org/" rel="nofollow">pymedia</a>.
Download from <a href="http://sourceforge.net/projects/pymedia/files/pymedia/" rel="nofollow">here</a>.</p>
<p>Extract the compressed tar file. Then run <code>python setup.py install</code> from the extracted directory.</p>
http://stackoverflow.com/questions/1733619/writing-a-key-value-store/1733752#17337522Answer by mhawke for Writing a key-value storemhawke2009-11-14T09:05:38Z2009-11-14T09:05:38Z<p>Have a look at Python's <a href="http://docs.python.org/library/shelve.html#module-shelve" rel="nofollow"><code>shelve</code></a> module which provides a persitent dictionary. It basically stores pickles in a database, usually dmb or BSDDB. Looking at how <code>shelve</code> works will give you some insights, and the source code comes with your python distribution.</p>
<p>Another product to look at is <a href="http://www.mems-exchange.org/software/durus/" rel="nofollow">Durus</a>. This is an object database, that it uses it's own B-tree implementation for persistence to disk.</p>
http://stackoverflow.com/questions/1699126/unicodedecodeerror-with-djangos-request-files/1699322#16993221Answer by mhawke for UnicodeDecodeError with Django's request.FILES..mhawke2009-11-09T06:04:55Z2009-11-09T06:04:55Z<p>If you are not in control of the file encoding for files that can be uploaded , you can guess what encoding a file is in using the <a href="http://chardet.feedparser.org/" rel="nofollow">Universal Encoding Detector</a> module <code>chardet</code>.</p>
http://stackoverflow.com/questions/1675154/how-to-enforce-unicode-arguments-for-methods/1677614#16776140Answer by mhawke for How to enforce unicode arguments for methods?mhawke2009-11-05T00:28:28Z2009-11-05T00:28:28Z<p>Another option is to use assertions. It depends on whether passing a non-unicode type into your methods should be considered a programming error that should be evident during development.</p>
<pre><code>import types
class Foo:
def set_something(self, string):
assert isinstance(string, types.UnicodeType), 'String is not unicode'
self.something = string
</code></pre>
<p>This will raise an <code>AssertionError</code> exception whenever <code>string</code> is not of type unicode, but only when the Python interpretter is run in "deubg" mode. If you run Python with the <code>-O</code> option, the assert is efficiently ignored by the interpretter.</p>
http://stackoverflow.com/questions/1664195/siginterrupt-only-works-for-the-first-signal-python/1664821#16648211Answer by mhawke for siginterrupt() only works for the first signal? (Python)mhawke2009-11-03T02:11:22Z2009-11-03T05:33:35Z<p>Which <code>unix</code> are you using? At the <code>C</code> level, there are different implementations and semantics for signal handling on BSD vs System 5 (SYSV).</p>
<p>My guess is that you are using SYSV, in which case the signal disposition is reset to SIG_DFL after the signal handler has returned (classical signal handling). On SYSV you need to call <code>signal</code> in the handler to reinstall that handler.</p>
<p>Python more or less provides BSD style signal handling. So, on a SYSV OS, Python must be managing reinstallation of the signal handler via <code>signal</code>. Now, according to the Python doco for <a href="http://docs.python.org/library/signal.html#signal.siginterrupt" rel="nofollow"><code>siginterrupt</code></a>:</p>
<blockquote>
<p>Note that installing a signal handler
with signal() will reset the restart
behaviour to interruptible by
implicitly calling siginterrupt() with
a true flag value for the given
signal.</p>
</blockquote>
<p>And there you go - <strong>if</strong> Python is automatically reinstalling your signal handler (to provide BSD like semantics), it may well be doing so in a way that implicitly calls <code>siginterrupt(1)</code>.</p>
<p>Of course, my guess could be wrong.</p>
<p>You <strong>might</strong> be able to fix this by defining sigquitHandler like this:</p>
<pre><code>def sigquitHandler(signum, frame):
print("SIGQUIT Handler")
siginterrupt(SIGQUIT, False)
</code></pre>
<p>It depends on when and how Python is restoring the signal disposition.</p>
<p><strong>EDIT</strong></p>
<p>Adding <code>siginterrupt(SIGQUIT, False)</code> to the signal handler has no affect.</p>
<p><strong>EDIT 2</strong></p>
<p>After some more poking around in the Python2.6 source code it clear that this is not just a SYSV issue. It will affect BSD systems too.</p>
http://stackoverflow.com/questions/1659759/python-name-grabber/1664525#16645250Answer by mhawke for Python name grabbermhawke2009-11-03T00:16:44Z2009-11-03T00:16:44Z<p>Here's a full answer showing how to do it using <code>replace()</code>. </p>
<pre><code>strings = ['(static string) name (different static string ) message (last static string)',
'(static string) name (different static string ) message (last static string)',
'(static string) name (different static string ) message (last static string)',
'(static string) name (different static string ) message (last static string)',
'(static string) name (different static string ) message (last static string)',
'(static string) name (different static string ) message (last static string)']
results = []
target_word = 'message'
separators = ['(static string)', '(different static string )', '(last static string)']
for s in strings:
for sep in separators:
s = s.replace(sep, '')
name, message = s.split()
if target_word in message:
results.append((name, message))
>>> results
[('name', 'message'), ('name', 'message'), ('name', 'message'), ('name', 'message'), ('name', 'message'), ('name', 'message')]
</code></pre>
<p>Note that this will match any <code>message</code> that contains the substring <code>target_word</code>. It will not look for word boundaries, e.g. compare a run of this with <code>target_word = 'message'</code> vs. <code>target_word = 'sag'</code> - will produce the same results. You may need regular expressions if your word matching is more complicated.</p>
http://stackoverflow.com/questions/1605288/python-fileinput-changes-permission/1605340#16053400Answer by mhawke for python fileinput changes permissionmhawke2009-10-22T06:23:03Z2009-10-22T23:32:00Z<p>If you can help it, don't run your script as root.</p>
<p><strong>EDIT</strong>
Well, the answer has been accepted, but it's not really much of an answer. In case you must run the script as root (or indeed as any other user), you can use <a href="http://docs.python.org/library/os.html#os.stat" rel="nofollow"><code>os.stat()</code></a> to determine the user id and group id of the file's owner before processing the file, and then restore the file ownership after processing.</p>
<pre><code>import fileinput
import os
# save original file ownership details
stat = os.stat('permission.txt')
uid, gid = stat[4], stat[5]
for line in fileinput.FileInput("permission.txt",inplace=1):
line = line.strip()
if not 'def' in line:
print line
else:
line=line.replace(line,'zzz')
print line
fileinput.close()
# restore original file ownership
os.chown("permission.txt", uid, gid)
</code></pre>
http://stackoverflow.com/questions/1591920/python-binary-data-reading/1592172#15921722Answer by mhawke for Python binary data readingmhawke2009-10-20T02:34:44Z2009-10-20T02:34:44Z<blockquote>
<pre><code>>>> struct.unpack('ih', response.read(6))
(16777216, 1024)
</code></pre>
</blockquote>
<p>You are unpacking big-endian data on a little-endian machine. Try this instead:</p>
<pre><code>>>> struct.unpack('!IH', response.read(6))
(1L, 4)
</code></pre>
<p>This tells unpack to consider the data in network-order (big-endian). Also, the values of counts and lengths can not be negative, so you should should use the unsigned variants in your format string.</p>
http://stackoverflow.com/questions/1586008/php-python-ruby-application-with-multiple-rdbms/1587287#15872870Answer by mhawke for PHP, Python, Ruby application with multiple RDBMSmhawke2009-10-19T06:50:32Z2009-10-19T06:50:32Z<p>It's even more "old fashioned" than modern ORMs, but doesn't <a href="http://en.wikipedia.org/wiki/Open%5FDatabase%5FConnectivity" rel="nofollow">ODBC</a> address this issue?</p>
http://stackoverflow.com/questions/1575779/python-datetime-subtraction-wrong-results/1575796#15757961Answer by mhawke for Python datetime subtraction - wrong results?mhawke2009-10-16T00:11:05Z2009-10-16T00:11:05Z<p><code>datetime.datetime(2008,11,7,10,5,14)-datetime.datetime(2008,11,6,9,30,16)</code> returns a <code>datetime.timedelta</code> object which has a <code>days</code> attribute. The difference that you are calculating is actually 1 day and 2098 seconds. </p>
http://stackoverflow.com/questions/1575625/how-can-i-read-how-many-pixels-an-image-has-in-python/1575784#15757843Answer by mhawke for How can I read how many pixels an image has in Pythonmhawke2009-10-16T00:07:48Z2009-10-16T00:07:48Z<p>Here is the example that you've asked for:</p>
<pre><code>from PIL import Image
import os.path
filename = os.path.join('path', 'to', 'image', 'file')
img = Image.open(filename)
width, height = img.size
print "Dimensions:", img.size, "Total pixels:", width * height
</code></pre>
http://stackoverflow.com/questions/1557175/non-blocking-read-log-from-an-http-stream/1564523#15645231Answer by mhawke for non-blocking read/log from an http streammhawke2009-10-14T06:13:33Z2009-10-14T06:13:33Z<p>Another option is to use the <code>socket</code> module directly. Establish a connection, send the HTTP request, set the socket to non-blocking mode, and then read the data with <code>socket.recv()</code> handling 'Resource temporarily unavailable' exceptions (which means that there is nothing to read). A very rough example is this:</p>
<pre><code>import socket, time
BUFSIZE = 1024
s = socket.socket()
s.connect(('localhost', 1234))
s.send('GET /path HTTP/1.0\n\n')
s.setblocking(False)
running = True
while running:
try:
print "Attempting to read from socket..."
while True:
data = s.recv(BUFSIZE)
if len(data) == 0: # remote end closed
print "Remote end closed"
running = False
break
print "Received %d bytes: %r" % (len(data), data)
except socket.error, e:
if e[0] != 11: # Resource temporarily unavailable
print e
raise
# perform other program tasks
print "Sleeping..."
time.sleep(1)
</code></pre>
<p>However, <code>urllib.urlopen()</code> has some benefits if the web server redirects, you need URL based basic authentication etc. You could make use of the <code>select</code> module which will tell you when there is data to read.</p>
http://stackoverflow.com/questions/1507084/how-to-check-dimensions-of-all-images-in-a-directory-using-python/1507142#15071421Answer by mhawke for How to check dimensions of all images in a directory using python?mhawke2009-10-02T00:06:21Z2009-10-02T00:06:21Z<p>One common way is to use <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL</a>, the python imaging library to get the dimensions:</p>
<pre><code>from PIL import Image
import os.path
filename = os.path.join('path', 'to', 'image', 'file')
img = Image.open(filename)
print img.size
</code></pre>
<p>Then you need to loop over the files in your directory, check the dimensions against your required dimensions, and move those files that do not match.</p>
http://stackoverflow.com/questions/1455782/how-to-encrypt-using-public-key/1502121#15021210Answer by mhawke for How to encrypt using public key?mhawke2009-10-01T05:59:43Z2009-10-01T06:37:58Z<p>There is an error somewhere in the public key. It appears to be a PGP public key but with different line lengths, so it can't be used directly as an RSA public key.</p>
http://stackoverflow.com/questions/1497038/how-to-display-outcoming-and-incoming-soap-message-for-zsi-serviceproxy-in-python/1501943#15019431Answer by mhawke for How to display outcoming and incoming SOAP message for ZSI.ServiceProxy in Python?mhawke2009-10-01T04:50:22Z2009-10-01T05:00:33Z<p>Here is some <a href="http://pywebsvcs.sourceforge.net/zsi.html#SECTION0012200000000000000000" rel="nofollow">documentation</a> on the ServiceProxy class. The constructor accepts a <code>tracefile</code> argument which can be any object with a <code>write</code> method, so this looks like what you are after. Modifying the example from the documentation:</p>
<pre><code>from ZSI import ServiceProxy
import BabelTypes
import sys
dbgfile = open('dbgfile', 'w') # to log trace to a file, or
dbgfile = sys.stdout # to log trace to stdout
service = ServiceProxy('http://www.xmethods.net/sd/BabelFishService.wsdl',
tracefile=dbgfile,
typesmodule=BabelTypes)
value = service.BabelFish('en_de', 'This is a test!')
dbgfile.close()
</code></pre>
http://stackoverflow.com/questions/1442675/failing-to-insert-a-record-in-sqlite-using-python/1443035#14430350Answer by mhawke for Failing to insert a record in sqlite using pythonmhawke2009-09-18T07:29:57Z2009-09-18T07:29:57Z<p>Are you sure that you are getting the same error? Unless you have also changed your schema, your new insert statement will fail simply because the fields "sms_date" and "sms_time" should be "ms_date" and "ms_time". Might help if you show us yor schema, which you can do from the command line by:</p>
<p><code>sqlite3 mydb '.schema filer_filer'</code></p>
http://stackoverflow.com/questions/1442264/full-featured-date-and-time-library/1442299#14422993Answer by mhawke for Full-featured date and time librarymhawke2009-09-18T02:19:34Z2009-09-18T02:19:34Z<p>Take a look at the <a href="http://labix.org/python-dateutil" rel="nofollow">dateutil</a> and possibly <a href="http://www.egenix.com/products/python/mxBase/mxDateTime/" rel="nofollow">mx.DateTime</a> packages.</p>
http://stackoverflow.com/questions/1441979/whats-the-error-in-this-python-code/1442144#14421441Answer by mhawke for Whats the error in this python code?mhawke2009-09-18T01:06:45Z2009-09-18T01:06:45Z<p>The provided link is to sslstrip-0.5. You are using sslstrip-0.1. These are <em>very</em> different (sslstrip-0.5 uses twisted). This bug was fixed in sslstrip-0.2. If you don't have twisted or don't want to install twisted, I suggest that you get <a href="http://www.thoughtcrime.org/software/sslstrip/sslstrip-0.4.tar.gz" rel="nofollow">sslstrip-0.4</a>.</p>
http://stackoverflow.com/questions/1434914/socket-in-use-error-when-reusing-sockets/1436261#14362612Answer by mhawke for Socket in use error when reusing socketsmhawke2009-09-17T01:09:07Z2009-09-17T06:15:25Z<p>The problem is being caused by sockets hanging around in the TIME_WAIT state which is entered once you close the client's socket. By default the socket will remain in this state for 4 minutes before it is available for reuse. Your client (possibly helped by other processes) is consuming them all within a 4 minute period. See <a href="http://stackoverflow.com/questions/1339142/wcf-system-net-socketexception-only-one-usage-of-each-socket-address-protocol/1339240#1339240">this answer</a> for a good explanation and a possible non-code solution.</p>
<p>Windows dynamically allocates port numbers in the range 1024-5000 (3977 ports) when you do not explicitly bind the socket address. This Python code demonstrates the problem:</p>
<pre><code>import socket
sockets = []
while True:
s = socket.socket()
s.connect(('some_host', 80))
sockets.append(s.getsockname())
s.close()
print len(sockets)
sockets.sort()
print "Lowest port: ", sockets[0][1], " Highest port: ", sockets[-1][1]
# on Windows you should see something like this...
3960
Lowest port: 1025 Highest port: 5000
</code></pre>
<p>If you try to run this immeditaely again, it should fail very quickly since all dynamic ports are in the TIME_WAIT state.</p>
<p>There are a few ways around this:</p>
<ol>
<li><p>Manage your own port assignments and
use <code>bind()</code> to explicitly bind your
client socket to a specific port
that you increment each time your
create a socket. You'll still have
to handle the case where a port is
already in use, but you will not be
limited to dynamic ports. e.g.</p>
<pre><code>port = 5000
while True:
s = socket.socket()
s.bind(('your_host', port))
s.connect(('some_host', 80))
s.close()
port += 1
</code></pre></li>
<li><p>Fiddle with the SO_LINGER socket
option. I have found that this
sometimes works in Windows (although
not exactly sure why):
<code>s.setsockopt(socket.SOL_SOCKET,
socket.SO_LINGER, 1)</code></p></li>
<li><p>I don't know if this will help in
your particular application,
however, it is possible to send
multiple XMLRPC requests over the
same connection using the
<a href="http://docs.python.org/library/xmlrpclib.html#multicall-objects" rel="nofollow">multicall</a> method. Basically
this allows you to accumulate
several requests and then send them
all at once. You will not get any
responses until you actually send
the accumulated requests, so you can
essentially think of this as batch
processing - does this fit in with
your application design?</p></li>
</ol>
http://stackoverflow.com/questions/1430446/create-a-temporary-fifo-named-pipe-in-python/1430566#14305663Answer by mhawke for Create a temporary FIFO (named pipe) in Python?mhawke2009-09-16T02:09:15Z2009-09-16T02:27:43Z<p><code>os.mkfifo()</code> will fail with exception <code>OSError: [Errno 17] File exists</code> if the file already exists, so there is no security issue here. The security issue with using <code>tempfile.mktemp()</code> is the race condition where it is possible for an attacker to create a file with the same name before you open it yourself, but since <code>os.mkfifo()</code> fails if the file already exists this is not a problem.</p>
<p>However, since <code>mktemp()</code> is deprecated you shouldn't use it. You can use <code>tempfile.mkdtemp()</code> instead:</p>
<pre><code>import os, tempfile
tmpdir = tempfile.mkdtemp()
filename = os.path.join(tmpdir, 'myfifo')
print filename
try:
os.mkfifo(filename)
except OSError, e:
print "Failed to create FIFO: %s" % e
else:
fifo = open(filename, 'w')
# write stuff to fifo
print >> fifo, "hello"
fifo.close()
os.remove(filename)
os.rmdir(tmpdir)
</code></pre>
<p>EDIT: I should make it clear that, just because the <code>mktmp()</code> vulnerabitly is averted by this, there are still the other usual security issues that need to be considered, e.g. an attacker could create the fifo (if they had suitable permissions) before your program did which could cause your program to crash if errors/exceptions are not properly handled.</p>
http://stackoverflow.com/questions/1425162/symmetrically-adressable-matrix/1430312#14303120Answer by mhawke for Symmetrically adressable matrixmhawke2009-09-16T00:33:48Z2009-09-16T00:33:48Z<p>A simpler and cleaner way is to just use a dictionary with sorted tuples as keys. The tuples correspond with your matrix index. Override <code>__getitem__</code> and <code>__setitem__</code> to access the dictionary by sorted tuples; here's an example class:</p>
<pre><code>class Matrix(dict):
def __getitem__(self, index):
return super(Matrix, self).__getitem__(tuple(sorted(index)))
def __setitem__(self, index, value):
return super(Matrix, self).__setitem__(tuple(sorted(index)), value)
</code></pre>
<p>And then use it like this:</p>
<pre><code>>>> matrix = Matrix()
>>> matrix[2,3] = 1066
>>> print matrix
{(2, 3): 1066}
>>> matrix[2,3]
1066
>>> matrix[3,2]
1066
>>> matrix[1,1]
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "z.py", line 3, in __getitem__
return super(Matrix, self).__getitem__(tuple(sorted(index)))
KeyError: (1, 1)
</code></pre>
http://stackoverflow.com/questions/1423251/talking-between-python-tcp-server-and-a-c-client/1424893#14248931Answer by mhawke for talking between python tcp server and a c++ clientmhawke2009-09-15T02:52:48Z2009-09-15T02:52:48Z<blockquote>
<p>client sends a PSH,ACK and then the
server sends a PSH,ACK and a
FIN,PSH,ACK</p>
</blockquote>
<p>There is a FIN, so could it be that the Python version of your server is closing the connection immediately after the initial read?</p>
<p>If you are not explicitly closing the server's socket, it's probable that the server's remote socket variable is going out of scope, thus closing it (and that this bug is not present in your C++ version)?</p>
<p>Assuming that this is the case, I can cause a very similar TCP sequence with this code for the server:</p>
<pre><code># server.py
import socket
from time import sleep
def f(s):
r,a = s.accept()
print r.recv(100)
s = socket.socket()
s.bind(('localhost',1234))
s.listen(1)
f(s)
# wait around a bit for the client to send it's second packet
sleep(10)
</code></pre>
<p>and this for the client:</p>
<pre><code># client.py
import socket
from time import sleep
s = socket.socket()
s.connect(('localhost',1234))
s.send('hello 1')
# wait around for a while so that the socket in server.py goes out of scope
sleep(5)
s.send('hello 2')
</code></pre>
<p>Start your packet sniffer, then run server.py and then, client.py. Here is the outout of <code>tcpdump -A -i lo</code>, which matches your observations:</p>
<pre><code>tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on lo, link-type EN10MB (Ethernet), capture size 96 bytes
12:42:37.683710 IP localhost:33491 > localhost.1234: S 1129726741:1129726741(0) win 32792 <mss 16396,sackOK,timestamp 640881101 0,nop,wscale 7>
E..<R.@.@...............CVC.........I|....@....
&3..........
12:42:37.684049 IP localhost.1234 > localhost:33491: S 1128039653:1128039653(0) ack 1129726742 win 32768 <mss 16396,sackOK,timestamp 640881101 640881101,nop,wscale 7>
E..<..@.@.<.............C<..CVC.....Ia....@....
&3..&3......
12:42:37.684087 IP localhost:33491 > localhost.1234: . ack 1 win 257 <nop,nop,timestamp 640881102 640881101>
E..4R.@.@...............CVC.C<......1......
&3..&3..
12:42:37.684220 IP localhost:33491 > localhost.1234: P 1:8(7) ack 1 win 257 <nop,nop,timestamp 640881102 640881101>
E..;R.@.@...............CVC.C<......./.....
&3..&3..hello 1
12:42:37.684271 IP localhost.1234 > localhost:33491: . ack 8 win 256 <nop,nop,timestamp 640881102 640881102>
E..4.(@.@...............C<..CVC.....1}.....
&3..&3..
12:42:37.684755 IP localhost.1234 > localhost:33491: F 1:1(0) ack 8 win 256 <nop,nop,timestamp 640881103 640881102>
E..4.)@.@...............C<..CVC.....1{.....
&3..&3..
12:42:37.685639 IP localhost:33491 > localhost.1234: . ack 2 win 257 <nop,nop,timestamp 640881104 640881103>
E..4R.@.@...............CVC.C<......1x.....
&3..&3..
12:42:42.683367 IP localhost:33491 > localhost.1234: P 8:15(7) ack 2 win 257 <nop,nop,timestamp 640886103 640881103>
E..;R.@.@...............CVC.C<......./.....
&3%W&3..hello 2
12:42:42.683401 IP localhost.1234 > localhost:33491: R 1128039655:1128039655(0) win 0
E..(..@.@.<.............C<......P...b...
9 packets captured
27 packets received by filter
0 packets dropped by kernel
</code></pre>
http://stackoverflow.com/questions/1801668/convert-a-python-list-with-strings-all-to-lowercase-or-uppercase/1801690#1801690Comment by mhawke on Convert a Python list with strings all to lowercase or uppercasemhawke2009-11-26T06:09:33Z2009-11-26T06:09:33Zwon't work too well on unicode strings in python 2http://stackoverflow.com/questions/1788145/searching-for-python-http-lib/1788175#1788175Comment by mhawke on Searching for Python http libmhawke2009-11-24T07:16:30Z2009-11-24T07:16:30ZBased on the requirements that you've now added as a comment to your question (btw you should move those comments into the question) httplib2 seems the best match that I know of. If you don't like it, write a wrapper to rubify the interface, or don't use it at all.http://stackoverflow.com/questions/1788145/searching-for-python-http-lib/1788175#1788175Comment by mhawke on Searching for Python http libmhawke2009-11-24T06:42:16Z2009-11-24T06:42:16Zwhat's wrong with <code>urllib</code> then? <code>resp = urllib.urlopen(url)</code> seems simple enough if you just want to do GET, and <code>resp = urllib.urlopen(url, data)</code> for POST requests. You want "more complex and more friendly" all at once?http://stackoverflow.com/questions/1780904/adding-even-values-to-new-list-pythonComment by mhawke on Adding even values to new list Python.mhawke2009-11-23T04:25:54Z2009-11-23T04:25:54Z@paxdiablo: Well the answer to <i>your</i> questions are: "No", "no", and "don't know because it doesn't run" (<code>list2 += v</code> will break). He just wanted some code that works, and now that he has it, let's give him a chance to see if it's good enough for his needs.http://stackoverflow.com/questions/1780904/adding-even-values-to-new-list-python/1780924#1780924Comment by mhawke on Adding even values to new list Python.mhawke2009-11-23T03:14:03Z2009-11-23T03:14:03ZThe OP did not say anything about the order of items in the source list. What if list1 = [1,1,1,2,2,1] ???http://stackoverflow.com/questions/1768918/python-pynotify-network-problemComment by mhawke on Python: pynotify network problemmhawke2009-11-20T07:42:12Z2009-11-20T07:42:12Zcan you at least try to format your code?http://stackoverflow.com/questions/1675154/how-to-enforce-unicode-arguments-for-methods/1677614#1677614Comment by mhawke on How to enforce unicode arguments for methods?mhawke2009-11-05T07:54:36Z2009-11-05T07:54:36ZWhich actually looks cleaner to you then? IMO assert is a lot more obvious as the checks are right there at the start of the method, not hidden away in a class that might be imported from elsewhere. You also get a the performance benefit of having assert effectively become a NOP when running python with <code>-O</code>.http://stackoverflow.com/questions/1664195/siginterrupt-only-works-for-the-first-signal-pythonComment by mhawke on siginterrupt() only works for the first signal? (Python)mhawke2009-11-03T04:19:05Z2009-11-03T04:19:05ZI think that <code>siginterrupt</code> really only applies to system calls that involve the transfer of data (primitives such as open, read or write). I don't think that it applies to system calls like <code>select</code>.http://stackoverflow.com/questions/1591920/python-binary-data-reading/1592172#1592172Comment by mhawke on Python binary data readingmhawke2009-10-20T02:43:19Z2009-10-20T02:43:19Zyep, by a whole 8 secondshttp://stackoverflow.com/questions/1575625/how-can-i-read-how-many-pixels-an-image-has-in-python/1575786#1575786Comment by mhawke on How can I read how many pixels an image has in Pythonmhawke2009-10-16T01:26:55Z2009-10-16T01:26:55ZWhile not incorrect, <code>open(filepath)</code> is not required - <code>Image.open()</code> will accept just the filename.http://stackoverflow.com/questions/1455782/how-to-encrypt-using-public-key/1463921#1463921Comment by mhawke on How to encrypt using public key?mhawke2009-10-01T06:00:57Z2009-10-01T06:00:57Zhe's created a great deal more than 2 users with different names. just wondering why he's doing that?http://stackoverflow.com/questions/1455782/how-to-encrypt-using-public-key/1463921#1463921Comment by mhawke on How to encrypt using public key?mhawke2009-10-01T05:35:59Z2009-10-01T05:35:59Zwhy are you a different person? You can edit the question by clicking the edit link...http://stackoverflow.com/questions/1500542/programmatically-determine-maximum-command-line-length-with-python/1500652#1500652Comment by mhawke on Programmatically determine maximum command line length with Pythonmhawke2009-10-01T04:26:36Z2009-10-01T04:26:36ZThe docs state this is for Unix only (both Mac and Unix for <= Python2.5). Also the dictionary lookup is not required, <code>os.sysconf('SC_ARG_MAX')</code> also works.http://stackoverflow.com/questions/1455782/how-to-encrypt-using-public-keyComment by mhawke on How to encrypt using public key?mhawke2009-09-22T05:24:23Z2009-09-22T05:24:23ZWhere is the problem? Is it in <code>load_pub_key()</code> or is it in <code>public_encrypt()</code>? Please edit your question to include the error including any tracebacks. It would also be very useful if you could include the public key file, i.e. the contents of <code>mykey.py</code>http://stackoverflow.com/questions/1442250/accessing-a-python-variable-in-a-listComment by mhawke on Accessing a Python variable in a listmhawke2009-09-18T02:22:54Z2009-09-18T02:22:54ZDon't use <code>list</code> as a variable name as it will shadow the builtin list type.