How to Build an E-commerce Website with Django and Python

preview_player
Показать описание
Learn how to build an E-commerce website with Django and Python.

⭐️ Course Contents ⭐️
⌨️ (0:00:00) Setup and project configuration
⌨️ (0:16:55) Adding items to a cart
⌨️ (0:54:09) Improving the UI
⌨️ (1:10:34) Creating an order summary
⌨️ (1:38:03) The checkout process
⌨️ (2:10:46) Handling payments with Stripe
⌨️ (2:37:33) Discount codes
⌨️ (3:07:41) Managing refunds
⌨️ (3:31:31) Default addresses
⌨️ (4:12:30) Saving credit card information

--

Рекомендации по теме
Комментарии
Автор

I'm not one person who clones a repo from Github, I write code as you speak, and I can say it's a very thorough course...Thank you.

jimmyopot
Автор

⭐ Course Contents ⭐
⌨ (0:00:00) Setup and project configuration
⌨ (0:16:55) Adding items to a cart
⌨ (00:32:57) item orders
⌨ (0:54:09) Improving the UI
⌨ (1:10:34) Creating an order summary
⌨ (1:38:03) The checkout process
⌨ (2:10:46) Handling payments with Stripe
⌨ (2:37:33) Discount codes
⌨ (3:07:41) Managing refunds
⌨ (3:31:31) Default addresses
⌨ (4:12:30) Saving credit card information

#copied

dr.ayurbedic
Автор

This is great! For new learners, reading the docs isn't as helpful as one might expect. So, thank you!

yumeileventhal
Автор

fantastic tutorial. as someone learning to buiild site on my own, this is a huge help as to how to think about the logic and to structure the models. thanks for the share

equalsfit
Автор

This is one of the best tutorials I have watched for Django. Live coding makes a huge difference while learning. Thank you for making quality videos. :)

Ashlin
Автор

thank you so much, really i had an issue and i was looking for a solution more that 1 month and i found it here in this code, i don't know how to thank you, really appreciate it

mujtabaaltayib
Автор

This guy should be given an Oscar for his patience while making up this video.

bsmaheshkumar
Автор

⭐️ Course Contents ⭐️
⌨️ (0:00:00) Setup and project configuration
⌨️ (0:16:55) Adding items to a cart
⌨️ (00:32:57) item orders
⌨️ (0:54:09) Improving the UI
⌨️ (1:10:34) Creating an order summary
⌨️ (1:38:03) The checkout process
⌨️ (2:10:46) Handling payments with Stripe
⌨️ (2:37:33) Discount codes
⌨️ (3:07:41) Managing refunds
⌨️ (3:31:31) Default addresses
⌨️ (4:12:30) Saving credit card information

冠勳廖
Автор

Wow! Four hours twenty-two minutes and eleven seconds of active listening without break! Awesome, and loving it!

paulthangbawi
Автор

I think tutorials must have a proccess of thinking for the viewers, not only copying lines of code like in miliseconds as well as a good pace, so the video itself results confortable for some of us. This is certainly not the case, the author recorded this like if he was working for himself instead of delivering a comprehensive, well-paced explanation in some topics (e.g showing the database structure before writing all the models). Of course you can configure the video to run slower, but i think it would be much better if the author adapts the speed to what a tutorial suppose to be (after all this is a: "how to create something" type tutorial). This is not my first Django tutorial, so it's not about the understanding, it's about the speed and the way of delivering the content.

Keep in mind this is just my opinion, i think the instructor has an amazing set of skills and the project is very interesting.

Artificial_Intelligence_AI
Автор

For people who are having trouble with the static styles at 14:30, try renaming the 'static_in_env' folder to 'static_files' . It worked for me.

cantonangobi
Автор

If your static folder isn't working just put that on settings.py:

STATIC_URL = '/static/'

STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]

vitorlhy
Автор

Wow! Am super excited for this tutorial
Like seriously this guy is a master...
God bless you bro all the way from Nigeria 100%

andrewsmichael
Автор

Thank you for the lecture.
Since I am a foreigner, I hope that subtitles will be added.

용랭-ym
Автор

Man, what a amazing explanation In Django.
You make it for everyone understandable and make the coding lively. and that is an art to do it.
Hopely more in the future. Many Thanks

jayhu
Автор

Thank you for the very wonderful e-commerce website tutorial.

kapehansakamatuoran
Автор

I hope Just Django make more Django Rest Framework with Custom User Models and Social Auth.

buzzminkyunghoon
Автор

This is cool man. So much to learn from this tutorial.

sa
Автор

0:16:55
Is there some starter code for this section?
I feel like the code in the previous section went through changes for this section and that part was missing.

atharvjaju
Автор

I found a bug :D
1. Add 2 (or more) the same items to cart - so you have 2 items
2. Delete this items (using trash in order-summary) - so you shoud have 0 items
3. Add 1 item using product page - so you shoud have 1 item
You don't have 1 item - (SUPRICE!) you have 2 items!
But it's still the best django-shop tut i've ever seen!

tomaszbonarkiewicz