Re: SQL ALchemy support on django

2016-05-30 Thread Asif Saifuddin
Hi, I failed to apply for gsoc, but I planned to give some effort on this whenever I get some time. Anyone having interest and time could help he with some tecnical guidence. Much more to do there. Thanks https://github.com/TrendBreaker/django-alchemy On Friday, March 4, 2016 at 2:00:11 PM

Re: SQL ALchemy support on django

2016-03-04 Thread Asif Saifuddin
Hi, I will be working on preparing a proposal for sql-alchemy support on django. [thorugh model meta]. Thanks On Wednesday, September 16, 2015 at 2:35:15 PM UTC+6, Asif Saifuddin wrote: > > Hi, > > > How much difficult it will be to add SQLalchemy support to django? what > are the technical

Re: SQL ALchemy support on django

2015-11-04 Thread Asif Saifuddin
that's an awsome link :) thanks russ. On Thu, Nov 5, 2015 at 12:03 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > > Hi Asif, > > On Wed, Nov 4, 2015 at 12:17 AM, Asif Saifuddin wrote: > >> I would like to create an experiemental repo on my github for >>

Re: SQL ALchemy support on django

2015-11-04 Thread Russell Keith-Magee
Hi Asif, On Wed, Nov 4, 2015 at 12:17 AM, Asif Saifuddin wrote: > I would like to create an experiemental repo on my github for > experiementing the sqla support to django orm, hence some useful resource > indicator would be great. sqla have core engine and orm on top of it,

Re: SQL ALchemy support on django

2015-11-04 Thread Asif Saifuddin
Hei, I tried several frameworks, but django is my favorite for many reason. I have some familarities with django internal code and mechanism. sqlalchemy integration with django is a challenging task as dj admin and forms and some other thinks need to be figure out. Cheers Asif On Thu, Nov 5,

Re: SQL ALchemy support on django

2015-11-04 Thread Marcin Nowak
On Tuesday, November 3, 2015 at 5:17:32 PM UTC+1, Asif Saifuddin wrote: > > I would like to create an experiemental repo on my github for > experiementing the sqla support to django orm, hence some useful resource > indicator would be great. sqla have core engine and orm on top of it, so >

Re: SQL ALchemy support on django

2015-11-03 Thread Asif Saifuddin
I would like to create an experiemental repo on my github for experiementing the sqla support to django orm, hence some useful resource indicator would be great. sqla have core engine and orm on top of it, so the idea way to start experiment should be based on core? On Wednesday, September 16,

Re: SQL ALchemy support on django

2015-09-16 Thread Anssi Kääriäinen
The meta API used by admin and model forms should be completely public and stable. The problem is that some methods of the meta API return field instances, and the API for the fields (especially for related fields) isn't public nor stable. You'll need to somehow return field instance that act like

Re: SQL ALchemy support on django

2015-09-16 Thread Asif Saifuddin
Hi, With "support" I meant having a official djangoish way to use sqlalchemy on django. As I have to use model meta API to add support for any non django backend to orm my question is, is django meta API fully formalized? If not how much work is needed to formalize them?(as denial did a lots of

Re: SQL ALchemy support on django

2015-09-16 Thread Russell Keith-Magee
Hi Asif, It depends entirely what you mean by "support". Django is just Python, so there's absolutely no reason you can't write a Django site that uses Django for the URLs, views and forms, but SQLAlchemy for the data access. Out of the box, you won't be able to use ModelForms or the Admin.