If I want to create my own database and write my own SQL queries instead of using Django's object models and ORM, does it still make sense to use Django's user model in my project?
That's funny, I wanted something completely opposite: use Django's ORM in a non-web application. I have succeeded in this, thanks to the modularity of Django.
Comments
If I want to create my own database and write my own SQL queries instead of using Django's object models and ORM, does it still make sense to use Django's user model in my project?
Yes, all those password handling, django admin integration, Request.User object, etc.
That's funny, I wanted something completely opposite: use Django's ORM in a non-web application. I have succeeded in this, thanks to the modularity of Django.