Re: New to Django question about using it without ORM

2014-11-07 Thread Krishnakant Mane
On 11/08/2014 01:44 AM, Andreas Kuhne wrote: A couple of your questions answered: 1. You don't need to use Django's ORM, but you will not be able to use certain features, for example the model based class based views (ListView, DetailView, UpdateView). 2. To use djangos views and templates, you

Re: New to Django question about using it without ORM

2014-11-07 Thread Krishnakant Mane
On 11/08/2014 01:46 AM, Aliane Abdelouahab wrote: - Django 1.7 has the features people always waited it, the the 'migrate' which allows you to change your schema and let Django rédapate it :) In my project, all the core logic and database queries (using sqlalchemy ) are in a different rpc based

Re: Issue in Django 1.7.1 with __unicode__ and admin site?

2014-11-11 Thread Krishnakant Mane
That brings me to another related question. I had asked this before but let's put it in a different way. With the official Django tutorial for 1.7, they say it is ment for Python 3X. Do we have any plan to have some appendix on using the same tutorial for Python 2.7x? Like to have this code wo

Re: Issue in Django 1.7.1 with __unicode__ and admin site?

2014-11-11 Thread Krishnakant Mane
On 11/12/2014 03:21 AM, donarb wrote: On Tuesday, November 11, 2014 1:26:53 PM UTC-8, krmane wrote: That brings me to another related question. I had asked this before but let's put it in a different way. With the official Django tutorial for 1.7, they say it is ment for Python 3X. Do we have a

Re: Is django framework feasible for developing online LMS?

2014-11-12 Thread Krishnakant Mane
I will recommend Django as the best for this kind of work. There is Meta studio which does exactly that and it is developed in Django. I suggest you go to www.gnowledge.org and see if you can find a link to the said project. happy hacking. Krishnakant. On 11/12/2014 07:42 PM, Avraham Serour wro

need precise advice before final decision on Django

2014-11-13 Thread Krishnakant Mane
Hello all, I did look at a few good tutorials and also did some hands-on with what ever those tutorials had to offer. Also did some of my own inovations with the tutorials/ I feel Django has greatly impressed me so far. Now I think I can rightly ask my question and in a more specific way. I woul

Re: need precise advice before final decision on Django

2014-11-13 Thread Krishnakant Mane
Hi Javier, On 11/14/2014 12:21 AM, Javier Guerra Giraldez wrote: On Thu, Nov 13, 2014 at 1:32 PM, Krishnakant Mane wrote: I guess it is obvious that I only need the view and template part here. and forms. they're often used with models (i.e. subclassing ModelForm), but that&#x

Re: need precise advice before final decision on Django

2014-11-13 Thread Krishnakant Mane
On 11/14/2014 12:07 AM, Avraham Serour wrote: Now, I wish to know, if I can use the template's capacity of generating good forms and add good css without having a compulsion of using the model part of Django? yes. Any good article, blog or tutorial for this? Happy hacking. Krishnakant. -- You

Re: Is django framework feasible for developing online LMS?

2014-11-14 Thread Krishnakant Mane
Look at this. http://www.metastudio.org/home/On 11/14/2014 12:50 PM, Pradip Shahi wrote It might interest you and perhaps u will also learn how they did it in Jango. Happy hacking. Krishnakant. : *Avraham Serour,* Sorry man, I mean to heart django guys.. I am pretty much sure with mysql as a

is it worth going for version 1.6 for commertial project

2014-11-22 Thread Krishnakant Mane
Hello all, I have been looking for some good discussion on this issue. i see there is not much difference between 1.7 and 1.6 as far as my requirement goes. I have gone through the official docs for both in a kind of rappid specific way. As it is I am not going to use ORM at all. I am mainly in

Re: is it worth going for version 1.6 for commertial project

2014-11-25 Thread Krishnakant Mane
014, at 4:53 AM, Krishnakant Mane > wrote: Hello all, I have been looking for some good discussion on this issue. i see there is not much difference between 1.7 and 1.6 as far as my requirement goes. I have gone through the official docs for both in a kind of rappid specific way. As it is

is there a Django library for AJAX support

2015-01-04 Thread Krishnakant Mane
Hello all, I am realy impressed with the Django forms and some additional enhancements with CrispyForms Specially that additional library does a great job with css management making it possible to make the forms look good and acc

Re: is there a Django library for AJAX support

2015-01-05 Thread Krishnakant Mane
05/2015 08:08 PM, Daniel França wrote: Have you tried Dajax/Dajaxice? http://www.dajaxproject.com/ Em Sun Jan 04 2015 at 2:15:16 PM, Krishnakant Mane escreveu: Hello all, I am realy impressed with the Django forms and some additional enhancements with CrispyForms <http://

Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-13 Thread Krishnakant Mane
Hello. I am seasoned SQLAlchemy user and quite good in node's sequelise ORM. But I am new to the one with Django.So here's my situation. I am developing an accounting (book keeping ) automation software service. So there are accounting rules (Debit = Dr and credit = Cr) for double entry book

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-14 Thread Krishnakant Mane
on operation Also, ive recently ran into some of the limitations of drf and am looking into moving to an api that can be less coupled with orm. Django-ninja looks promising. On Sat, Jul 13, 2024 at 9:15 PM Krishnakant Mane wrote: Hello. I am seasoned SQLAlchemy user and quite

how to keep django ninja APIs distributed in modules in an apis package?

2024-07-26 Thread Krishnakant Mane
Hello. I have decided to use django ninja for its simplicity and performance. However I have one specific confusion. Suppose I have an app with a models.py, schemas.py and all my APIs in one package called apis.     Suppose in the apis package along with __init__.py I have api_accounts.py,

Re: Help deciding ORM VS raw SQL trade-off in Complex scenario

2024-07-27 Thread Krishnakant Mane
coupled with orm. Django-ninja looks promising. On Sat, Jul 13, 2024 at 9:15 PM Krishnakant Mane wrote: Hello. I am seasoned SQLAlchemy user and quite good in node's sequelise ORM. But I am new to the one with Django.So here's my situation. I am developing an accoun

how to represent postgresql json field in ninja schema?

2024-08-17 Thread Krishnakant Mane
Helo. I guess the question is obvious. I have json field in my postgresql table and django orm has no issues with it. But I am not able to find out oa way to use it in my schema in ninja. classorgin(Schema): orgname: str orgaddr: str orgdetails: json This does not work. Any hint? Regards. -

jwt authentication in ninja without django user

2024-10-11 Thread Krishnakant Mane
nd go ahead. I am trying to use simplejwt from rest_framework. If this is not the correct way please guide. Regards. -- Email Signature *Krishnakant Mane* Software Architecture Design & Implementation Specialist Mobile: +91 8424039903 https://www.linkedin.com/in/kris