Thank you so much, I really learned a lot about rest APIs and backend functionality. Couldn't have survived without this tutorial. The robot voice is great. Thanks again.
@bugracanasci3 жыл бұрын
Thank you sir, it is a comprehensive and simply explained tutorial on the django rest framework. Well done indeed! Cheers!
@hamidaminirad3705 Жыл бұрын
Finally I've found what I was searching for, for a few weeks. You were a huge help for me. Thanks a lot 🙂
@triandonosutanto93802 жыл бұрын
why error " ModuleNotFoundError: No module named 'corsheadersEmployeeApp' ? pls help
@ilovecute782610 ай бұрын
Awesome tutorial. Thanks a lot.
@muzafferaydogan9315 Жыл бұрын
Instead of changing every department keyword to employee one by one try using CTRL + D until you get them all and change all at once.
@alamin00038 Жыл бұрын
thank you very much sir for helping us.
@krishnasaicholkar61802 жыл бұрын
Excellent course perfect to learn from
@juanmariobieber2 жыл бұрын
I got a problem with depracation in urls, somethng like this: 'route that contains '(?P
@2005Azm3 жыл бұрын
Your tutorials are dope ! Thank you !!!
@bhanudasrane86463 жыл бұрын
Very nice explanation sir....
@ronilkansoda71404 ай бұрын
Thanks a lot MAN..
@sarathkumar-gq8be3 жыл бұрын
departmentApi() missing 1 required positional argument: 'id' is there anything you missed to declare , iam having error like this
@NaveenKumar-fo4kz3 жыл бұрын
Sir using your method how to pass two params in url ?
@dnasredine3 жыл бұрын
it's a robot that he talks, it's not a good idea for a tutorial. A human speaker is better I think
@NaveenKumar-fo4kz3 жыл бұрын
Simply thanks a lot.
@heathergray48802 жыл бұрын
Find the exact tutorial I'm looking for :) ... robotic text to speech "instructor" :(
@Gorlung2 жыл бұрын
thank you, robot
@AchwaqKhalid3 жыл бұрын
Yay 💪 thank you 🙏
@tomstout83812 жыл бұрын
Unfortunately this code no longer works...
@noname-lg6lx2 жыл бұрын
where is the issue?
@dieterhuhu22212 жыл бұрын
- "urls.py": you gotta use "re_path" instead of "url" : "from django.urls import re_path" - "settings.py" : instead of "path_join" : "path.join" - "post"-method: serializer is instantiated after we inserted into DB , so you have to also provide a valid id the 1st time you add sth. via api , after that "post"-method will fct without id - "delete"-method, "views.py" : instead of "DepartmentId=id" : "DepartmentId=department_data['DepartmentId'] => as in "put"-method => id is defined 0 as default at the beginning of "departmentApi" and never reassigned,
@susmitvats495 Жыл бұрын
@@dieterhuhu2221 re_path also does not work can u give gist of you project?