Re: [pylons-discuss] Authenticating with Oauth2/OpenID Connect

2019-07-10 Thread Bert JW Regeer
> On Jun 24, 2019, at 15:44, Jonathan Vanasco wrote: > > > On Friday, June 21, 2019 at 8:43:32 PM UTC-4, Mike Orr wrote: > But if I want to contribute to the enterprise's Single Sign-In, do I need to > tell the server the user is still logged into my application so it > doesn't expire the

[pylons-discuss] Re: How to integrate spatialite in pyramid?

2019-07-10 Thread Michael Lane
Even though I put the file in a directory define in %PATH% or try with/without full path, with/without file extension, with libspatialite-4.dll or using excute with all combination mentionned before... dbapi_conn.execute("SELECT load_extension('mod_spatialite.dll')") Le mercredi 10 juillet

[pylons-discuss] Re: How to integrate spatialite in pyramid?

2019-07-10 Thread Michael Lane
Try to find a way to import the dll but it always fails on the load_extension def load_spatialite(dbapi_conn, connection_record): dbapi_conn.enable_load_extension(True) dbapi_conn.load_extension('C:\\Scripts\\*mod_spatialite*.dll') Le mardi 9 juillet 2019 17:01:33 UTC-4, Michael Lane a

[pylons-discuss] Re: How to integrate spatialite in pyramid?

2019-07-10 Thread Michael Lane
Hi, thanks for the answer. I saw this tutorial many time on my google research, but I don't know how to integrate this in pyramid and specifically for Windows. I probably not clear on that one, but I'm going to have only one database at the time. The sqlite (spatialite) is used for my local

Re: [pylons-discuss] How to integrate spatialite in pyramid?

2019-07-10 Thread Michael Lane
Thanks for the answer, I saw this page before but I don't know what to do with it! When I check the code in connection.py of spatialite, I see: 'mod_spatialite', # Ubuntu 'mod_spatialite.so', # Ubuntu 'mod_spatialite.dylib', # macOS But no definition for windows. I will make few test to