User Greg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T17:09:41Zhttp://stackoverflow.com/feeds/user/13009http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1246963/how-to-use-the-lightbox-plugin-colorbox1How to use the lightbox plugin colorbox?Greg2009-08-07T20:56:30Z2009-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-within1Make <h1> tag the same maximum width regardless of capitalization of text withinGreg2008-10-03T21:33:47Z2009-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-encode5Python UnicodeDecodeError - Am I misunderstanding encode?Greg2008-12-15T15:57:24Z2009-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>>>> 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
Traceback (most recent call last):
File "<interactive input>", 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-wrong0Python Unit Tests - Am I using SetUp wrong?Greg2009-11-12T21:01:39Z2009-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-row9jQuery - How to Use slideDown (or show) function on a table row?Greg2009-01-21T22:36:54Z2009-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-another0Django Forms - Can the initial value of one field be dependant on another?Greg2009-10-28T21:22:56Z2009-10-28T22:22:49Z
<p>Example, for this form:</p>
<pre><code>>>> 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#15868260Answer by Greg for MySQL Query Browser - using variablesGreg2009-10-19T03:23:13Z2009-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-results0Python datetime subtraction - wrong results?Greg2009-10-16T00:04:46Z2009-10-16T00:11:05Z
<p>I must be doing something wrong here, any ideas?</p>
<pre><code>>>> (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-hyphens2HTML Tables - How to make IE not break lines at hyphensGreg2009-10-14T20:05:38Z2009-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#15688910Answer by Greg for Javascript RegExp - Why Isn't this matching?Greg2009-10-14T20:46:07Z2009-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-sensor5iPhone Proximity SensorGreg2008-10-03T03:06:11Z2009-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-purposes4How can I Cause a Deadlock in MySQL for Testing PurposesGreg2008-11-06T18:06:13Z2009-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-false3Django Forms - How to access data when form.is_valid() is falseGreg2009-04-09T19:16:03Z2009-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#14232072Answer by Greg for What python web frameworks work well with CGI (e.g. on nearlyfreespeech.net)?Greg2009-09-14T18:34:18Z2009-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-book3What's the Compiler Book People are talking about when They say the "Dragon" book?Greg2008-10-15T15:41:08Z2009-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-use4New iPhone App - How to Choose which Xcode Template to Use?Greg2008-12-14T19:43:21Z2009-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-tables4Run MySQLDump without Locking TablesGreg2008-09-19T19:07:09Z2009-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#12492290Answer by Greg for How to use the lightbox plugin colorbox?Greg2009-08-08T16:05:48Z2009-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-open12Python - When to use file vs openGreg2008-09-22T03:04:14Z2009-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-linux0iPhone Documentation - Can I Watch the Getting Started Videos from Linux?Greg2008-11-23T23:54:47Z2009-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-decrypt5How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-19T22:28:46Z2009-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-data0Can you Make a Django form set validate the initial data?Greg2009-07-29T21:40:45Z2009-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-fields7How does Django Know the Order to Render Form Fields?Greg2008-12-08T20:37:44Z2009-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-breaks1Python textwrap Library - How to Preserve Line Breaks?Greg2009-07-22T15:55:52Z2009-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#11663981Answer by Greg for Python textwrap Library - How to Preserve Line Breaks?Greg2009-07-22T16:09:25Z2009-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-view0iPhone Application - How can one View call a method in another View?Greg2009-05-05T22:58:25Z2009-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-device1pyserial - How to Read Last Line Sent from Serial DeviceGreg2009-07-07T17:16:43Z2009-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-windows0Python - Subprocess - How to call a Piped command in Windows?Greg2009-06-25T22:04:16Z2009-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-windows0How to Make a PyMe (Python library) Run in Python 2.4 on Windows?Greg2009-06-23T01:59:42Z2009-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>>>> from pyme import core
Traceback (most recent call last):
File "<stdin>", 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-sdk3Access to iPhone's BlueTooth Abilities via SDK?Greg2009-01-14T01:40:35Z2009-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-anotherComment by Greg on Django Forms - Can the initial value of one field be dependant on another?Greg2009-10-29T12:44:20Z2009-10-29T12:44:20Zlemonad, 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#1203279Comment by Greg on Can you Make a Django form set validate the initial data?Greg2009-07-30T12:34:39Z2009-07-30T12:34:39ZThat 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#1093662Comment by Greg on pyserial - How to Read Last Line Sent from Serial DeviceGreg2009-07-07T18:20:06Z2009-07-07T18:20:06Zthanks, 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#1093661Comment by Greg on pyserial - How to Read Last Line Sent from Serial DeviceGreg2009-07-07T17:34:17Z2009-07-07T17:34:17ZSo 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#1053752Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-28T16:19:31Z2009-06-28T16:19:31ZAlso 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#1053752Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-28T16:17:57Z2009-06-28T16:17:57ZThanks 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#1046522Comment by Greg on Python - Subprocess - How to call a Piped command in Windows?Greg2009-06-25T22:43:37Z2009-06-25T22:43:37ZThanks, that worked!http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows/1046512#1046512Comment by Greg on Python - Subprocess - How to call a Piped command in Windows?Greg2009-06-25T22:19:52Z2009-06-25T22:19:52ZThat part seems to be fine, if I remove the "echo ..|" section it does run.http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windowsComment by Greg on Python - Subprocess - How to call a Piped command in Windows?Greg2009-06-25T22:15:13Z2009-06-25T22:15:13ZYes, it runs from the windows dos console.http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1042139#1042139Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-25T18:05:55Z2009-06-25T18:05:55ZHmm, 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#1037087Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-25T17:27:49Z2009-06-25T17:27:49ZI 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#1039320Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-25T16:50:11Z2009-06-25T16:50:11ZPyMe 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/…</a>
http://stackoverflow.com/questions/1030297/how-to-make-a-pyme-python-library-run-in-python-2-4-on-windows/1030335#1030335Comment by Greg on How to Make a PyMe (Python library) Run in Python 2.4 on Windows?Greg2009-06-23T03:04:38Z2009-06-23T03:04:38ZIs 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#1020334Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-19T23:18:49Z2009-06-19T23:18:49ZPyme 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#1020334Comment by Greg on How to do PGP in Python (generate keys, encrypt/decrypt)Greg2009-06-19T22:42:18Z2009-06-19T22:42:18ZI 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?