User Greg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:09:41Z http://stackoverflow.com/feeds/user/13009 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1246963/how-to-use-the-lightbox-plugin-colorbox 1 How to use the lightbox plugin colorbox? Greg 2009-08-07T20:56:30Z 2009-11-28T18:30:04Z <p>I want to show the contents of a hidden div in a light box when the page loads.</p> <p>How can I do this with <a href="http://colorpowered.com/colorbox/" rel="nofollow">color box</a>?</p> <p>What I'm not understanding:</p> <p>Do I need to use their CSS files? Which ones, where is it?</p> <p>How do I make the lightbox come up when the page loads?</p> <p>I tried this but no luck:</p> <pre><code>$(document).ready(function(){ $("#div_id_i_want_to_show").colorbox({width:"50%", inline:true}); }); </code></pre> http://stackoverflow.com/questions/168992/make-h1-tag-the-same-maximum-width-regardless-of-capitalization-of-text-within 1 Make <h1> tag the same maximum width regardless of capitalization of text within Greg 2008-10-03T21:33:47Z 2009-11-27T00:37:23Z <p>I'm trying to display a series of titles varying from 60 characters to 160 or so and the capitalization varies, some of it all caps, some half caps. When it's mostly lowercase the whole 160 characters of text fits in the width I want, but when it starts getting more caps (they must be wider), it starts over flowing.</p> <p>Is there a way to use an attractive fixed witdh font (upper and lowercase widths the same too), or dynamically shrink the text to fit, or otherwise recognize how much space the text is going to take on the server side, and cut off the end dynamically? Or do you folks have a better solution?</p> http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode 5 Python UnicodeDecodeError - Am I misunderstanding encode? Greg 2008-12-15T15:57:24Z 2009-11-25T23:22:55Z <p>Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.</p> <pre><code>&gt;&gt;&gt; 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore') Traceback (most recent call last): File "&lt;interactive input&gt;", line 1, in ? UnicodeDecodeError: 'ascii' codec can't decode byte 0x93 in position 4: ordinal not in range(128) </code></pre> http://stackoverflow.com/questions/1725366/python-unit-tests-am-i-using-setup-wrong 0 Python Unit Tests - Am I using SetUp wrong? Greg 2009-11-12T21:01:39Z 2009-11-12T21:05:27Z <p>What am I doing wrong here?</p> <pre><code>import unittest class Test_1(unittest.TestCase): def SetUp(self): self.data = [] def test_data(self): self.assertEqual(len(self.data),0) if __name__=='__main__': unittest.main() </code></pre> <p>When I run it, it says:</p> <blockquote> <p>Traceback (most recent call last):<br> File "C:...\break_unit_test.py", line 9 , in test_data self.assertEqual(len(self.data),0) AttributeError: 'Test_1' object has no attribute 'data'</p> </blockquote> <p>I'm trying to follow <a href="http://docs.python.org/library/unittest.html#basic-example" rel="nofollow">this example</a>.</p> http://stackoverflow.com/questions/467336/jquery-how-to-use-slidedown-or-show-function-on-a-table-row 9 jQuery - How to Use slideDown (or show) function on a table row? Greg 2009-01-21T22:36:54Z 2009-11-09T00:58:36Z <p>I'm trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes up the layout.</p> <p>Any ideas how to work around this?</p> <p>Here's the code:</p> <pre><code>$.get('/some_url',{'val1':id}, function(data){ var row = $('#detailed_edit_row'); row.hide(); row.html(data); row.slideDown(1000); }); </code></pre> http://stackoverflow.com/questions/1640204/django-forms-can-the-initial-value-of-one-field-be-dependant-on-another 0 Django Forms - Can the initial value of one field be dependant on another? Greg 2009-10-28T21:22:56Z 2009-10-28T22:22:49Z <p>Example, for this form:</p> <pre><code>&gt;&gt;&gt; class CommentForm(forms.Form): ... name = forms.CharField(initial='class') ... action = forms.ChoiceField(...) </code></pre> <p>Can I have the choices in the action field be different depending on what is in the name field?</p> http://stackoverflow.com/questions/1586704/mysql-query-browser-using-variables/1586826#1586826 0 Answer by Greg for MySQL Query Browser - using variables Greg 2009-10-19T03:23:13Z 2009-10-19T03:23:13Z <p>How about using a script tab instead of a resultset tab? That way you can execute more than one statement.</p> http://stackoverflow.com/questions/1575779/python-datetime-subtraction-wrong-results 0 Python datetime subtraction - wrong results? Greg 2009-10-16T00:04:46Z 2009-10-16T00:11:05Z <p>I must be doing something wrong here, any ideas?</p> <pre><code>&gt;&gt;&gt; (datetime.datetime(2008,11,7,10,5,14)-datetime.datetime(2008,11,6,9,30,16)).seconds 2098 </code></pre> <p>It should be getting more than that many seconds.</p> http://stackoverflow.com/questions/1568658/html-tables-how-to-make-ie-not-break-lines-at-hyphens 2 HTML Tables - How to make IE not break lines at hyphens Greg 2009-10-14T20:05:38Z 2009-10-14T23:19:30Z <p>I have some table cells containing dates formatted like this: 2009-01-01. I.E 7 seems to be breaking these into two lines at the hyphen. Is there any way to turn this off?</p> http://stackoverflow.com/questions/1568880/javascript-regexp-why-isnt-this-matching/1568891#1568891 0 Answer by Greg for Javascript RegExp - Why Isn't this matching? Greg 2009-10-14T20:46:07Z 2009-10-14T20:46:07Z <p>Oh sorry, I had to escape the backslashes! Can I delete this?</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor 5 iPhone Proximity Sensor Greg 2008-10-03T03:06:11Z 2009-10-03T12:07:38Z <p>Can the iPhone SDK take advantage of the iPhone's proximity sensors? If so, why hasn't anyone taken advantage of them? I could picture a few decent uses.</p> <p>For example, in a racing game, you could put your finger on the proximity sensor to go instead of taking up screen real-estate with your thumb. Of course though, if this was your only option, then iPod touch users wouldn't be able to use the application.</p> <p>Does the proximity sensor tell how close you are, or just that something is in front of it?</p> http://stackoverflow.com/questions/269676/how-can-i-cause-a-deadlock-in-mysql-for-testing-purposes 4 How can I Cause a Deadlock in MySQL for Testing Purposes Greg 2008-11-06T18:06:13Z 2009-09-23T21:42:49Z <p>I want to make my Python library working with MySQLdb be able to detect deadlocks and try again. I believe I've coded a good solution, and now I want to test it.</p> <p>Any ideas for the simplest queries I could run using MySQLdb to create a deadlock condition would be?</p> <p>system info:</p> <ul> <li>MySQL 5.0.19 </li> <li>Client 5.1.11 </li> <li>Windows XP</li> <li>Python 2.4 / MySQLdb 1.2.1 p2</li> </ul> http://stackoverflow.com/questions/735545/django-forms-how-to-access-data-when-form-isvalid-is-false 3 Django Forms - How to access data when form.is_valid() is false Greg 2009-04-09T19:16:03Z 2009-09-17T18:36:49Z <p>When I have a valid Django form, I can access the data with form.cleaned_data. But how do I get at the data a user entered when the form is not valid i.e., form.is_valid is false.</p> <p>I'm trying to access forms within a form set, so form.data seems to just give me a mess.</p> http://stackoverflow.com/questions/1423041/what-python-web-frameworks-work-well-with-cgi-e-g-on-nearlyfreespeech-net/1423207#1423207 2 Answer by Greg for What python web frameworks work well with CGI (e.g. on nearlyfreespeech.net)? Greg 2009-09-14T18:34:18Z 2009-09-14T18:34:18Z <p>I got web.py to work on nearly free speech a few years ago by fooling with its WSGI stuff to run on CGI. It was just slightly too slow to be usable though.</p> <p>I've made a few Python web applications hosted on nearly free speech just using the CGI module, and they are actually plenty fast even with high traffic. Example: <a href="http://www.gigbayes.com" rel="nofollow">www.gigbayes.com</a>.</p> http://stackoverflow.com/questions/205220/whats-the-compiler-book-people-are-talking-about-when-they-say-the-dragon-book 3 What's the Compiler Book People are talking about when They say the "Dragon" book? Greg 2008-10-15T15:41:08Z 2009-08-24T15:59:01Z <p>Also is there a better book you'd recommend for learning about compilers, or is that the one to get?</p> http://stackoverflow.com/questions/366899/new-iphone-app-how-to-choose-which-xcode-template-to-use 4 New iPhone App - How to Choose which Xcode Template to Use? Greg 2008-12-14T19:43:21Z 2009-08-21T18:44:30Z <p>In general I'd like to understand which templates to use when, when I'm making new iPhone apps. Could anyone offer some guidelines, tips, rules-of-thumb?</p> <p>Also, how much should I agonize over this? If I start off with the wrong one, can I add the missing pieces manually, is it hard?</p> <p>For reference here are the choices I'm seeing:</p> <ul> <li>Navigation-Based Application </li> <li>OpenGL ES Application </li> <li>Tab Bar Application </li> <li>Utility Application </li> <li>View-Based Application </li> <li>Window-Based Application</li> </ul> http://stackoverflow.com/questions/104612/run-mysqldump-without-locking-tables 4 Run MySQLDump without Locking Tables Greg 2008-09-19T19:07:09Z 2009-08-11T22:20:37Z <p>I want to copy a live production database into my local development database. Is there a way to do this without locking the production database?</p> <p>I'm currently using:</p> <pre><code>mysqldump -u root --password=xxx -h xxx my_db1 | mysql -u root --password=xxx -h localhost my_db1 </code></pre> <p>But it's locking each table as it runs.</p> http://stackoverflow.com/questions/1246963/how-to-use-the-lightbox-plugin-colorbox/1249229#1249229 0 Answer by Greg for How to use the lightbox plugin colorbox? Greg 2009-08-08T16:05:48Z 2009-08-08T16:10:54Z <p>jyoseph's answer was on the right track. I also had to make the div visible before it would show up (otherwise it just shows a black screen). and then I had to hide the div after the user closes the light box.</p> <p>Note: I also had to edit the css file to point to the directory where I put my images.</p> <p>Here's my final code:</p> <pre><code>$(document).ready(function(){ $('#div_id_i_want_to_show').show(); $.fn.colorbox({'href':'#div_id_i_want_to_show', 'open':true, 'inline':true, 'width':'600px', 'height':'600px'}); $().bind('cbox_closed', function(){ $('#div_id_i_want_to_show').hide(); }); }); </code></pre> http://stackoverflow.com/questions/112970/python-when-to-use-file-vs-open 12 Python - When to use file vs open Greg 2008-09-22T03:04:14Z 2009-08-06T11:44:43Z <p>What's the difference between file and open in Python? When should I use which one? (Say I'm in 2.5)</p> http://stackoverflow.com/questions/313135/iphone-documentation-can-i-watch-the-getting-started-videos-from-linux 0 iPhone Documentation - Can I Watch the Getting Started Videos from Linux? Greg 2008-11-23T23:54:47Z 2009-08-03T22:07:55Z <p>On the Apple iPhone developer center they have some videos such as "Introduction to the iPhone SDK", "iPhone Development Tools Overview", etc. </p> <p>Problem is my mac hasn't arrived yet. Is there any way I can watch these videos on my Linux system? </p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt 5 How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-19T22:28:46Z 2009-07-31T18:26:43Z <p>I'm making a program in Python to be distributed to windows users via an installer.</p> <p>The program needs to be able to download a file every day encrypted with the user's public key and then decrypt it.</p> <p>So I need to find a Python library that will let me generate public and private PGP keys, and also decrypt files encrypted with the public key.</p> <p>Is this something pyCrypto will do (documentation is nebulous)? Are there other pure Python libraries? How about a standalone command line tool in any language?</p> <p>All I saw so far was GNUPG but installing that on Windows does stuff to the registry and throws dll's everywhere, and then I have to worry about whether the user already has this installed, how to backup their existing keyrings, etc. I'd rather just have a python library or command line tool and mange the keys myself.</p> <p>Update: pyME might work but it doesn't seem to be compatible with Python 2.4 which I have to use.</p> http://stackoverflow.com/questions/1203237/can-you-make-a-django-form-set-validate-the-initial-data 0 Can you Make a Django form set validate the initial data? Greg 2009-07-29T21:40:45Z 2009-07-29T21:51:03Z <p>Here's an example:</p> <pre><code>from django import forms class ArticleForm(forms.Form): title = forms.CharField() pub_date = forms.DateField() from django.forms.formsets import formset_factory ArticleFormSet = formset_factory(ArticleForm) formset = ArticleFormSet(initial=my_data) </code></pre> <p>So 'my_data' in the example is the data I want to form to show when it is first loaded before any user input. But I'd like to go ahead and run the form's validation on the data so the user can see if there are any existing errors before they edit the data.</p> <p>I tried doing this:</p> <pre><code>formset = ArticleFormSet(initial=my_data) formset.is_valid() </code></pre> <p>But it didn't help.</p> http://stackoverflow.com/questions/350799/how-does-django-know-the-order-to-render-form-fields 7 How does Django Know the Order to Render Form Fields? Greg 2008-12-08T20:37:44Z 2009-07-28T00:12:20Z <p>If I have a Django form such as:</p> <pre><code>class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField() sender = forms.EmailField() </code></pre> <p>And I call the as_table() method of an instance of this form, Django will render the fields as the same order as specified above.</p> <p>My question is how does Django know the order that class variables where defined? </p> <p>(Also how do I override this order, for example when I want to add a field from the classe's <strong>init</strong> method?)</p> http://stackoverflow.com/questions/1166317/python-textwrap-library-how-to-preserve-line-breaks 1 Python textwrap Library - How to Preserve Line Breaks? Greg 2009-07-22T15:55:52Z 2009-07-22T16:09:41Z <p>When using Python's textwrap library, how can I turn this:</p> <pre><code>short line, long line xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </code></pre> <p>into this:</p> <pre><code>short line, long line xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxx </code></pre> <p>I tried:</p> <pre><code>w = textwrap.TextWrapper(width=90,break_long_words=False) body = '\n'.join(w.wrap(body)) </code></pre> <p>But I get:</p> <pre><code>short line, long line xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </code></pre> <p>(spacing not exact in my examples)</p> http://stackoverflow.com/questions/1166317/python-textwrap-library-how-to-preserve-line-breaks/1166398#1166398 1 Answer by Greg for Python textwrap Library - How to Preserve Line Breaks? Greg 2009-07-22T16:09:25Z 2009-07-22T16:09:25Z <p>It looks like it doesn't support that. This code will extend it to do what I need though:</p> <p><a href="http://code.activestate.com/recipes/358228/" rel="nofollow">http://code.activestate.com/recipes/358228/</a></p> http://stackoverflow.com/questions/827301/iphone-application-how-can-one-view-call-a-method-in-another-view 0 iPhone Application - How can one View call a method in another View? Greg 2009-05-05T22:58:25Z 2009-07-17T20:30:04Z <p>I'm making a simple tab bar iPhone application. It has two tabs, one with a UIWebView and the other with a few text fields to hold settings, and a button to save the settings.</p> <p>What I want to do is reload the UIWebView when the user clicks save on the settings tab/view. I already have it saving the settings, I just need to figure out how to put in a call to make the UIWebView refresh itself.</p> <p>I'm confused about how a view can send messages to another view.</p> http://stackoverflow.com/questions/1093598/pyserial-how-to-read-last-line-sent-from-serial-device 1 pyserial - How to Read Last Line Sent from Serial Device Greg 2009-07-07T17:16:43Z 2009-07-17T18:40:17Z <p>So I have an Arduino connected to my Windows XP computer. It's just running a loop, sending a value over the serial port back to the computer every 100ms. </p> <p>I want to make a Python script that will read from the serial port only every few seconds, so I want it to just see the last thing sent from the Arduino.</p> <p>How do you do this in Pyserial?</p> <p>Here's the code I tried which does't work. It reads the lines sequentially.</p> <pre><code>import serial import time ser = serial.Serial('com4',9600,timeout=1) while 1: time.sleep(10) print ser.readline() #how to get most recent line sent from device? </code></pre> http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows 0 Python - Subprocess - How to call a Piped command in Windows? Greg 2009-06-25T22:04:16Z 2009-06-25T22:26:12Z <p>How do I run this command with subprocess?</p> <p>I tried:</p> <pre><code>proc = subprocess.Popen( '''ECHO bosco|"C:\Program Files\GNU\GnuPG\gpg.exe" --batch --passphrase-fd 0 --output "c:\docume~1\usi\locals~1\temp\tmptlbxka.txt" --decrypt "test.txt.gpg"''', stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, ) stdout_value, stderr_value = proc.communicate() </code></pre> <p>but got:</p> <pre><code>Traceback (most recent call last): ... File "C:\Python24\lib\subprocess.py", line 542, in __init__ errread, errwrite) File "C:\Python24\lib\subprocess.py", line 706, in _execute_child startupinfo) WindowsError: [Errno 2] The system cannot find the file specified </code></pre> <p>Things I've noticed:</p> <ol> <li>Running the command on the windows console works fine. </li> <li>If I remove the ECHO bosco| part, it runs fine the the popen call above. So I think this problem is related to echo or |.</li> </ol> http://stackoverflow.com/questions/1030297/how-to-make-a-pyme-python-library-run-in-python-2-4-on-windows 0 How to Make a PyMe (Python library) Run in Python 2.4 on Windows? Greg 2009-06-23T01:59:42Z 2009-06-23T02:12:48Z <p>I want to run this <a href="http://pyme.sourceforge.net/" rel="nofollow">library</a> on Python 2.4 in Windows XP.</p> <p>I installed the pygpgme-0.8.1.win32.exe file but got this:</p> <pre><code>&gt;&gt;&gt; from pyme import core Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in ? File "C:\Python24\Lib\site-packages\pyme\core.py", line 22, in ? import pygpgme File "C:\Python24\Lib\site-packages\pyme\pygpgme.py", line 7, in ? import _pygpgme ImportError: DLL load failed: The specified module could not be found. </code></pre> <p>And then this pop up comes up</p> <pre><code>--------------------------- python.exe - Unable To Locate Component --------------------------- This application has failed to start because python25.dll was not found. Re-installing the application may fix this problem. --------------------------- OK </code></pre> <p><hr /></p> <p>Do I need to "compile" it for Python 2.4? How do I do that? </p> http://stackoverflow.com/questions/441609/access-to-iphones-bluetooth-abilities-via-sdk 3 Access to iPhone's BlueTooth Abilities via SDK? Greg 2009-01-14T01:40:35Z 2009-06-20T00:38:28Z <p>Is there a way to use Bluetooth from the iPhone SDK? I have some cool ideas for apps involving bluetooth, but I haven't turned up anything searching.</p> http://stackoverflow.com/questions/1640204/django-forms-can-the-initial-value-of-one-field-be-dependant-on-another Comment by Greg on Django Forms - Can the initial value of one field be dependant on another? Greg 2009-10-29T12:44:20Z 2009-10-29T12:44:20Z lemonad, this would be at form creation time, depending what I'm feeding the form for initial. http://stackoverflow.com/questions/1203237/can-you-make-a-django-form-set-validate-the-initial-data/1203279#1203279 Comment by Greg on Can you Make a Django form set validate the initial data? Greg 2009-07-30T12:34:39Z 2009-07-30T12:34:39Z That wouldn't work because the data when submitted by the user is one big dict with each form number e.g., {'form-386-pubdate': '2009-10-31 00:00:00.00', 'form-153-title': '135', 'form-123-title': '123', ... formsets are a little different than normal forms. http://stackoverflow.com/questions/1093598/pyserial-how-to-read-last-line-sent-from-serial-device/1093662#1093662 Comment by Greg on pyserial - How to Read Last Line Sent from Serial Device Greg 2009-07-07T18:20:06Z 2009-07-07T18:20:06Z thanks, that works great! I gave you the answer button. http://stackoverflow.com/questions/1093598/pyserial-how-to-read-last-line-sent-from-serial-device/1093661#1093661 Comment by Greg on pyserial - How to Read Last Line Sent from Serial Device Greg 2009-07-07T17:34:17Z 2009-07-07T17:34:17Z So last_received will always have what I need? Is there a way to do it with readline? http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1053752#1053752 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-28T16:19:31Z 2009-06-28T16:19:31Z Also be sure to update us here when you release your final code. http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1053752#1053752 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-28T16:17:57Z 2009-06-28T16:17:57Z Thanks that sounds perfect. I had no idea I could just pull the exe out of gpg. Where will it put the keyring? Will this method cause any problems if the user already has gpg installed? Any chance I could just see how your code does key generation, and key imports? http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows/1046522#1046522 Comment by Greg on Python - Subprocess - How to call a Piped command in Windows? Greg 2009-06-25T22:43:37Z 2009-06-25T22:43:37Z Thanks, that worked! http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows/1046512#1046512 Comment by Greg on Python - Subprocess - How to call a Piped command in Windows? Greg 2009-06-25T22:19:52Z 2009-06-25T22:19:52Z That part seems to be fine, if I remove the &quot;echo ..|&quot; section it does run. http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows Comment by Greg on Python - Subprocess - How to call a Piped command in Windows? Greg 2009-06-25T22:15:13Z 2009-06-25T22:15:13Z Yes, it runs from the windows dos console. http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1042139#1042139 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-25T18:05:55Z 2009-06-25T18:05:55Z Hmm, it looked promising but I don't see how to generate keys. http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1037087#1037087 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-25T17:27:49Z 2009-06-25T17:27:49Z I don't see a way to generate keys, or accept another party's public key to encrypt data with. Any ideas? http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1039320#1039320 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-25T16:50:11Z 2009-06-25T16:50:11Z PyMe was this issue: <a href="http://stackoverflow.com/questions/1030297/how-to-make-a-pyme-python-library-run-in-python-2-4-on-windows" rel="nofollow" title="how to make a pyme python library run in python 2 4 on windows">stackoverflow.com/questions/1030297/&hellip;</a> http://stackoverflow.com/questions/1030297/how-to-make-a-pyme-python-library-run-in-python-2-4-on-windows/1030335#1030335 Comment by Greg on How to Make a PyMe (Python library) Run in Python 2.4 on Windows? Greg 2009-06-23T03:04:38Z 2009-06-23T03:04:38Z Is there a way to compile it with MingW, or is that even harder? I need to be able to pack this library up with py2exe when I'm done so it has to be using the same Python version all the other libraries are installed for. So it might be possible to upgrade everything to Python 2.5 but still a lot of work. http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1020334#1020334 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-19T23:18:49Z 2009-06-19T23:18:49Z Pyme might work, but the documentation is a beast. I'll try to muddle through it. http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1020334#1020334 Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-19T22:42:18Z 2009-06-19T22:42:18Z I saw those. I feel like that requires me to still install GNUPG? Am I just reading it wrong? Do I just need to compile it, and then I can ship it with few or no dependencies?