Re: reg: Django vs DRF

2021-03-27 Thread Kelvin Sajere
Firstly, DRF is just like any other app you would create in your project when you use it. It's not a full-blown framework. With that said, DRF uses the same authentication system, I only use token authentication when I am working on a project the frontend is decoupled from the backend. If not, I ju

Re: reg: Django vs DRF

2021-03-27 Thread Ryan Nowakowski
A bit of googling led me to this: https://pypi.org/project/drf-registration/ I haven't personally used it but it looks like it might fit the bill. On March 26, 2021 2:51:54 AM CDT, 'Amitesh Sahay' via Django users wrote: >I have a basic question.From all the tutorials and document that I have

reg: Django vs DRF

2021-03-26 Thread 'Amitesh Sahay' via Django users
I have a basic question.From all the tutorials and document that I have gone through for DRF, my understanding is that Token authentication is used to access the REST APIs. So, my question is, does DRF have such a user creation system, or is it only done through the Django User model, i.e. The w