[sqlalchemy] Issue with dynamically loaded modules and SQLAlchemy

2015-07-17 Thread Jeffrey McLarty
Hello, I've got a very peculiar situation, where SQLA fails to create an engine, because it can't find the installed module, only when I do some relatively straightforward package discovery import logic using imp.find_module and imp.load_module. I'm wondering if SQLAlchemy does some magic

Re: [sqlalchemy] Issue with dynamically loaded modules and SQLAlchemy

2015-07-17 Thread Jeffrey McLarty
renamed my project's extension, to something other than an exact match for psycopg2; all worked. Thanks SO much, for your help Mike, and making SQLA one the most awesome libraries ever. *Jeffrey McLarty* On Fri, Jul 17, 2015 at 1:41 PM, Mike Bayer mike...@zzzcomputing.com wrote: On 7/17/15 1:39

Re: [sqlalchemy] Custom Type - two classes (object + TypeDecorator) or one (TypeDecorator)?

2015-03-31 Thread Jeffrey McLarty
, Michael Bayer wrote: Jeffrey McLarty jeffrey...@gmail.com javascript: wrote: Hello, First - amazing work on SQLAlchemy, what an amazing body of work. Second, my question. I'm attempting to convert a pure-python object, into a custom type for column definition. My question

[sqlalchemy] Custom Type - two classes (object + TypeDecorator) or one (TypeDecorator)?

2015-03-30 Thread Jeffrey McLarty
Hello, First - amazing work on SQLAlchemy, what an amazing body of work. Second, my question. I'm attempting to convert a pure-python object, into a custom type for column definition. My question is, do I need to keep my original MyObj(object) and use it inside the