Re: [sqlalchemy] Re: SQLAlchemy 1.0.13 released

2016-05-17 Thread Mike Bayer
well now that I'm self-hosting I would maybe need to consider that, though the aggregate number of web hits is not that unmanageable. It's not the delivery of the HTML that's been the problem, it's running the sphinx "make html" that fails on RTD due to memory / time limits. On 05/17/2016

Re: [sqlalchemy] Re: SQLAlchemy 1.0.13 released

2016-05-17 Thread Jonathan Vanasco
Have you thought about using cloudflare to cache the docs? -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy+unsubscr...@googlegroups.com. To post to

Re: [sqlalchemy] Re: SQLAlchemy 1.0.13 released

2016-05-17 Thread Mike Bayer
apparently because my build is some kind of "large" build I was on some special alternate server list, and that whole thing went down, and then it's down for a week and nobody over there gets emails or anything about it. I've had a lot of these outages (e.g. the kind that go on for weeks and

[sqlalchemy] Re: SQLAlchemy 1.0.13 released

2016-05-17 Thread Jonathan Vanasco
On Monday, May 16, 2016 at 5:31:25 PM UTC-4, Mike Bayer wrote: > > Apparently, readthedocs has been not building for over a week, so at the > moment the CHANGES link below is very stale. We are trying to get RTD > to respond for help. > Last month they had a big change and migrated

Re: [sqlalchemy] accessing firebird on windows from linux

2016-05-17 Thread robert rottermann
thanks for the tip .. it is working now like this: on the windows box with ip 10.42.0.150 the path to the database is: c:\Users\elvis\Documents\VAS.fdb # using fdb only con = fdb.connect(dsn='10.42.0.150:/Users/elvis/Documents/VAS.fdb', user='sysdba', password='thekey') # using sa engine =

Re: [sqlalchemy] accessing firebird on windows from linux

2016-05-17 Thread Mike Bayer
firebird is very obscure / esoteric. I'd get a straight fdb DBAPI working first then we can work backwards to get the right URL. On 05/17/2016 10:42 AM, robert rottermann wrote: Hi there, I try to access a firebird db on windows from my ubuntu box. I have a gui-tool (FlameRobin), from

[sqlalchemy] accessing firebird on windows from linux

2016-05-17 Thread robert rottermann
Hi there, I try to access a firebird db on windows from my ubuntu box. I have a gui-tool (FlameRobin), from which this works nicely. Therefore it is not a firewall or access problem. Now I would like to do it using python and sqlalchemy. So far I failed.. This is the connection string I use: