User Tony Meyer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T13:50:35Zhttp://stackoverflow.com/feeds/user/4966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/909138/how-do-i-add-an-init-d-script-into-a-deb0How do I add an init.d script into a .debTony Meyer2009-05-26T06:13:57Z2009-11-11T12:00:04Z
<p>I have a <code>project.init</code> file in the debian directory (along with <code>rules</code>, <code>control</code>, etc), and I have <code>dh_installinit</code> in my <code>rules</code> file (in the <code>binary-arch</code> rule).</p>
<p>When <code>dpkg-buildpackage</code> completes, the init script has been copied to <code>debian/project/etc/init.d/project</code>, and the various pre/post scripts have been created.</p>
<p>However, when I actually install the .deb (with <code>dpkg -i</code>), the init.d script does not get installed, so I must be missing part of this process. The "<a href="http://www.debian.org/doc/maint-guide/" rel="nofollow">New Maintainer's Guide</a>" is pretty sparse on init.d details (it basically says not to use them, because they are too advanced).</p>
<p>The verbose output of the dh_installinit command is:</p>
<pre><code>dh_installinit
install -p -m755 debian/project.init debian/project/etc/init.d/project
echo "# Automatically added by dh_installinit">> debian/project.postinst.debhelper
sed "s/#SCRIPT#/project/;s/#INITPARMS#/defaults/;s/#ERROR_HANDLER#/exit \$?/" /usr/share/debhelper/autoscripts/postinst-init >> debian/project.postinst.debhelper
echo '# End automatically added section' >> debian/project.postinst.debhelper
echo "# Automatically added by dh_installinit">> debian/project.prerm.debhelper
sed "s/#SCRIPT#/project/;s/#INITPARMS#/defaults/;s/#ERROR_HANDLER#/exit \$?/" /usr/share/debhelper/autoscripts/prerm-init >> debian/project.prerm.debhelper
echo '# End automatically added section' >> debian/project.prerm.debhelper
echo "# Automatically added by dh_installinit">> debian/project.postrm.debhelper
sed "s/#SCRIPT#/project/;s/#INITPARMS#/defaults/;s/#ERROR_HANDLER#/exit \$?/" /usr/share/debhelper/autoscripts/postrm-init >> debian/project.postrm.debhelper
echo '# End automatically added section' >> debian/project.postrm.debhelper
</code></pre>
http://stackoverflow.com/questions/1309370/does-a-udp-service-have-to-respond-from-the-connected-ip-address1Does a UDP service have to respond from the connected IP address?Tony Meyer2009-08-20T23:21:32Z2009-08-22T11:56:52Z
<p><a href="http://pyzor.org" rel="nofollow">Pyzor</a> uses UDP/IP as the communication protocol. We recently switched the public server to a new machine, and started getting reports of many timeouts. I discovered that I could fix the problem if I changed the IP that was queried from <code>eth0:1</code> to <code>eth0</code>.</p>
<p>I can reproduce this problem with a simple example:</p>
<p>This is the server code:</p>
<pre><code>#! /usr/bin/env python
import SocketServer
class RequestHandler(SocketServer.DatagramRequestHandler):
def handle(self):
print self.packet
self.wfile.write("Pong")
s = SocketServer.UDPServer(("0.0.0.0", 24440), RequestHandler)
s.serve_forever()
</code></pre>
<p>This is the client code (<code>188.40.77.206</code> is <code>eth0</code>. <code>188.40.77.236</code> is the same server, but is <code>eth0:1</code>):</p>
<pre><code>>>> import socket
>>> s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
>>> s.sendto('ping', 0, ("188.40.77.206", 24440))
4
>>> s.recvfrom(1024)
('Pong', ('188.40.77.206', 24440))
>>> s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
>>> s.sendto('ping', 0, ("188.40.77.236", 24440))
4
>>> s.recvfrom(1024)
[never gets anything]
</code></pre>
<p>The server gets the "ping" packet in both cases (and therefore sends the "pong" packet in both cases).</p>
<p>Oddly, this <strong>does</strong> work from some places (i.e. I'll get a response from both IPs). For example, it works from <code>188.40.37.137</code> (same network/datacenter, different server), but also from <code>89.18.189.160</code> (different datacenter). In those cases, the <code>recvfrom</code> response does have the <code>eth0</code> IP, rather than the one that was connected to.</p>
<p>Is this just a rule of UDP? Is this a problem/limitation with the <a href="http://python.org" rel="nofollow">Python</a> <code>UDPServer</code> class? Is it something I'm doing incorrectly? Is there any way that I can have this work apart from simply connecting to the <code>eth0</code> IP (or listening on the specific IP rather than <code>0.0.0.0</code>)?</p>
http://stackoverflow.com/questions/1296640/does-ironpython-implement-python-standard-library/1297357#12973571Answer by Tony Meyer for Does IronPython implement python standard library?Tony Meyer2009-08-19T01:04:37Z2009-08-19T01:04:37Z<p>The .msi installer for <a href="http://ironpython.codeplex.com" rel="nofollow">IronPython</a> includes all parts of the <a href="http://python.org" rel="nofollow">CPython</a> standard library that should work with IronPython. You can simply copy the standard library from a CPython install if you prefer, although you're better off getting just the modules that the IronPython developers have ensured with with IronPython - this is most of them.</p>
<p>Modules that are implemented using the CPython C API ('extension modules') will not be available. <a href="http://code.google.com/p/ironclad/" rel="nofollow">IronClad</a> is an open-source project that aims to let you seamlessly use these modules - it's not perfect yet, but (e.g.) most of the NumPy tests pass.</p>
<p>The other option for these 'extension modules' is to replace them with a pure-Python version (e.g. from <a href="http://codespeak.net/pypy/dist/pypy/doc/" rel="nofollow">PyPy</a>) or with a wrapper over a .NET class. The <a href="http://fepy.sourceforge.net/" rel="nofollow">IronPython Community Edition</a> is an IronPython distribution that includes such wrappers for many modules that are not included in the standard IronPython distribution.</p>
http://stackoverflow.com/questions/193077/standalone-python-applications-in-linux/909055#9090552Answer by Tony Meyer for Standalone Python applications in LinuxTony Meyer2009-05-26T05:32:13Z2009-05-26T05:32:13Z<p>You can use <a href="http://cx-freeze.sourceforge.net/" rel="nofollow">cx_Freeze</a> to do this. It's just like py2exe (bundles together the interpreter and and startup script and all required libraries and modules), but works on both Linux and Windows.</p>
<p>It collects the dependencies from the environment in which it is run, which means that they need to be suitable for the destination as well. If you're doing something like building on 32 bit Debian and deploying on another 32 bit Debian, then that's fine. You can handle 32/64 bit differences by building multiple versions in appropriate environments (e.g. 32 bit and 64 bit chroots) and distributing the appropriate one. If you're wanting something more generic (e.g. build on Debian, deploy on any distribution), then this gets a bit murky, depending on exactly what your dependencies are.</p>
<p>If you're doing a fairly straightforward distribution (i.e. you know that your build environment and deploy environments are similar), then this avoids the rather complex rpm/deb/egg/etc step (using cx_Freeze is very easy, especially if you're familiar with py2exe). If not, then anything from rolling your own dependancy installer to deb/rpm/egg/etc building will work, depending on how much work you want to do, how much flexibility with required versions you want to offer, and what the dependencies are.</p>
http://stackoverflow.com/questions/719983/calculating-the-probability-of-a-token-being-spam-in-a-bayesian-spam-filter/806155#8061550Answer by Tony Meyer for Calculating the probability of a token being spam in a Bayesian spam filterTony Meyer2009-04-30T09:44:33Z2009-04-30T09:44:33Z<p>In general, most filters have moved past the algorithms outlined in Graham's paper. My suggestion would be to get the SpamBayes source and read the comments outlined in spambayes/classifier.py (particularly) and spambayes/tokenizer.py (especially at the top). There's a lot of history there about the early experiments that were done, evaluating decisions like this.</p>
<p>FWIW, in the current SpamBayes code, the probability is calculated thusly (spamcount and hamcount are the number of messages in which the token has been seen (any number of times), and nham and nspam are the total number of messages):</p>
<pre><code>hamratio = hamcount / nham
spamratio = spamcount / nspam
prob = spamratio / (hamratio + spamratio)
S = options["Classifier", "unknown_word_strength"]
StimesX = S * options["Classifier", "unknown_word_prob"]
n = hamcount + spamcount
prob = (StimesX + n * prob) / (S + n)
</code></pre>
<p>unknown_word_strength is (by default) 0.45, and unknown_word_prob is (by default) 0.5.</p>
http://stackoverflow.com/questions/558219/bayesian-spam-filtering-library-for-python/806101#8061011Answer by Tony Meyer for Bayesian spam filtering library for PythonTony Meyer2009-04-30T09:31:01Z2009-04-30T09:31:01Z<p><a href="http://spambayes.org" rel="nofollow">SpamBayes</a> <strong>is</strong> maintained, and is mature (i.e. it works without having to have new releases all the time). It will easily do what you want. Note that SpamBayes is only loosely Bayesian (it uses chi-squared combining), but presumably you're after any sort of statistical token-based classification, rather than something specifically Bayesian.</p>
http://stackoverflow.com/questions/288546/connect-to-exchange-mailbox-with-python2Connect to Exchange mailbox with PythonTony Meyer2008-11-13T22:19:01Z2009-02-06T09:00:19Z
<p>I need to connect to an Exchange mailbox in a Python script, without using any profile setup on the local machine (including using Outlook). If I use win32com to create a MAPI.Session I could logon (with the Logon() method) with an existing profile, but I want to just provide a username & password.</p>
<p>Is this possible? If so, could someone provide example code? I would prefer if it only used the standard library and the pywin32 package. Unfortunately, enabling IMAP access for the Exchange server (and then using imaplib) is not possible.</p>
<p>In case it is necessary: all the script will be doing is connecting to the mailbox, and running through the messages in the Inbox, retrieving the contents. I can handle writing the code for that, if I can get a connection in the first place!</p>
<p>To clarify regarding Outlook: Outlook will be installed on the local machine, but it does not have any accounts setup (i.e. all the appropriate libraries will be available, but I need to operate independently from anything setup inside of Outlook).</p>
http://stackoverflow.com/questions/508727/python-time-to-age/510638#5106380Answer by Tony Meyer for Python time to ageTony Meyer2009-02-04T09:24:29Z2009-02-04T09:24:29Z<p>If you don't want to use datetime (e.g. if your Python is old and you don't have the module), you can just use the time module.</p>
<pre><code>s = "Mon, 17 Nov 2008 01:45:32 +0200"
import time
import email.utils # Using email.utils means we can handle the timezone.
t = email.utils.parsedate_tz(s) # Gets the time.mktime 9-tuple, plus tz
d = time.time() - time.mktime(t[:9]) + t[9] # Gives the difference in seconds.
</code></pre>
http://stackoverflow.com/questions/425990/django-on-ironpython/509424#5094245Answer by Tony Meyer for Django on IronPythonTony Meyer2009-02-03T23:17:20Z2009-02-03T23:17:20Z<p>This was <a href="http://www.infoq.com/news/2008/03/django-and-ironpython" rel="nofollow">demoed</a> at last year's PyCon (the <a href="http://blogs.msdn.com/dinoviehland/archive/2008/03/17/ironpython-ms-sql-and-pep-249.aspx" rel="nofollow">details</a> are also available). More recently, <a href="http://jdhardy.blogspot.com/2008/12/django-ironpython.html" rel="nofollow">Jeff Hardy has blogged about this</a>, including suggestions.</p>
http://stackoverflow.com/questions/447600/decrypting-pdf-protected-by-aes-256bit-using-the-right-password/449408#4494081Answer by Tony Meyer for decrypting pdf protected by aes-256bit using the right passwordTony Meyer2009-01-16T03:29:25Z2009-01-16T03:29:25Z<pre><code>import pyPdf
pdf = pyPdf.PdfFileReader(open("file.pdf"))
pdf.decrypt("password")
</code></pre>
<p>You can then do whatever you want with the contents. This will work with either the user or owner passwords.</p>
http://stackoverflow.com/questions/436474/pypdf-for-indirectobject-extraction/445201#4452010Answer by Tony Meyer for pyPdf for IndirectObject extractionTony Meyer2009-01-15T00:25:07Z2009-01-15T00:25:07Z<p>Jehiah's method is good if looking everywhere for the object. My guess (looking at the PDF) is that it is always in the same place (the first page, in the 'MC0' property), and so a much simpler method of finding the string would be:</p>
<pre><code>import pyPdf
pdf = pyPdf.PdfFileReader(open("file.pdf"))
pdf.getPage(0)['/Resources']['/Properties']['/MC0']['/MYOBJECT'].getData()
</code></pre>
http://stackoverflow.com/questions/436474/pypdf-for-indirectobject-extraction/442401#4424011Answer by Tony Meyer for pyPdf for IndirectObject extractionTony Meyer2009-01-14T09:32:55Z2009-01-14T09:32:55Z<p>An IndirectObject refers to an actual object (it's like a link or alias so that the total size of the PDF can be reduced when the same content appears in multiple places). The getObject method will give you the actual object.</p>
<p>If the object is a text object, then just doing a str() or unicode() on the object should get you the data inside of it.</p>
<p>Alternatively, pyPdf stores the objects in the resolvedObjects attribute. For example, a PDF that contains this object:</p>
<pre><code>13 0 obj
<< /Type /Catalog /Pages 3 0 R >>
endobj
</code></pre>
<p>Can be read with this:</p>
<pre><code>>>> import pyPdf
>>> pdf = pyPdf.PdfFileReader(open("pdffile.pdf"))
>>> pages = list(pdf.pages)
>>> pdf.resolvedObjects
{0: {2: {'/Parent': IndirectObject(3, 0), '/Contents': IndirectObject(4, 0), '/Type': '/Page', '/Resources': IndirectObject(6, 0), '/MediaBox': [0, 0, 595.2756, 841.8898]}, 3: {'/Kids': [IndirectObject(2, 0)], '/Count': 1, '/Type': '/Pages', '/MediaBox': [0, 0, 595.2756, 841.8898]}, 4: {'/Filter': '/FlateDecode'}, 5: 147, 6: {'/ColorSpace': {'/Cs1': IndirectObject(7, 0)}, '/ExtGState': {'/Gs2': IndirectObject(9, 0), '/Gs1': IndirectObject(10, 0)}, '/ProcSet': ['/PDF', '/Text'], '/Font': {'/F1.0': IndirectObject(8, 0)}}, 13: {'/Type': '/Catalog', '/Pages': IndirectObject(3, 0)}}}
>>> pdf.resolvedObjects[0][13]
{'/Type': '/Catalog', '/Pages': IndirectObject(3, 0)}
</code></pre>
http://stackoverflow.com/questions/433722/how-to-export-a-db2-database-without-a-db2-server1How to export a DB2 database without a DB2 serverTony Meyer2009-01-11T21:16:15Z2009-01-12T07:49:43Z
<p>I have a db2 database file, but do not have a db2 server. I would like to export this data into something else (e.g. SQL, but it doesn't really matter what), without having to setup a full db2 server (I started looking into this, but it seems very involved).</p>
<p>Ideally the tool would run on (Debian) Linux, but Windows/OS X is fine if necessary. An online service would be acceptable, although the db is 400MB. A free tool would obviously be preferable, but I'd consider something that wasn't free as long as it wasn't too expensive (this is a one-off task).</p>
<p>(In response to the comment: I downloaded Express-C, and ran dp2prereqcheck, db2setup (didn't seem to do anything), and db2_install. It's not clear how to actually run the server (googling references "db2start", but I cannot find such a file. Googling didn't find me any other setup instructions). Such instructions would be fine. There are nearly 200 files in /opt/ibm/db2/V9.5/bin/, none of which are an obvious start point, and I don't relish trying them all when none seem to offer any --help).</p>
http://stackoverflow.com/questions/429437/extracting-stream-from-pdf-in-python/433826#4338261Answer by Tony Meyer for extracting stream from pdf in pythonTony Meyer2009-01-11T22:06:59Z2009-01-11T22:06:59Z<p>IIUC, a stream in a PDF is just a sequence of binary data. I think you are wanting to extract part of an object. Are you wanting a standard object, like an image or text? It would be a lot easier to give you example code if there was a real example.</p>
<p>This might help get you started:</p>
<pre><code>import pyPdf
pdf = pyPdf.PdfFileReader(open("pdffile.pdf"))
list(pdf.pages) # Process all the objects.
print pdf.resolvedObjects
</code></pre>
http://stackoverflow.com/questions/224660/incoming-poplib-refactoring-using-windows-python-2-3/225029#2250291Answer by Tony Meyer for Incoming poplib refactoring using windows python 2.3Tony Meyer2008-10-22T09:32:26Z2008-10-22T09:32:26Z<p>This isn't refactoring (it doesn't need refactoring as far as I can see), but some suggestions:</p>
<p>You should use the email package rather than rfc822. Replace rfc822.Message with email.Message, and use email.Utils.parseaddr(msg["From"]) to get the name and email address, and msg["Subject"] to get the subject.</p>
<p>Use os.path.join to create the path. This:</p>
<pre><code>emailpath = str(self._emailpath + self._inboxfolder + "\\" + email + "_" + msg.getheader("Subject") + ".eml")
</code></pre>
<p>Becomes:</p>
<pre><code>emailpath = os.path.join(self._emailpath + self._inboxfolder, email + "_" + msg.getheader("Subject") + ".eml")
</code></pre>
<p>(If self._inboxfolder starts with a slash or self._emailpath ends with one, you could replace the first + with a comma also).</p>
<p>It doesn't really hurt anything, but you should probably not use "file" as a variable name, since it shadows a built-in type (checkers like pylint or pychecker would warn you about that).</p>
<p>If you're not using self.popinstance outside of this function (seems unlikely given that you connect and quit within the function), then there's no point making it an attribute of self. Just use "popinstance" by itself.</p>
<p>Use xrange instead of range.</p>
<p>Instead of just importing StringIO, do this:</p>
<pre><code>try:
import cStringIO as StringIO
except ImportError:
import StringIO
</code></pre>
<p>If this is a POP mailbox that can be accessed by more than one client at a time, you might want to put a try/except around the RETR call to continue on if you can't retrieve one message.</p>
<p>As John said, use "\n".join rather than string.join, use try/finally to only close the file if it is opened, and pass the logging parameters separately.</p>
<p>The one refactoring issue I could think of would be that you don't really need to parse the whole message, since you're just dumping a copy of the raw bytes, and all you want is the From and Subject headers. You could instead use popinstance.top(0) to get the headers, create the message (blank body) from that, and use that for the headers. Then do a full RETR to get the bytes. This would only be worth doing if your messages were large (and so parsing them took a long time). I would definitely measure before I made this optimisation.</p>
<p>For your function to sanitise for the names, it depends how nice you want the names to be, and how certain you are that the email and subject make the filename unique (seems fairly unlikely). You could do something like:</p>
<pre><code>emailpath = "".join([c for c in emailpath if c in (string.letters + string.digits + "_ ")])
</code></pre>
<p>And you'd end up with just alphanumeric characters and the underscore and space, which seems like a readable set. Given that your filesystem (with Windows) is probably case insensitive, you could lowercase that also (add .lower() to the end). You could use emailpath.translate if you want something more complex.</p>
http://stackoverflow.com/questions/220777/including-pyds-dlls-in-py2exe-builds/224274#2242743Answer by Tony Meyer for Including PYDs/DLLs in py2exe buildsTony Meyer2008-10-22T02:27:44Z2008-10-22T02:27:44Z<p>.pyd's and .DLL's are different here, in that a .pyd ought to be automatically found by modulefinder and so included (as long as you have the appropriate "import" statement) without needing to do anything. If one is missed, you do the same thing as if a .py file was missed (they're both just modules): use the "include" option for the py2exe options.</p>
<p>Modulefinder will not necessarily find dependencies on .DLLs (py2exe can detect some), so you may need to explicitly include these, with the 'data_files' option.</p>
<p>For example, where you had two .DLL's ('foo.dll' and 'bar.dll') to include, and three .pyd's ('module1.pyd', 'module2.pyd', and 'module3.pyd') to include:</p>
<pre><code>setup(name='App',
# other options,
data_files=[('.', 'foo.dll'), ('.', 'bar.dll')],
options = {"py2exe" : {"include" : "module1,module2,module3"}}
)
</code></pre>
http://stackoverflow.com/questions/224204/why-use-infinite-loops/224215#22421519Answer by Tony Meyer for Why use infinite loops?Tony Meyer2008-10-22T02:02:31Z2008-10-22T02:02:31Z<p>A loop like:</p>
<pre><code>while (true)
{
// do something
if (something else) break;
// do more
}
</code></pre>
<p>lets you break out of the loop in the middle, rather than at the start (while/for) or end (do-while).</p>
<p>If you've got a complex condition, you might also want to use this style to make the code clearer.</p>
http://stackoverflow.com/questions/213628/how-to-convert-a-c-string-char-array-into-a-python-string/215507#2155074Answer by Tony Meyer for How to convert a C string (char array) into a Python string?Tony Meyer2008-10-18T19:59:25Z2008-10-21T01:47:51Z<p>PyString_Decode does this:</p>
<pre><code>PyObject *PyString_Decode(const char *s,
Py_ssize_t size,
const char *encoding,
const char *errors)
{
PyObject *v, *str;
str = PyString_FromStringAndSize(s, size);
if (str == NULL)
return NULL;
v = PyString_AsDecodedString(str, encoding, errors);
Py_DECREF(str);
return v;
}
</code></pre>
<p>IOW, it does basically what you're doing in your second example - converts to a string, then decode the string. The problem here arises from PyString_AsDecodedString, rather than PyString_AsDecodedObject. PyString_AsDecodedString does PyString_AsDecodedObject, but then tries to convert the resulting unicode object into a string object with the default encoding (for you, looks like that's ASCII). That's where it fails.</p>
<p>I believe you'll need to do two calls - but you can use PyString_AsDecodedObject rather than calling the python "decode" method. Something like:</p>
<pre><code>#include <Python.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
char c_string[] = { (char)0x93, 0 };
PyObject *py_string, *py_unicode;
Py_Initialize();
py_string = PyString_FromStringAndSize(c_string, 1);
if (!py_string) {
PyErr_Print();
return 1;
}
py_unicode = PyString_AsDecodedObject(py_string, "windows_1252", "replace");
Py_DECREF(py_string);
return 0;
}
</code></pre>
<p>I'm not entirely sure what the reasoning behind PyString_Decode working this way is. A <a href="http://mail.python.org/pipermail/python-dev/2001-May/014547.html" rel="nofollow">very old thread on python-dev</a> seems to indicate that it has something to do with chaining the output, but since the Python methods don't do the same, I'm not sure if that's still relevant.</p>
http://stackoverflow.com/questions/207939/python-module-that-implements-ftps/215529#2155292Answer by Tony Meyer for Python module that implements ftpsTony Meyer2008-10-18T20:16:09Z2008-10-18T20:16:09Z<p><a href="http://chandlerproject.org/bin/view/Projects/MeTooCrypto" rel="nofollow">M2Cypto</a> has a FTPS module. From the <a href="http://eikkitoivonen.net/m2crypto/api/M2Crypto.ftpslib-module.html" rel="nofollow">documentation</a>:</p>
<pre><code>>>> from M2Crypto import ftpslib
>>> f = ftpslib.FTP_TLS()
>>> f.connect('', 9021)
'220 spinnaker.dyndns.org M2Crypto (Medusa) FTP/TLS server v0.07 ready.'
>>> f.auth_tls()
>>> f.set_pasv(0)
>>> f.login('ftp', 'ngps@')
'230 Ok.'
>>> f.retrlines('LIST')
-rw-rw-r-- 1 0 198 2326 Jul 3 1996 apache_pb.gif
drwxrwxr-x 7 0 198 1536 Oct 10 2000 manual
drwxrwxr-x 2 0 198 512 Oct 31 2000 modpy
drwxrwxr-x 2 0 198 512 Oct 31 2000 bobo
drwxr-xr-x 2 0 198 14336 May 28 15:54 postgresql
drwxr-xr-x 4 100 198 512 May 16 17:19 home
drwxr-xr-x 7 100 100 3584 Sep 23 2000 openacs
drwxr-xr-x 10 0 0 512 Aug 5 2000 python1.5
-rw-r--r-- 1 100 198 326 Jul 29 03:29 index.html
drwxr-xr-x 12 0 0 512 May 31 17:08 python2.1
'226 Transfer complete'
>>> f.quit()
'221 Goodbye.'
>>>
</code></pre>
<p>Alternatively, if you wanted to minimise use of third-party modules, you should be able to subclass the standard library's <a href="http://docs.python.org/library/ftplib.html#module-ftplib" rel="nofollow">ftplib</a>.FTP class with the built-in (to Python) SSL support. M2Crypto (or <a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a>, if you want to go that way) is the easier solution, though.</p>
http://stackoverflow.com/questions/208894/how-to-base64-encode-a-pdf-file-in-python/210534#2105341Answer by Tony Meyer for How to base64 encode a PDF file in PythonTony Meyer2008-10-16T22:33:24Z2008-10-16T22:33:24Z<p>If you don't want to use the xmlrpclib's Binary class, you can just use the .encode() method of strings:</p>
<pre><code>a = open("pdf_reference.pdf", "rb").read().encode("base64")
</code></pre>
http://stackoverflow.com/questions/181994/code-to-verify-updates-from-the-google-safe-browsing-api1Code to verify updates from the Google Safe Browsing APITony Meyer2008-10-08T09:59:55Z2008-10-08T20:07:42Z
<p>In order to verify the data coming from the <a href="http://code.google.com/apis/safebrowsing/developers_guide.html" rel="nofollow">Google Safe Browsing API</a>, you can calculate a Message Authentication Code (MAC) for each update. The instructions to do this (from Google) are:</p>
<blockquote>
<p>The MAC is computed from an MD5 Digest
over the following information:
client_key|separator|table
data|separator|client_key. The
separator is the string:coolgoog: -
that is a colon followed by "coolgoog"
followed by a colon. The resulting
128-bit MD5 digest is websafe base-64
encoded.</p>
</blockquote>
<p>There's also example data to check against:</p>
<pre><code>client key: "8eirwN1kTwCzgWA2HxTaRQ=="
</code></pre>
<p>response:</p>
<pre><code>[goog-black-hash 1.180 update][mac=dRalfTU+bXwUhlk0NCGJtQ==]
+8070465bdf3b9c6ad6a89c32e8162ef1
+86fa593a025714f89d6bc8c9c5a191ac
+bbbd7247731cbb7ec1b3a5814ed4bc9d
*Note that there are tabs at the end of each line.
</code></pre>
<p>I'm unable to get a match. Please either point out where I'm going wrong, or just write the couple of lines of Python code necessary to do this!</p>
<p>FWIW, I expected to be able to do something like this:</p>
<pre><code>>>> s = "+8070465bdf3b9c6ad6a89c32e8162ef1\t\n+86fa593a025714f89d6bc8c9c5a191ac\t\n+bbbd7247731cbb7ec1b3a5814ed4bc9d\t"
>>> c = "8eirwN1kTwCzgWA2HxTaRQ=="
>>> hashlib.md5("%s%s%s%s%s" % (c, ":coolgoog:", s, ":coolgoog:", c)).digest().encode("base64")
'qfb50mxpHrS82yTofPkcEg==\n'
</code></pre>
<p>But as you can see, 'qfb50mxpHrS82yTofPkcEg==\n' != 'dRalfTU+bXwUhlk0NCGJtQ=='.</p>
http://stackoverflow.com/questions/181994/code-to-verify-updates-from-the-google-safe-browsing-api/184617#1846170Answer by Tony Meyer for Code to verify updates from the Google Safe Browsing APITony Meyer2008-10-08T20:07:42Z2008-10-08T20:07:42Z<p>Anders' answer gives the necessary information, but isn't that clear: the client key needs to be decoded before it is combined. (The example above is also missing a newline at the end of the final table data).</p>
<p>So the working code is:</p>
<pre><code>>>> s = "+8070465bdf3b9c6ad6a89c32e8162ef1\t\n+86fa593a025714f89d6bc8c9c5a191ac\t\n+bbbd7247731cbb7ec1b3a5814ed4bc9d\t\n"
>>> c = "8eirwN1kTwCzgWA2HxTaRQ==".decode('base64')
>>> hashlib.md5("%s%s%s%s%s" % (c, ":coolgoog:", s, ":coolgoog:", c)).digest().encode("base64")
'dRalfTU+bXwUhlk0NCGJtQ==\n'
</code></pre>
http://stackoverflow.com/questions/181556/py2exe-including-msvc-dlls-in-the-exe/182059#1820590Answer by Tony Meyer for py2exe including MSVC DLLs in the .exeTony Meyer2008-10-08T10:31:51Z2008-10-08T10:31:51Z<p>py2exe can't do this. You can wrap py2exe (there is <a href="http://py2exe.org/index.cgi/SingleFileExecutable" rel="nofollow">an example on the wiki</a> showing how to do that with NSIS); you could build your own wrapper if using NSIS or InnoSetup wasn't an option.</p>
<p>Alternatively, if you're positive that your users will have a compatible copy of msvcr71.dll installed (IIRC Vista or XP SP2 users), then you could get away without including it. More usefully, perhaps, if you use Python 2.3 (or older), then Python links against msvcr.dll rather than msvcr71.dll, and any Windows user will have that installed, so you can just not worry about it.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/182020#1820204Answer by Tony Meyer for What is a good PDF report generator tool for python?Tony Meyer2008-10-08T10:14:31Z2008-10-08T10:14:31Z<p>When you looked at ReportLab, did you check out the Platypus section? It's really very easy to use (Platypus is high-level, whereas pdfgen is fairly low-level). There's a good "Hello World" example in <a href="http://www.reportlab.org/devfaq.html#2.3.2" rel="nofollow">the developer's FAQ</a>.</p>
http://stackoverflow.com/questions/174170/python-py2exe-cant-build-exe-using-the-email-module/176305#1763052Answer by Tony Meyer for Python - Py2exe can't build .exe using the 'email' moduleTony Meyer2008-10-06T21:38:17Z2008-10-06T21:38:17Z<p>What version of Python are you using? If you are using 2.5 or 2.6, then you should be doing your import like:</p>
<pre><code>import string,time,sys,os,smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email.mime.text import MIMEText
from email import Encoders
</code></pre>
<p>I'm pretty certain that py2exe's modulefinder can correctly find the email package if you use it correctly (i.e. use the above names in Python 2.5+, or use the old names in Python 2.4-). Certainly the SpamBayes setup script does not need to explicitly include the email package, and it includes the email modules without problem.</p>
<p>The other answers are correct in that if you do need to specifically include a module, you use the "includes" option, either via the command-line, or passing them in when you call setup.</p>
http://stackoverflow.com/questions/34079/how-to-specify-an-authenticated-proxy-for-a-python-http-connection/142324#1423240Answer by Tony Meyer for How to specify an authenticated proxy for a python http connection?Tony Meyer2008-09-26T22:17:59Z2008-09-26T22:17:59Z<p>Or if you want to install it, so that it is always used with urllib2.urlopen (so you don't need to keep a reference to the opener around):</p>
<pre><code>import urllib2
url = 'www.example.com'
username = 'user'
password = 'pass'
password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
# None, with the "WithDefaultRealm" password manager means
# that the user/pass will be used for any realm (where
# there isn't a more specific match).
password_mgr.add_password(None, url, username, password)
auth_handler = urllib2.HTTPBasicAuthHandler(password_mgr)
opener = urllib2.build_opener(auth_handler)
urllib2.install_opener(opener)
print urllib2.urlopen("http://www.example.com/folder/page.html")
</code></pre>
http://stackoverflow.com/questions/126179/does-an-index-help-with-or-mysql-queries3Does an index help with < or > MySQL queries?Tony Meyer2008-09-24T09:21:54Z2008-09-24T10:51:07Z
<p>If I have a query like "DELETE FROM table WHERE datetime_field < '2008-01-01 00:00:00'", does having the 'datetime_field' column indexed help? i.e. is the index only useful when using equality (or inequality) testing, or is it useful when doing an ordered comparison as well?</p>
<p>(Suggestions for better executing this query, without recreating the table, would also be ok!)</p>
http://stackoverflow.com/questions/120250/short-integers-in-python/120454#1204542Answer by Tony Meyer for Short Integers in PythonTony Meyer2008-09-23T11:35:15Z2008-09-23T11:35:15Z<p>Armin's suggestion of the array module is probably best. Two possible alternatives:</p>
<ul>
<li>You can create an extension module yourself that provides the data structure that you're after. If it's really just something like a collection of shorts, then
that's pretty simple to do.</li>
<li>You can
cheat and manipulate bits, so that
you're storing one number in the
lower half of the Python int, and
another one in the upper half.
You'd write some utility functions
to convert to/from these within your
data structure. Ugly, but it can be made to work.</li>
</ul>
<p>It's also worth realising that a Python integer object is not 4 bytes - there is additional overhead. So if you have a really large number of shorts, then you can save more than two bytes per number by using a C short in some way (e.g. the array module).</p>
<p>I had to keep a large set of integers in memory a while ago, and a dictionary with integer keys and values was too large (I had 1GB available for the data structure IIRC). I switched to using a IIBTree (from ZODB) and managed to fit it. (The ints in a IIBTree are real C ints, not Python integers, and I hacked up an automatic switch to a IOBTree when the number was larger than 32 bits).</p>
http://stackoverflow.com/questions/117732/can-you-do-linq-like-queries-in-a-language-like-python-or-boo/118350#1183503Answer by Tony Meyer for Can you do LINQ-like queries in a language like Python or Boo?Tony Meyer2008-09-23T00:11:39Z2008-09-23T00:11:39Z<p>I believe that when IronPython 2.0 is complete, it will have LINQ support (see <a href="http://groups.google.com/group/ironpy/browse_thread/thread/eb6b9eb2241cc68e" rel="nofollow">this thread</a> for some example discussion). Right now you should be able to write something like:</p>
<pre><code>Queryable.Select(Queryable.Where(someInputSequence, somePredicate), someFuncThatReturnsTheSequenceElement)
</code></pre>
<p>Something better might have made it into IronPython 2.0b4 - there's a lot of <a href="http://ironpython-urls.blogspot.com/2008/09/dlr-namespace-change-fire-drill.html" rel="nofollow">current discussion</a> about how naming conflicts were handled.</p>
http://stackoverflow.com/questions/117561/what-are-good-open-source-projects-in-python-for-which-i-can-be-a-contributor/118271#1182711Answer by Tony Meyer for What are good open source projects in Python for which I can be a contributor?Tony Meyer2008-09-22T23:47:54Z2008-09-22T23:47:54Z<p><a href="http://spambayes.org" rel="nofollow">SpamBayes</a> is looking for people interested in helping. If you're interested in mathematics/statistics, or email, or developing/testing Windows applications, those are all areas that could use help.</p>
http://stackoverflow.com/questions/246007/how-to-determine-whether-a-given-linux-is-32-bit-or-64-bit/246014#246014Comment by Tony Meyer on How to determine whether a given Linux is 32 bit or 64 bit?Tony Meyer2009-09-04T20:33:31Z2009-09-04T20:33:31ZI have a 32 bit kernel on 64 bit hardware and get "x86_64" from 'uname -m' (on Debian). The man page for uname says that -m shows the machine hardware name, so that seems correct.http://stackoverflow.com/questions/1309370/does-a-udp-service-have-to-respond-from-the-connected-ip-address/1309542#1309542Comment by Tony Meyer on Does a UDP service have to respond from the connected IP address?Tony Meyer2009-08-21T02:23:34Z2009-08-21T02:23:34ZI edited the question to make it clearer that the problem is with the response, not the server receiving the client's packet.http://stackoverflow.com/questions/1309370/does-a-udp-service-have-to-respond-from-the-connected-ip-address/1309534#1309534Comment by Tony Meyer on Does a UDP service have to respond from the connected IP address?Tony Meyer2009-08-21T02:19:40Z2009-08-21T02:19:40ZThat sounds like exactly what is happening here. I wrote a C client that did the same thing as the Python above, and I still get the same results, so the "reject response from other IP" must be happening at the C library level (which effectively means I'm stuck with it).
Looks like I'll need to bind to the specific address also. Thanks for the help!http://stackoverflow.com/questions/1309370/does-a-udp-service-have-to-respond-from-the-connected-ip-address/1309542#1309542Comment by Tony Meyer on Does a UDP service have to respond from the connected IP address?Tony Meyer2009-08-21T01:27:53Z2009-08-21T01:27:53ZThe problem isn't binding to the address, because the server gets the 'ping' - but the client doesn't get the 'pong'.
Running netcat bound to that IP works (but so does SocketServer). Running netcat bound to 0.0.0.0 <b>doesn't</b> work.http://stackoverflow.com/questions/755883/ide-for-ironpython-on-windows/758305#758305Comment by Tony Meyer on IDE for ironpython on windowsTony Meyer2009-07-11T11:25:18Z2009-07-11T11:25:18ZWing Personal isn't free ("$35 per developer working on a single operating system, $60 for two operating systems, and $80 for three operating systems."), although Wing 101 is.http://stackoverflow.com/questions/909138/how-do-i-add-an-init-d-script-into-a-debComment by Tony Meyer on How do I add an init.d script into a .debTony Meyer2009-06-01T01:52:29Z2009-06-01T01:52:29ZI'm not sure how to test whether it is in the .deb or not. It doesn't appear in /etc/init.d (and so obviously the start/stop links aren't created).http://stackoverflow.com/questions/717725/understanding-recursion/717792#717792Comment by Tony Meyer on Understanding recursionTony Meyer2009-04-30T10:19:17Z2009-04-30T10:19:17ZI've used factorials when explaining recursion, and I think one of the common reasons it fails as an example is because the explainee dislikes mathematics, and gets caught up in that. (Whether or not someone that dislikes mathematics should be coding is another question).
For that reason, I generally try to use a non-mathematical example where possible.http://stackoverflow.com/questions/326401/best-language-choice-for-a-spam-detection-service/326537#326537Comment by Tony Meyer on Best language choice for a spam detection serviceTony Meyer2009-04-30T09:37:24Z2009-04-30T09:37:24ZAlthough the SpamBayes scripts are centred around email filtering, the tokenisation code is easily adapted to other text-classification, and the classifier can generally be left unchanged. There's an example in the source distribution that demonstrates using the SpamBayes engine as a filtering proxy, which is a similar task to this.http://stackoverflow.com/questions/222181/open-source-project-language-selection/222222#222222Comment by Tony Meyer on Open Source Project & Language SelectionTony Meyer2009-04-30T09:34:15Z2009-04-30T09:34:15ZPython wasn't really a "cult" language when SpamBayes was originally developed. The reason it uses Python is because it was an idea worked on by key Python developers (e.g. Tim Peters), and the original goal was filtering the python-list mailing list.
However, yes: write in whatever language most suits the project and existing developer(s).http://stackoverflow.com/questions/508727/python-time-to-age/508881#508881Comment by Tony Meyer on Python time to ageTony Meyer2009-02-04T09:14:44Z2009-02-04T09:14:44ZThe datetime module knows about leap years. It may well also know about leap seconds also, but that hardly seems relevant when the OP is concerned about time in days.http://stackoverflow.com/questions/508727/python-time-to-age/508742#508742Comment by Tony Meyer on Python time to ageTony Meyer2009-02-04T09:08:02Z2009-02-04T09:08:02ZThe code snippet is incorrect. You need to import 'datetime' from datetime, not date (or use the date object, rather than the datetime object).http://stackoverflow.com/questions/443387/why-does-paramiko-hang-if-you-use-it-while-loading-a-module/450895#450895Comment by Tony Meyer on Why does Paramiko hang if you use it while loading a module?!Tony Meyer2009-02-03T22:16:21Z2009-02-03T22:16:21ZI believe this is indeed a bug (or at least flaw) in paramiko.http://stackoverflow.com/questions/443920/why-dont-django-admin-today-and-now-buttons-show-up-in-safariComment by Tony Meyer on Why don't Django admin "Today" and "Now" buttons show up in Safari?Tony Meyer2009-01-16T03:31:27Z2009-01-16T03:31:27ZSafari 3.2.1 handles the today/now buttons without problem in general, so it is definitely something with your setup,http://stackoverflow.com/questions/436474/pypdf-for-indirectobject-extractionComment by Tony Meyer on pyPdf for IndirectObject extractionTony Meyer2009-01-14T09:34:34Z2009-01-14T09:34:34ZIf the information in my answer doesn't help, the as Jehiah says, an example PDF file would make it easy to give you real code. Email it to tony.meyer@gmail.com if you don't want to post it publicly.http://stackoverflow.com/questions/433722/how-to-export-a-db2-database-without-a-db2-serverComment by Tony Meyer on How to export a DB2 database without a DB2 serverTony Meyer2009-01-13T23:02:34Z2009-01-13T23:02:34ZEverything there is using X. Is DB2 only usable in a GUI environment?