Re: [pylons-discuss] Restless api

2015-01-03 Thread Eric Hanchrow
I use pyramid as a REST server, although I'm probably doing it rather sloppily. It works well enough. I don't use an ORM; in fact I don't talk to a database for much. On Wed, Dec 31, 2014 at 4:30 AM, Luis Aguirre aguir...@xuar.com.ar wrote: mmm.. wait a minute. If nobody is interested in

Re: [pylons-discuss] Restless api

2014-12-31 Thread Luis Aguirre
mmm.. wait a minute. If nobody is interested in pyramid/sqlalchemy/rest should be a good reason. Somebody is using pyramid as a REST server? If you do, how do you use it? Using nosql databases as mongodb? Some advice about all of this thing? Thanks a lot! Best regards, Luis Aguirre

Re: [pylons-discuss] Restless api

2014-12-30 Thread AM
Not something that works out of the box that I know of. I have been able to use sandman: https://github.com/jeffknupp/sandman without too much extra work. HTH AM On 12/30/14 9:49 AM, Luis Aguirre wrote: Hi guys, I'm wondering if exist some restful service in pyramid that can interface

Re: [pylons-discuss] Restless api

2014-12-30 Thread Paul Everitt
Wichert’s rest_toolkit especially with its SQLAlchemy support is a good starting point. It doesn’t, though, introspect models and attempt to make endpoints. Anybody interested in working on such a thing? —Paul On Dec 30, 2014, at 12:49 PM, Luis Aguirre aguir...@xuar.com.ar wrote: Hi guys,

Re: [pylons-discuss] Restless api

2014-12-30 Thread Luis Aguirre
Hi Paul, I'm interested in working on this. Actually I have a project that try to do it: https://github.com/aguirrel/sqlalchemy_rest but I thought that perhaps somebody would have a better solution. Best regards, Luis Aguirre 2014-12-30 15:04 GMT-03:00 Paul Everitt paulwever...@gmail.com:

Re: [pylons-discuss] Restless api

2014-12-30 Thread John Anderson
On Tue, Dec 30, 2014 at 10:04 AM, Paul Everitt paulwever...@gmail.com wrote: Wichert’s rest_toolkit especially with its SQLAlchemy support is a good starting point. It doesn’t, though, introspect models and attempt to make endpoints. Anybody interested in working on such a thing? —Paul I