A rule for your twitlist/mailing list

2020-07-14 Thread Nomen Nescio
Where path includes "google.com" and subject includes "solutions" or "test", delete. 99 percent of the junk just . gone . feels so good I wish Google would still let you subscribe to the newsgroup and recieve updates in your inbox - that way I can mark the testbanks as "spam"

a few questions about scrapy

2012-09-18 Thread Nomen Nescio
I've installed scrapy and gotten a basic set-up working, and I have a few odd questions that I haven't been able to find in the documentation. I plan to run it occasionally from the command line or as a cron job, to scrape new content from a few sites. To avoid duplication, I have in memory two

scope of generators, class variables, resulting in global na

2010-02-24 Thread Nomen Nescio
Hello, Can someone help me understand what is wrong with this example? class T: A = range(2) B = range(4) s = sum(i*j for i in A for j in B) It produces the exception: type 'exceptions.NameError': global name 'j' is not defined The exception above is especially confusing since the

python is great

2009-01-06 Thread Nomen Nescio
python is great. -- http://mail.python.org/mailman/listinfo/python-list

Re: Finding Return Code From GPG

2006-07-13 Thread Nomen Nescio
On Sat, 08 Jul 2006 00:26:06 +0200, Piet van Oostrum wrote: NN What is still not working is the display from gpg. It shows up on the NN monitor screen like this: NN gpg: Signature made Tue 04 Jul 2006 08:04:10 AM CET using DSA key ID NN 06B09BA4 NN gpg: Good signature from Boz Scraggs [EMAIL

Re: Finding Return Code From GPG

2006-07-07 Thread Nomen Nescio
On Tue, 04 Jul 2006 19:00:23 +0200, Dennis Benzinger wrote: Nomen Nescio wrote: I'm running gpg in python to verify a signature. I can see that it is working, because gpg is displaying the results. But I need a way to let the python script know this. According to the gpg manual

Finding Return Code From GPG

2006-07-04 Thread Nomen Nescio
I'm running gpg in python to verify a signature. I can see that it is working, because gpg is displaying the results. But I need a way to let the python script know this. According to the gpg manual there is a return code from gpg of 0 if the verify is good and 1 if it is bad. Can anyone tell me