Getting Started With Pandas
28:42
Жыл бұрын
User Authentication in Django
22:17
How to Use Lambdas in Python
7:33
Decorators in Python
13:39
2 жыл бұрын
Sets in Python
13:32
2 жыл бұрын
Dictionaries in Python
15:46
2 жыл бұрын
Пікірлер
@aliamadoumoussa3779
@aliamadoumoussa3779 22 сағат бұрын
Hi professor, I have a problem with downloading several photos, it gives me " widget=forms.ClearableFileInput(attrs={ ValueError: ClearableFileInput doesn't support uploading multiple files " with my version of Django 5.1
@LeonardoZiche
@LeonardoZiche Күн бұрын
Good vid man
@abdallahomaralsarrawi7983
@abdallahomaralsarrawi7983 5 күн бұрын
Please explore html and class explore
@michaelselui6998
@michaelselui6998 9 күн бұрын
what if I have a webapp built using React and Django? what process should I follow?
@nikolas4749
@nikolas4749 13 күн бұрын
Hi I just wonder where your mp4 video are stored ?
@YorgoPetsas-w5e
@YorgoPetsas-w5e 15 күн бұрын
Thank you for this tutorial. I had to watch it 5 times because of different issues I was facing but it helped me learn a lot and achieve what I needed.
@tygomez4647
@tygomez4647 15 күн бұрын
Would this work as a final year project ??
@dhanushs4833
@dhanushs4833 18 күн бұрын
Great tutorial mate!! , keep up the good work, and provide more knowledge to your community❤
@afro_habesha
@afro_habesha 22 күн бұрын
Thank you so much
@devinorium
@devinorium 25 күн бұрын
i like to think that the mistake u made in the guni conf was just a clever didactic strat to make people aware of how to debug. thanks for the upload XD <<'3
@rezamollagholipour2535
@rezamollagholipour2535 25 күн бұрын
you are fantastic mate. Thanks a lot.
@anguschik8450
@anguschik8450 Ай бұрын
how does the category get imported into the list that displays, where do i edit the categories itself
@anguschik8450
@anguschik8450 Ай бұрын
Hi can someone teach me how to add existing items towards an inventory. Would I have to manually upload it through the all or where do i add it
@prml
@prml Ай бұрын
Thank you for this brilliant tutorial!
@claytonbennett7797
@claytonbennett7797 Ай бұрын
SSH isn't a standard option for me now. In its place I see RDP.
@kartheeswaranvenkateswaran2066
@kartheeswaranvenkateswaran2066 Ай бұрын
Thank you very much. It was an excellent video and resolved my issues with the deployment. Kudos!
@tengda-x8p
@tengda-x8p Ай бұрын
you are my god
@darrenblount7287
@darrenblount7287 Ай бұрын
I figured out the logout issue, and I am on the newest version of django. At around 49:50, after he has updated navigation.html (or you can pull the completed version from the github) change <li class="nav-item"> <a class="nav-link" href="{% url 'logout' %}">Sign Out</a> </li> to <form method="post" action="{% url 'logout' %}"> {% csrf_token %} <button type="submit" class="nav-link">Logout</button> </form>
@GodlessGazettePodcast
@GodlessGazettePodcast 2 ай бұрын
Super content. Update: now inflection must also be installed "pip install pyyaml uritemplate inflection" otherwise you will get an error failed to fetch.
@SidharthaAnanthula
@SidharthaAnanthula 2 ай бұрын
Thanks. Helped me a lot..
@Jay2Ops
@Jay2Ops 2 ай бұрын
Fantastic Video.
@Jay2Ops
@Jay2Ops 2 ай бұрын
Enjoyed the Video. You have gained a subscriber❤
@pierredechery7639
@pierredechery7639 2 ай бұрын
Very cool tutorial, thanks for posting!
@user-pu7nx5ok1h
@user-pu7nx5ok1h 2 ай бұрын
I have a trouble with moving to logout page, ive written urls and logout.html as in the video, but im getting a 405 error (method is not allowed)
@dhanushs4833
@dhanushs4833 18 күн бұрын
It's because you didn't sign in , don't worry it happened to me also just login, then try to sign out, and everything will be good
@AvshalomHarel
@AvshalomHarel 3 ай бұрын
I had a really hard time trying to deploy my project. This is the only video that was simple, well explained and most importantly actually working. Thank you so much man!
@mysterious_billionaire
@mysterious_billionaire 3 ай бұрын
just pasted some code in the most confusing part and ran with it 10:17. Does anyone know what that is that he pasted ?
@9285_VuHoangPhat-gf9mt
@9285_VuHoangPhat-gf9mt 3 ай бұрын
ggg
@scound_rel
@scound_rel 3 ай бұрын
Heyyy I'm doing my final project of my CS course in school and it's an online multiplayer game (three.js) hosted on a webapp made with Nextjs, Django and Postgres (all running in docker containers) and I absolutely adore this walkthrough since all of these technologies are completely new to me (except Docker). If you're wondering why we have to do something so complex as our very first web project, the goal is to challenge ourselves one last time to learn something entirely new, as it's the school's philosophy. While the content and style is different, you've helped me out a ton with setting up our work environment and things like db initialization, user management, authentication, etc... With that said, has anyone ever told you you kinda sound like Vinny from Vinesauce? 😂
@BunnyBani-do6td
@BunnyBani-do6td 3 ай бұрын
Hello, it doesn't work when I log out. Whenever I go to /logout or when I click logout, the page shows "This page isn’t working." Do you have any ideas on how to fix this?
@lydiaahope9776
@lydiaahope9776 4 ай бұрын
The fix I found for the logout issue: In navigation.html after "{{ user.username )) </a></li>" put: <form action="{% url 'logout' %}" method="post"> {% csrf_token %} <button class="btn btn-sm">Log Out</button> </form> And in settings.py at the bottom under LOGIN_REDIRECT_URL = '/dashboard' put LOGOUT_REDIRECT_URL = '/login' This makes it to when you logout it redirects you to the login page instead of a logout page. I can't figure out the issue to make it to where the logout page works appropriately, but this should appropriately log the user out. If anyone solves the actual logout page issue please let us know. I went through quite a few steps of troubleshooting and still couldn't get the logout page to load appropriately without a "GET /logout/ HTTP/1.1" 405 0 error.
@abdallabenomran
@abdallabenomran 3 ай бұрын
Thanks so much, you gave me a good start to figuring it out! I found I could make it pretty much exactly how he has it with this code. <li class="nav-item"> <form action="{% url 'logout' %}" method="post"> {% csrf_token %} <button type="submit" class="nav-link btn btn-link" style="color: var(--bs-nav-link-color)">Sign Out</button> </form> </li> This actually does take me to the logout page, so if it doesn't for you then it's an issue somewhere else, maybe the url's. Note: the hover color doesn't work on it, feel free to fix that and post it
@OasisFinder
@OasisFinder 4 ай бұрын
i am getting this error : NameError: name 'get_random_secret_key' is not defined
@anabeatriz8835
@anabeatriz8835 4 ай бұрын
17:15 can you provide the documentation link with all the properties that we can override, please?
@kamleshbehera1947
@kamleshbehera1947 4 ай бұрын
How can I add category ??
@alizarean5080
@alizarean5080 4 ай бұрын
it was the best crash course on youtube. thanks my friend.
@megatron1560
@megatron1560 4 ай бұрын
I would recommend everyone to learn from here only if u have already done DRF before but u still arent getting much satisfaction, this is the best place to go. This guy understands the problem of people like me very accurately. Hope to see some AI, ML videos from you bro and some projects involving AI + Django Rest Framework, Like Data Analytics API which upon recieving a csv dataset can generate deep data insights and user freindly graphs using matplotlib and seaborn like libraries. This is the project I had in my mind for a long time since i am into both AI/ML and Django, API development.
@daarabfirozi
@daarabfirozi 4 ай бұрын
How to run the project?
@dimodimov3500
@dimodimov3500 4 ай бұрын
straight to the point
@marktaylor9886
@marktaylor9886 4 ай бұрын
This series deserves 10000x more views/engagement than it has. There's so many bad tutorials on here with way more views that are so hard to follow. This is clear, concise and easy to follow. Nice work!
@humanmm6124
@humanmm6124 4 ай бұрын
Thanks for this videos, man! It helped me a lot. I hope that you will really continue this project and add some more features. Anyway, you are cool!
@remomagalhaes4707
@remomagalhaes4707 4 ай бұрын
i followed your entire tutorial and it was really useful. Thank you, very much!!
@kronchybitz1223
@kronchybitz1223 5 ай бұрын
Did anyone find a fix for the logout issue? Im having the same thing.
@georgegoldenberg986
@georgegoldenberg986 Ай бұрын
same problem :(
@SabinTV-NP
@SabinTV-NP 5 ай бұрын
40:39 Hey man, thank you for the work you do. It seems like the LogoutView has been depricated. No matter how many times I try visiting to my logout url, I get a HTTP error 405. Can you help me out?
@georgegoldenberg986
@georgegoldenberg986 Ай бұрын
I have a same problem, any idea how to fix it ?
@lidskystudio
@lidskystudio 5 ай бұрын
What sublime text version you are using ? Love your work!!
5 ай бұрын
Congratulations for the video! Sorry how can I fix this error "Bad Request (400)"?
@Cash2u7
@Cash2u7 5 ай бұрын
You're a Legend
@ashokkmr8758
@ashokkmr8758 5 ай бұрын
Totally Awesome! this tutotial covered everything about Unit Test 😍♥. i should have watched your video first, finally got here
@alexfari9648
@alexfari9648 5 ай бұрын
Excuse me, what Linux distribution are you using?
@shubhamsharma-ut3oh
@shubhamsharma-ut3oh 6 ай бұрын
can you suggest me another method to deploy a django project for students who only show their projects on portfolio.
@shubhamsharma-ut3oh
@shubhamsharma-ut3oh 6 ай бұрын
without adding a payment methods now you can not create a new app 1:23
@ishhh8399
@ishhh8399 6 ай бұрын
thanks for the video mann. i am having an issue during the templates for the signup and login page , the templates is not showing after getting the template folder from the repository can you please help