Re: [pylons-discuss] Implementing basic authentication with persistence

2017-09-04 Thread Julian Sanchez
Thanks so much for the suggestion Thierry, I'll take a look. As of now I had found 'pyramid_simpleauth' which seems simple enough yet comprehensive enough for what we need. Our final solution will be hosted in Google App Engine using the datastore so anything that relies on ZODB or SQLAlchemy

Re: [pylons-discuss] Implementing basic authentication with persistence

2017-09-04 Thread Thierry Florac
Hi Julian, I've build a "security package" for my own framework (called "PyAMS") which includes a pluggable "security manager"' utility in which you can "plug" extensions allowing you to use several authentication plug-ins; these actually include "local users" (stored into ZODB), Authomatic

Re: [pylons-discuss] Implementing basic authentication with persistence

2017-08-31 Thread Julian Sanchez
Thanks Mikko. I'll take a look at the code. We won't be using SQLAlchemy though so I'll see how much I can reuse On Thursday, August 31, 2017 at 11:45:45 AM UTC-5, Mikko Ohtamaa wrote: > > Hi Julian, > > Websauna implements basic sign in and sign up for you using SQLAlchemy > persistency and

Re: [pylons-discuss] Implementing basic authentication with persistence

2017-08-31 Thread Mikko Ohtamaa
Hi Julian, Websauna implements basic sign in and sign up for you using SQLAlchemy persistency and Redis for sessions: https://websauna.org/docs/narrative/user/index.html It also supports Facebook, Twitter and Google OAuth and various others. Best regards, Mikko On 31 August 2017 at 19:42,

[pylons-discuss] Implementing basic authentication with persistence

2017-08-31 Thread Julian Sanchez
I'm getting my feet wet with Pyramid and going through the different tutorials, applying the concepts to the project I'm working on. At the present time I'm interested in having basic authentication and storing the username and (securely hashed) password on a database table. Is there