Hello, I need to send a bit of info to different web services we use (mainly, highrise and campaign monitor). I have tested some prototype code using their API and it works.
Now, I am not sure what would be the best way to integrate it into our site/app. I see two potential problems : - delay as the urllib.urlopen is blocking. - failure as it would bring down the whole site if any of this services has a problem. I am thinking about using threads to avoid 1/ and exception for 2/. Looks simple and sensible to me but this is the first time I do that, so, any ideas are welcome. Does anybody else have done this kind of things ? Best regards, Lionel.