Re: SQLAlchemy - web framework ?

2014-05-23 Thread Amirouche Boubekki
Héllo, 2014-05-13 1:34 GMT+02:00 flebber flebber.c...@gmail.com: If I want to use SQLAlchemy as my ORM what would be the best option for a web framework? I think the best option would be Pyramid but I don't know SQLAchemy or Pyramid that much, but: - Django doesn't support SQLAlchemy as is -

Re: SQLAlchemy - web framework ?

2014-05-14 Thread flebber
One of the main parts that is tripping myself up is that I need to consistently import xml files into my database. Looking to find the best support and methodologies to do this, that is one of the reasons I am looking at SqlAlchemy. Sayth --

Re: SQLAlchemy - web framework ?

2014-05-14 Thread Ben Finney
flebber flebber.c...@gmail.com writes: One of the main parts that is tripping myself up is that I need to consistently import xml files into my database. XML documents represent a hierarchical tree of data. Relational databases are not good at representing hierarchical documents. So I don't

Re: SQLAlchemy - web framework ?

2014-05-13 Thread Roy Smith
In article d738b225-cf28-4114-a565-58a60919f...@googlegroups.com, flebber flebber.c...@gmail.com wrote: Roy.that is interesting that you can use mongoengine. Recent google results such as seem to assert there are a lot of inherent risk in swapping out components, though I may be

SQLAlchemy - web framework ?

2014-05-12 Thread flebber
If I want to use SQLAlchemy as my ORM what would be the best option for a web framework? It appears the general advice regarding Django is to do it the Django way and use the django ORM and change it out for SQLAlchemy. That to me limited knowledge leaves flask, pyramid and turbogears 2. So if

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Iuri
I don't know what exactly you mean with wanted to not build it all myself, but Flask is great with SQLAlchemy. You have the Flask-SQLAlchemy extension and it has a lot of other integrations, like Flask-Admin. You don't have to fear flask to bigger projects. To be honest, I prefer it instead of

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Ben Finney
flebber flebber.c...@gmail.com writes: If I want to use SQLAlchemy as my ORM what would be the best option for a web framework? It appears the general advice regarding Django is to do it the Django way and use the django ORM and change it out for SQLAlchemy. You don't say any more about

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Roy Smith
In article 17149f49-bb71-4c97-9d07-d80766b93...@googlegroups.com, flebber flebber.c...@gmail.com wrote: If I want to use SQLAlchemy as my ORM what would be the best option for a web framework? It appears the general advice regarding Django is to do it the Django way and use the django

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Sayth Renshaw
I am saying 'do it myself' in that with flask that provide a small base and then all functionality is added by me directly, with the assistance of community modules. Compared to Django whose developers have created an integrated set of defaults with more functionality standard, which is good if

Re: SQLAlchemy - web framework ?

2014-05-12 Thread flebber
Roy.that is interesting that you can use mongoengine. Recent google results such as seem to assert there are a lot of inherent risk in swapping out components, though I may be misinterpreting it. http://www.slideshare.net/daikeren/tradeoffs-of-replacing-core-components Sayth --