Re: [sqlalchemy] Issue with Sqlalchemy in exe file(created using pyinstaller)

2018-05-22 Thread Simon King
You'll probably need to take this up with the PyInstaller folks (http://www.pyinstaller.org/support.html). SQLAlchemy uses pkg_resources entry points to load database dialects, and I don't know how well PyInstaller supports those. Sorry, Simon On Mon, May 21, 2018 at 8:02 PM,

Re: [sqlalchemy] Issue with Sqlalchemy in exe file(created using pyinstaller)

2018-05-21 Thread binilg
I tried --hidden-import sqlalchemy_teradata. It didnt help. Any way thanks for the suggestion. On Wednesday, May 16, 2018 at 3:26:48 AM UTC-5, Simon King wrote: > > On Tue, May 15, 2018 at 8:59 PM, wrote: > > I have been struggling for a few days due to an issue with

Re: [sqlalchemy] Issue with Sqlalchemy in exe file(created using pyinstaller)

2018-05-16 Thread Simon King
On Tue, May 15, 2018 at 8:59 PM, wrote: > I have been struggling for a few days due to an issue with SQLAlchemy. > > The line of code which is giving problem is > > engine = > sqlalchemy.create_engine('teradata://pwd@DBinstance?driver=Teradata') > > This code works perfectly

[sqlalchemy] Issue with Sqlalchemy in exe file(created using pyinstaller)

2018-05-15 Thread binilg
I have been struggling for a few days due to an issue with SQLAlchemy. The line of code which is giving problem is engine = sqlalchemy.create_engine('teradata://pwd@DBinstance?driver=Teradata') This code works perfectly fine while running from Spyder while running from .py file. But while