Senior Python Applications Developer/Leader. Michigan contract @$90/hr. Skills: Agile, Java, PHP, HTML5, CSS3, JavaScript, jQuery, Amazon Web Services (AWS)

2015-03-04 Thread Leigh Haugen
Senior Python Applications Developer/Leader. Key Skills: Agile, Java, PHP, HTML5, CSS3, JavaScript, jQuery, Amazon Web Services (AWS) Direct client. H1B is OK. Ann Arbor, Michigan. Initial six month contract, probably good through the end of 2015. We can pay up to $90/hr. & possibly hi

Web services from python

2014-10-27 Thread loial
What is the best package to use with python 2.6 to access Web services. Is it ZSI? Can anyone recommend a good tutorial, preferably with a sandbox web service? -- https://mail.python.org/mailman/listinfo/python-list

Re: SOAP web services using python. Would like to change the Envelope Document using MessagePlugin before sending it using suds

2013-02-19 Thread dieter
sarat.devin...@gmail.com writes: > My current SOAP request sent via suds.client looks like this: > > > > > > > > Test > > > > > > > This request fails on my server. If i take the same XML request and massage > it and

SOAP web services using python. Would like to change the Envelope Document using MessagePlugin before sending it using suds

2013-02-17 Thread sarat . devineni
Hi , My current SOAP request sent via suds.client looks like this: Test This request fails on my server. If i take the same XML request and massage it and send it visa SOAPUI, it works fine. What I did was

Re: Questions about GIL and web services from a n00b

2011-04-20 Thread Chris H
On 4/19/11 3:48 AM, Lamont Nelson wrote: > 1. Are you sure you want to use python because threading is not good due to the Global Lock (GIL)? Is this really an issue for multi-threaded web services as seems to be indicated by the articles from a Google search? If not, how do you avoid t

Re: Questions about GIL and web services from a n00b

2011-04-19 Thread Lamont Nelson
> 1. Are you sure you want to use python because threading is not good due > to the Global Lock (GIL)?  Is this really an issue for multi-threaded > web services as seems to be indicated by the articles from a Google > search?  If not, how do you avoid this issue in a multi-threaded

Re: Questions about GIL and web services from a n00b

2011-04-18 Thread Hank Fay
Today I just happened to watch this session from PyCon 2011 on gevent and gunicorn: http://blip.tv/file/4883016 gevent uses greenlet, fwiw. I found it informative, but then I find most things informative. H -- http://mail.python.org/mailman/listinfo/python-list

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread sturlamolden
On Apr 17, 5:15 pm, Ian wrote: > > 5) Even in CPython, I/O-bound processes are not slowed significantly > > by the GIL.  It's really CPU-bound processes that are. > > Its ONLY when you have two or more CPU bound threads that you may have > issues. And when you have a CPU bound thread, it's time

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread sturlamolden
On Apr 15, 6:33 pm, Chris H wrote: > 1. Are you sure you want to use python because threading is not good due > to the Global Lock (GIL)?  Is this really an issue for multi-threaded > web services as seems to be indicated by the articles from a Google > search?  If not, how do yo

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread Ian
On 15/04/2011 20:17, Dan Stromberg wrote: On Fri, Apr 15, 2011 at 9:33 AM, Chris H wrote: 1. Are you sure you want to use python because threading is not good due to the Global Lock (GIL)? Is this really an issue for multi-threaded web services as seems to be indicated by the articles from

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread sturlamolden
On Apr 17, 12:10 am, Michael Torrie wrote: > Many GUI toolkits are single-threaded.  And in fact with GTK and MFC you > can't (or shouldn't) call GUI calls from a thread other than the main > GUI thread. Most of them (if not all?) have a single GUI thread, and a mechanism by which to synchronize

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread sturlamolden
On Apr 16, 4:59 am, David Cournapeau wrote: > My experience is that if you are CPU bound, asynchronous programming > in python can be  more a curse than a blessing, mostly because the > need to insert "scheduling points" at the right points to avoid > blocking and because profiling becomes that m

Re: Questions about GIL and web services from a n00b

2011-04-17 Thread sturlamolden
On Apr 15, 6:33 pm, Chris H wrote: > 1. Are you sure you want to use python because threading is not good due > to the Global Lock (GIL)?  Is this really an issue for multi-threaded > web services as seems to be indicated by the articles from a Google > search?  If not, how do yo

Re: Questions about GIL and web services from a n00b

2011-04-16 Thread Michael Torrie
On 04/16/2011 02:53 PM, Jean-Paul Calderone wrote: > On Apr 16, 10:44 am, a...@pythoncraft.com (Aahz) wrote: >> In article >> , >> Raymond Hettinger wrote: >> >> >> >>> Threading is really only an answer if you need to share data between >>> threads, if you only have limited scaling needs, and a

Re: Questions about GIL and web services from a n00b

2011-04-16 Thread Jean-Paul Calderone
On Apr 16, 10:44 am, a...@pythoncraft.com (Aahz) wrote: > In article , > Raymond Hettinger   wrote: > > > > >Threading is really only an answer if you need to share data between > >threads, if you only have limited scaling needs, and are I/O bound > >rather than CPU bound > > Threads are also usefu

Re: Questions about GIL and web services from a n00b

2011-04-16 Thread Chris Angelico
On Sun, Apr 17, 2011 at 12:44 AM, Aahz wrote: > In article , > Raymond Hettinger   wrote: >> >>Threading is really only an answer if you need to share data between >>threads, if you only have limited scaling needs, and are I/O bound >>rather than CPU bound > > Threads are also useful for user inte

Re: Questions about GIL and web services from a n00b

2011-04-16 Thread Aahz
In article , Raymond Hettinger wrote: > >Threading is really only an answer if you need to share data between >threads, if you only have limited scaling needs, and are I/O bound >rather than CPU bound Threads are also useful for user interaction (i.e. GUI apps). I think that "limited scaling"

Re: Questions about GIL and web services from a n00b

2011-04-15 Thread David Cournapeau
On Sat, Apr 16, 2011 at 10:05 AM, Raymond Hettinger wrote: >> > Is the limiting factor CPU? >> >> > If it isn't (i.e. you're blocking on IO to/from a web service) then the >> > GIL won't get in your way. >> >> > If it is, then run as many parallel *processes* as you have cores/CPUs >> > (assuming

Re: Questions about GIL and web services from a n00b

2011-04-15 Thread Raymond Hettinger
> > Is the limiting factor CPU? > > > If it isn't (i.e. you're blocking on IO to/from a web service) then the > > GIL won't get in your way. > > > If it is, then run as many parallel *processes* as you have cores/CPUs > > (assuming you're designing an application that can have multiple > > instance

Re: Questions about GIL and web services from a n00b

2011-04-15 Thread Dan Stromberg
On Fri, Apr 15, 2011 at 9:33 AM, Chris H wrote: > 1. Are you sure you want to use python because threading is not good due to > the Global Lock (GIL)?  Is this really an issue for multi-threaded web > services as seems to be indicated by the articles from a Google search?  If > not

Re: Questions about GIL and web services from a n00b

2011-04-15 Thread Tim Wintle
On Fri, 2011-04-15 at 12:33 -0400, Chris H wrote: > > 1. Are you sure you want to use python because threading is not good > due to the Global Lock (GIL)? Is this really an issue for > multi-threaded web services as seems to be indicated by the articles > from a Google search?

Re: Questions about GIL and web services from a n00b

2011-04-15 Thread Chris H
On 4/15/11 1:03 PM, Tim Wintle wrote: On Fri, 2011-04-15 at 12:33 -0400, Chris H wrote: 1. Are you sure you want to use python because threading is not good due to the Global Lock (GIL)? Is this really an issue for multi-threaded web services as seems to be indicated by the articles from a

Questions about GIL and web services from a n00b

2011-04-15 Thread Chris H
T based API and backend database.I have had the following comments/questions come to me: 1. Are you sure you want to use python because threading is not good due to the Global Lock (GIL)? Is this really an issue for multi-threaded web services as seems to be indicated by the article

Re: How to make a web services in python ???

2010-09-20 Thread Ian
On 20/09/2010 16:09, Ariel wrote: Soap web services I think. On Fri, Sep 17, 2010 at 5:35 PM, Hidura <mailto:hid...@gmail.com>> wrote: What kind of web-service you have in mind 2010/9/17, Ariel mailto:isaacr...@gmail.com>>: > Hi everybody, I need

Re: How to make a web services in python ???

2010-09-20 Thread Simon Brunning
On 20 September 2010 16:09, Ariel wrote: > Soap web services I think. I think the cool kids would be using <https://fedorahosted.org/suds/>, but for the fact that the cool kids all build REST (<http://oreilly.com/catalog/9780596805838>) rather than SOAP these days. -- Cheers, Si

Re: How to make a web services in python ???

2010-09-20 Thread Ariel
Soap web services I think. On Fri, Sep 17, 2010 at 5:35 PM, Hidura wrote: > What kind of web-service you have in mind > > 2010/9/17, Ariel : > > Hi everybody, I need some help to find documentation about how to > implements > > web services in python,

Re: How to make a web services in python ???

2010-09-17 Thread Hidura
What kind of web-service you have in mind 2010/9/17, Ariel : > Hi everybody, I need some help to find documentation about how to implements > web services in python, could you help me please ??? > Regards > Thanks in advance > Ariel > -- Enviado desde mi dispositivo móvil

How to make a web services in python ???

2010-09-17 Thread Ariel
Hi everybody, I need some help to find documentation about how to implements web services in python, could you help me please ??? Regards Thanks in advance Ariel -- http://mail.python.org/mailman/listinfo/python-list

Re: Web Services examples using "raw" xml?

2009-08-30 Thread John Gordon
In <4a92ee38$0$1627$742ec...@news.sonic.net> John Nagle writes: > John Gordon wrote: > > I'm developing a program that will use web services, which I have never > > used before. > Web services in general, or some Microsoft interface? Microsoft. Exchan

Re: Web Services examples using "raw" xml?

2009-08-26 Thread Piet van Oostrum
>>>>> "Diez B. Roggisch" (DBR) wrote: >DBR> John Gordon schrieb: >>> I'm developing a program that will use web services, which I have never >>> used before. >>> >>> There are several tutorials out there that advise you to

Re: Web Services examples using "raw" xml?

2009-08-25 Thread Stefan Behnel
John Gordon wrote: > Any suggestions? Well, yes, see the link I posted. http://effbot.org/zone/element-soap.htm That might actually be the easiest way to get your stuff done, and it avoids external dependencies (well, except for ElementTree, if you continue to use Python <= 2.4). Stefan -- htt

Re: Web Services examples using "raw" xml?

2009-08-25 Thread John Gordon
In <4a936e84$0$31337$9b4e6...@newsspool4.arcor-online.net> Stefan Behnel writes: > > I tried WSDL.Proxy() from the SOAPpy package and eventually end up > > with this error: > > > > xml.parsers.expat.ExpatError: not well-formed (invalid token): line 1, > > column 6 > Is that while parsing the

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Stefan Behnel
John Gordon wrote: > I'm developing a program that will use web services, which I have never > used before. > > There are several tutorials out there that advise you to get the WSDL > and then call a method (such as wsdl2py) that inspects the wsdl and > automagically gener

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Asun Friere
On Aug 25, 5:41 am, John Gordon wrote: > >   File "/usr/lib/python2.3/site-packages/suds/client.py", line 59 >     @classmethod >     ^ > SyntaxError: invalid syntax > If memory serves me correctly, decorators were introduced in python2.4. That would account for your SyntaxError. -- http://mai

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Diez B. Roggisch
John Gordon schrieb: I'm developing a program that will use web services, which I have never used before. There are several tutorials out there that advise you to get the WSDL and then call a method (such as wsdl2py) that inspects the wsdl and automagically generates the python classe

Re: Web Services examples using "raw" xml?

2009-08-24 Thread John Nagle
John Gordon wrote: I'm developing a program that will use web services, which I have never used before. Web services in general, or some Microsoft interface? John Nagle -- http://mail.python.org/mailman/listinfo/python-list

Web Services examples using "raw" xml?

2009-08-24 Thread John Gordon
I'm developing a program that will use web services, which I have never used before. There are several tutorials out there that advise you to get the WSDL and then call a method (such as wsdl2py) that inspects the wsdl and automagically generates the python classes and methods you nee

Interface to Exchange Calendar via web services

2009-08-13 Thread John Gordon
I have a python app that needs to look up a person's Exchage Calendar entries to see if they are currently available. Does anyone have any code examples for communicating with EWS (Exchange Web Services)? I've found some code in Java and CSharp to do this, but none in python so fa

Re: Web services

2009-01-26 Thread Chris Rebert
On Mon, Jan 26, 2009 at 8:11 AM, loial wrote: > I am trying to learn about web services and how to interface with a > 3rd party web service from python. > > Can anyone point me at an idiots guide/tutorial for someone who is new > to web services? The XML-RPC client module

Web services

2009-01-26 Thread loial
I am trying to learn about web services and how to interface with a 3rd party web service from python. Can anyone point me at an idiots guide/tutorial for someone who is new to web services? -- http://mail.python.org/mailman/listinfo/python-list

web services ssl client

2008-11-28 Thread Luca Tebaldi
Hi, should I build a client for web services that require authentication based on a ca (pem and crt), I'm trying to use soappy but not work... someone have any idea or can tell me where to find a tutorial? tnx a lot! Luca -- skype:luca.tebaldi bookmark: http://del.icio.us/lucatebaldi

Re: High speed web services

2007-12-14 Thread Jarek Zgoda
herbasher pisze: > How do I built highly available and lighting fast Python webservice? Write optimized code and use it in conjunction with twisted.web. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: High speed web services

2007-12-14 Thread Manlio Perillo
Il Fri, 14 Dec 2007 11:07:49 -0800, herbasher ha scritto: > Hello! > > I'm wondering: I'm really not so much into heavy frameworks like Django, > because I need to build a fast, simple python based webservice. > > That is, a request comes in at a certain URL, and I want to utilize > Python to re

Re: High speed web services

2007-12-14 Thread Matt Nordhoff
herbasher wrote: > I'm wondering: I'm really not so much into heavy frameworks like > Django, because I need to build a fast, simple python based > webservice. > > That is, a request comes in at a certain URL, and I want to utilize > Python to respond to that request. > > Ideally, I want the scri

High speed web services

2007-12-14 Thread herbasher
Hello! I'm wondering: I'm really not so much into heavy frameworks like Django, because I need to build a fast, simple python based webservice. That is, a request comes in at a certain URL, and I want to utilize Python to respond to that request. Ideally, I want the script to be "cached" so it d

Re: ZSI, SOAP and .NET web services - problem

2007-03-26 Thread Ravi Teja
On Mar 26, 3:47 pm, Jaroslaw Zabiello <[EMAIL PROTECTED]> wrote: > Dnia Mon, 26 Mar 2007 20:06:28 + (UTC), David E. Konerding DSD staff > napisa³(a): > > > Try fixing your WSDL, then try again. > > The problem is I see no errors in my WSDL. Pythonic implementation of SOAP > is just crapy. > > -

Re: ZSI, SOAP and .NET web services - problem

2007-03-26 Thread Jaroslaw Zabiello
Dnia Mon, 26 Mar 2007 20:06:28 + (UTC), David E. Konerding DSD staff napisał(a): > Try fixing your WSDL, then try again. The problem is I see no errors in my WSDL. Pythonic implementation of SOAP is just crapy. -- Jaroslaw Zabiello http://blog.zabiello.com -- http://mail.python.org/mailman

Re: ZSI, SOAP and .NET web services - problem

2007-03-26 Thread David E. Konerding DSD staff
On 2007-03-22, Jaroslaw Zabiello <[EMAIL PROTECTED]> wrote: > I try to connect to web services (written in C#/.NET) with latest ZSI > 2.0rc3 library. It just does not work. > > from ZSI.ServiceProxy import ServiceProxy > wsdl = 'http://192.168.0.103/NewWebService

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Lawrence Oluyede
Jaroslaw Zabiello <[EMAIL PROTECTED]> wrote: > Why nobody wants to add SOAP to standard Python library? XML-RPC was added > and it works without any problems. I think because SOAP is kinda crappy :-) Did you try soaplib? I've never used it (nor SOAP in a whi

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Jaroslaw Zabiello
Dnia Thu, 22 Mar 2007 22:48:26 +0100, Jarek Zgoda napisał(a): > If you really must write client for this service, go and do it in Ruby, > if it works. I cannot. I am using Pylons framework so I have to use Python. Ruby solves this problem but not others, like its low speed. -- Jaroslaw Zabiello

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Paul Boddie
Jaroslaw Zabiello wrote: > > I tried to use different library - SOAPpy, but I couldn't. It requires > fpconst library which cannot be installed because its server does not > respond at all. Locating fpconst has been quite a challenge in the past, but a search for "fpconst" on Google yielded the Py

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Jarek Zgoda
Jaroslaw Zabiello napisał(a): >> However, it is an interesting question. Ruby has smaller community, >> how could they implement a standard SOAP lib? > > Yes. It is interesting why it is so difficult to make it working for > Python. It is not difficult to write in .NET a client for the service

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Jaroslaw Zabiello
create a > new, secure XML-RPC server in Python within 5 minutes. You can write a > client for it within one minue. It is REALLY simple. I'm using it > continuously. > > In contrast, SOAP is overcomplicated and anything but simple. No one > should create new web se

Re: ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Laszlo Nagy
ew, secure XML-RPC server in Python within 5 minutes. You can write a client for it within one minue. It is REALLY simple. I'm using it continuously. In contrast, SOAP is overcomplicated and anything but simple. No one should create new web services using SOAP. We have enough problems with

ZSI, SOAP and .NET web services - problem

2007-03-22 Thread Jaroslaw Zabiello
I try to connect to web services (written in C#/.NET) with latest ZSI 2.0rc3 library. It just does not work. from ZSI.ServiceProxy import ServiceProxy wsdl = 'http://192.168.0.103/NewWebServices/TemplateInsert.asmx?wsdl' print ServiceProxy(wsdl, tracefile=sys.stdout) "C:\opt\Py

Re: Calling Python Web Services from C#

2007-02-27 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > I have a C# .NET cliente calling a Python web services. I pass two > string values to web service and I wanna receive a string from the > method. > > But, the server side receive my string values and the client side only > display a empty string (&quo

Calling Python Web Services from C#

2007-02-27 Thread jvframework
I have a C# .NET cliente calling a Python web services. I pass two string values to web service and I wanna receive a string from the method. But, the server side receive my string values and the client side only display a empty string (""). I generate a C# Proxy class from the

SOAP web services

2006-08-29 Thread Yusnel Rojas
I'm trying to make the wsdl asociated with this sample but I cannot make it workimport SOAPpydef doUpper(word):    return word.upper()server = SOAPpy.SOAPServer(("", 8000)) server.registerFunction(doUpper)server.registerFunction(who)server.serve_forever()can anyone tell me how to do this?anyone

Re: python soap web services

2006-05-13 Thread Butternut squash
Diez B. Roggisch wrote: > Butternut squash wrote: > >> Is there any reason why there isn't any python library that makes >> using soap as easy as how microsoft .net makes it. >> >> I mean I write rudimentary asmx files call them from a webbrowser. >> The WSDL is generated and then there is docum

Re: python soap web services

2006-05-12 Thread Diez B. Roggisch
Butternut squash wrote: > Is there any reason why there isn't any python library that makes > using soap as easy as how microsoft .net makes it. > > I mean I write rudimentary asmx files call them from a webbrowser. > The WSDL is generated and then there is documentation and a form to > invoke a

Re: python soap web services

2006-05-12 Thread Ravi Teja
> Is there any reason why there isn't any python library that makes > using soap as easy as how microsoft .net makes it. SOAP with Python is easy too in a different sort of way. I don't know about the equivalent for autogenerating WSDL bit as in .NET. #!/usr/bin/env python def hello(): return "

python soap web services

2006-05-11 Thread Butternut squash
Is there any reason why there isn't any python library that makes using soap as easy as how microsoft .net makes it. I mean I write rudimentary asmx files call them from a webbrowser. The WSDL is generated and then there is documentation and a form to invoke a function. When do you think someone

Re: 有關於 Mining google web services : Building applications with the Google API這本書的範例

2006-04-22 Thread pou
I have found the way to solve . So long as alter and establish reading account number and password of the database , finish. Thank you very mush. -- http://mail.python.org/mailman/listinfo/python-list

Re: 有關於 Mining google web services : Building applications with the Google API這本書的範例

2006-04-22 Thread Sybren Stuvel
[EMAIL PROTECTED] enlightened us with: > ?z?n?A > ?O?o?A?e???b???s "Mining Google Web Services >: Building Applications with > the Google API"[EMAIL PROTECTED] 6??"Using SQL Server as a > Database"?? > ?M?B?A???q???w?g?w??SQL Server 2000

Re: Calling Web Services from Python

2006-04-11 Thread Ivan Zuzak
ol in .NET >> Framework) The ZSI and SOAPy packages [1] that i found (should) have >> those functionalities but either have a bug (SOAPy) or either do not >> work for arbitrary web services (ZSI). ... SOAPy : http://soapy.sourceforge.net/ SOAPPy : http://pywebsvcs.sourceforg

Re: Calling Web Services from Python

2006-04-10 Thread Robert Boyd
unctionalities but either have a bug (SOAPy) or either do not > work for arbitrary web services (ZSI). I tried the ZSI wsdl2py script on > a wsdl of one of my services, and the script crashes. I suppose the wsdl > was "too hard" for the script to parse. I've successful

Re: Calling Web Services from Python

2006-04-09 Thread m.banaouas
that i found (should) have > those functionalities but either have a bug (SOAPy) or either do not > work for arbitrary web services (ZSI). > ... -- http://mail.python.org/mailman/listinfo/python-list

Re: Calling Web Services from Python

2006-04-07 Thread John Salerno
g (SOAPy) or either do not > work for arbitrary web services (ZSI). You might want to read this, specifically 12.5 and 12.6 for WSDL: http://diveintopython.org/soap_web_services/index.html It uses SOAPpy, which may or may not be different than SOAPy, depending on if you made a typo or n

Calling Web Services from Python

2006-04-07 Thread Ivan Zuzak
Hello, My Python application calls web services available on the Internet. The web service being called is defined through application user input. The Python built-in library allows access to web services using HTTP protocol, which is not acceptible - generating SOAP messages for arbitrary

Re: Spambayes modifications with web services

2005-11-02 Thread Tim Williams (gmail)
On 02/11/05, Steve Holden <[EMAIL PROTECTED]> wrote: > Personally I didn't regard the reply as unhelpful, and I believe the > replier was honestly trying to get you to see that your rather naive > suggestion was most unlikely to make things better. > To the OP A tip for curing your own problem -

Re: Spambayes modifications with web services

2005-11-02 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Thank you for the flippant remarks. Let's just say that I found them to > be unproductive. > > I would like to point out the process was not designed to be automatic > and I don't believe made such a statement. I should clarify that my > desire was to list each domain th

Re: Spambayes modifications with web services

2005-11-02 Thread benmorganpowell
Thank you for the flippant remarks. Let's just say that I found them to be unproductive. I would like to point out the process was not designed to be automatic and I don't believe made such a statement. I should clarify that my desire was to list each domain that was contained in a spam email, so

Re: Spambayes modifications with web services

2005-10-28 Thread Lasse Vågsæther Karlsen
[EMAIL PROTECTED] wrote: > In the last few months many personal website owners (such as myself) > have found that spammers have been using their domain names to > masquerade as valid users to send spam, normally in the form of: > So, as a web programmer and someone who specialises in getting good

Re: Spambayes modifications with web services

2005-10-28 Thread Neil Hodgson
benmorganpowell: > So, as a web programmer and someone who specialises in getting good > results on Google, I realised that I could simply post every spammer > website on a Google optimized page, which if searched for on Google > would return something like: > > "WARNING: DO NOT BUY FROM THIS WEB

Spambayes modifications with web services

2005-10-28 Thread benmorganpowell
In the last few months many personal website owners (such as myself) have found that spammers have been using their domain names to masquerade as valid users to send spam, normally in the form of: [EMAIL PROTECTED] This new tactic has an annoying problem, which is that the bounced emails end up b

amazon web services/api...

2005-08-07 Thread bruce
hi... has anybody ever played/successfully with the amazon- web services/api? i'm trying to figure out how i can use the browsenodeid to generate ISBN information for a book. the examples i've seen on various sites haven't been much help yet. thanks -bruce [EMAIL PROTEC