Re: Pyramid Books Published by O'Reilly

2013-03-28 Thread Dav Clark
I would like to +1 this "pyramid for technical / science applications" idea. I'm just moving into this kind of work myself (finishing up my psychology PhD). I will point out that flask is also used for such things, for example I think https://wakari.io uses it (and is very similar in flavor to

Re: Is it possible to inherit views from a view_default base calss?

2013-03-28 Thread Michael Merickel
view_config does not work with inheritance. One option if you really want something like this is to write a class decorator with venusian that can automatically register certain views for you (this is similar to how cornice works). On Thu, Mar 28, 2013 at 6:55 AM, Tjelvar wrote: > Dear all, > >

Re: Pyramid and Mass mailing tool

2013-03-28 Thread tonthon
Thanks for your advices, I think we will end up in letting one of the existing specialists do the silly job for us :). NB : the business point of view is always welcome :) Le 28/03/2013 17:43, Jonathan Vanasco a écrit : > The cheapest option would be to host the images on Amazon S3 and send > the

Re: Pyramid and Mass mailing tool

2013-03-28 Thread Jonathan Vanasco
The cheapest option would be to host the images on Amazon S3 and send the email with Amazon SES. SES charges a 10¢ CPM , and data transfer in is free ( so you don't have to run the app on EC2 ). You do pay bandwidth, but it's their standard 12¢/GB charge. Your effective CPM ends up being around

Re: Pyramid and Mass mailing tool

2013-03-28 Thread Carlos Daniel Ruvalcaba Valenzuela
You are probably better off using a service such as sendgrid, mailchip, etc. Usually mass mailing (even if not spam) is a very good way of having your host blacklisted pretty fast :-), also having to setup your own mail server and all that. If you want something simple you can try using pyramid_m

Pyramid and Mass mailing tool

2013-03-28 Thread tonthon
Hi, We're looking for a good mass mailing tool ( not spam :) ) that we would manage through a pyramid + SQLA based application. Any thoughts on a possible solution ? Regards, Gaston -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubs

Re: Possible bug with mako renderers when using defs

2013-03-28 Thread Jason
On Tuesday, March 26, 2013 4:39:32 PM UTC-4, Jason wrote: > > > > On Tuesday, March 26, 2013 4:33:40 PM UTC-4, Michael Merickel wrote: >> >> You have request and context switched in your view signature. Is this a >> paste-bug? >> >>> >>> > Yes. (I'm actually using pyramid handlers, but nobody e

Is it possible to inherit views from a view_default base calss?

2013-03-28 Thread Tjelvar
Dear all, Some of my resources will have identical views for some request methods (see below for an example). I would therefore like to be able to inherit these from a base class. However, the code below does not appear to work (e.g. POST returns 404 Not Found rather than 405 Method Not Allowed

Re: Changing content-type on renderer response

2013-03-28 Thread Tjelvar
Thank you Michael this works beautifully. On Wednesday, March 27, 2013 6:02:04 PM UTC, Michael Merickel wrote: > > Renderers are typically responsible for setting the content type on the > request.response object themselves (if you haven't overridden it already). > It'd be possible to write a vi