Re: SQLAlchemy - web framework ?

2014-05-23 Thread Amirouche Boubekki
Héllo, 2014-05-13 1:34 GMT+02:00 flebber : > 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 - I don't recommend Flas

Re: SQLAlchemy - web framework ?

2014-05-14 Thread Ben Finney
flebber 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 know what you mean by

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 -- https://mail.python.org/mailman/listinfo/python-li

Re: SQLAlchemy - web framework ?

2014-05-13 Thread Roy Smith
In article , flebber 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 misinterpreting it. > http://www.slideshare.net/daikeren/tradeoffs-of-replacing-

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 -- https://mail.

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 yo

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Roy Smith
In article <17149f49-bb71-4c97-9d07-d80766b93...@googlegroups.com>, flebber 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 ORM and change it

Re: SQLAlchemy - web framework ?

2014-05-12 Thread Ben Finney
flebber 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 this. Have you evalua

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 D

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