Codemy.com
Codemy.com
  • 983
  • 24 060 593
Domain Name For Our Project - Django Wednesdays ECommerce 45
In this video we'll add a domain name to our Ecommerce app with Django and Python.
In the last video we pushed our app to Railway for hosting, but we used their default generic URL.
Now we want to register our own domain name, and we'll use Namecheap and Cloudflare to do that in this video.
Переглядів: 866

Відео

Push Our App To Web Hosting - Django Wednesdays ECommerce 44
Переглядів 1,7 тис.День тому
In this video we'll push our Django Ecommerce app online to web hosting using Railway. We need to make a few minor changes to our app to prepare it for webhosting. We also need to set up git version control, and push our code to Github. If you choose to use Railway to host your app, use my affiliate URL: codemy.com/railway I don't make any money when you do, but I get Railway credits that allow...
Add Postgres Cloud Database - Django Wednesdays ECommerce 43
Переглядів 1,2 тис.14 днів тому
In this video we'll add the PostgreSQL database to our ecommerce app with Django and Python. Up until now we've been using the basic SQLite3 database that comes with Django, but that's not appropriate for a live production website. So we'll add a cloud Postgres Database to our app in this video that is fully online. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:06 - Add Postgres ...
Clear Shopping Cart Model - Django Wednesdays ECommerce 42
Переглядів 1 тис.21 день тому
In this video we'll clear our shopping cart model on checkout. A few videos ago we cleared the shopping cart cookies when a user checks out, but we didn't clear the model for logged in users when they check out. We'll knock that out in this video... #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 2:00 - View Overview 2:55 - Get Current User 3:47 - Import Profile Model 4:15 - Delete O...
Free A.I. Image Prompt Training From Google?!
Переглядів 68328 днів тому
Google Arts and Culture has a free Image prompt training game. It generates an image, and then you have to reverse engineer the AI Prompt that would have created that image. The game then scores you and if you do well enough, you move on to the next level. The game is called "Say What You See" and can be found here: artsandculture.google.com/experiment/say-what-you-see/jwG3m7wQShZngw
Shipped Buttons - Django Wednesdays ECommerce 41
Переглядів 1,2 тис.Місяць тому
In this video we'll add Shipped and Unshipped buttons to our order dashboard for our ecommerce app with Django and Python. We want to be able to mark an item as being shipped on our dashboard. But we also want to be able to mark it not shipped, if we accidentally marked it shipped when it isn't. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:34 - Add Form To Single Order 5:30 - Bu...
Dashboard Item Pages - Django Wednesdays ECommerce 40
Переглядів 1,4 тис.Місяць тому
In this video we'll build onto our Shipping Dashboard by making each order clickable. When clicked, they'll point to a separate page with order items. We need a page for both shipped and unshipped orders. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:15 - Add URL to URLS.py 2:01 - Add Links To Dashboard 3:15 - Create Orders View 3:50 - Create Orders.html Page 4:19 - Get Order Fro...
Shipping Dashboard - Django Wednesdays ECommerce 39
Переглядів 1,5 тис.Місяць тому
In this video we'll create a shipping dashboard for our ecommerce website with Django and Python. In the last few videos we sorted out our orders and ordered items in the Django admin area. Now we want to take all that and turn it into two dashboards on the actual website, one for shipped items and one for un-shipped items. Codemy.com/pulsetto COUPON CODE: codemy5 5% Off and Free Shipping #djan...
Reduce Stress When Coding?! - Try Pulsetto!
Переглядів 851Місяць тому
As a coder, you know that stress and anxiety are part of the job. Project deadlines, code that just won't work the way it's supposed to work, co-workers who might be making things worse... stress and axiety are often baked into the job. That's why I'm always on the lookout for anything that can help manage that stress and anxiety, and that's why I want to talk to you today about this awesome th...
Automatically Add Shipping Date - Django Wednesdays ECommerce 38
Переглядів 1,2 тис.Місяць тому
In this video we'll automatically add a Shipping Date to our Ecommerce App with Django. In the last video we added a "shipped" checkbox to click when we ship an item. In this video we'll create the functionality to add a shipped date automatically, whenever that checkbox is clicked. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:00 - Add Date Shipped To Model 3:04 - Import pre_sav...
Install R Studio - Machine Learning Mondays 1
Переглядів 1,2 тис.Місяць тому
In this video we'll download and install both the R Programming Language and R Studio. R is a statistical programming language used in a lot of machine learning and artificial intelligence. R Studio is the popular IDE used for R. We'll also play around with R Studio a bit, and customize the look and layout. #machinelearning #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:15 - Download R La...
Shoot Bullets - PyGame Thursdays 32
Переглядів 8242 місяці тому
In this video we'll add the ability for our character to shoot bullets for our platformer with Pygame and Python. Shooting is super important in most games. In this video I'll show you how to do it in Pygame. #pygame #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:00 - Create Bullet Class 2:02 - Set Bullet Velocity and Range 2:48 - Load Bullet Image 6:33 - Set Negative Velocity for Left Bu...
Order Item Inlines - Django Wednesdays ECommerce 37
Переглядів 1,3 тис.2 місяці тому
In this video we'll add our Order Items to our Orders on the Django Admin Area. When we click an order in the admin area, we want the ordered items to appear there as well. We'll accomplish this using order inlines. I'll show you how in this video. We'll also add a shipped field and the date field. And we'll clear the cart as well. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 1:36...
Sprite Mask Magic! - PyGame Thursdays 31
Переглядів 5792 місяці тому
In this video we'll add a Sprite Mask to our Platformer game with PyGame and Python. Our player doesn't fall off the cliff when they hang over, because the transparent part of the image is still touching. We can get around that problem by using Sprite Masks to mask just the outline of the player and use that for our collision detection. #pygame #codemy #JohnElder Timecodes 0:00​​ - Introduction...
Attach Order Items - Django Wednesdays ECommerce 36
Переглядів 1,4 тис.2 місяці тому
In this video we'll add order Items to our orders for our Ecommerce app with Django and Python. In the last video, we generated an order for our customers who check out. In this video we'll generate order items, the things they bought, and add them to the order. #django #codemy #JohnElder Timecodes 0:00​​ - Introduction 3:25 - Get Order ID 4:25 - Get Product ID 5:32 - Import Product Model 6:00 ...
Title Case Capitalization - Javascript Programming 26
Переглядів 3242 місяці тому
Title Case Capitalization - Javascript Programming 26
Sprite Animations - Let's Move! - PyGame Thursdays 30
Переглядів 7222 місяці тому
Sprite Animations - Let's Move! - PyGame Thursdays 30
Generate Orders - Django Wednesdays ECommerce 35
Переглядів 1,9 тис.2 місяці тому
Generate Orders - Django Wednesdays ECommerce 35
String Methods - Javascript Programming 25
Переглядів 3242 місяці тому
String Methods - Javascript Programming 25
Wrap Around Movement - PyGame Thursdays 29
Переглядів 5652 місяці тому
Wrap Around Movement - PyGame Thursdays 29
Billing Info - Django Wednesdays ECommerce 34
Переглядів 1,9 тис.2 місяці тому
Billing Info - Django Wednesdays ECommerce 34
JS Sets - Javascript Programming 24
Переглядів 4282 місяці тому
JS Sets - Javascript Programming 24
Platformer Game Jumping - PyGame Thursdays 28
Переглядів 5542 місяці тому
Platformer Game Jumping - PyGame Thursdays 28
Fix Shipping Model Problem - Django Wednesdays ECommerce 33
Переглядів 1,5 тис.2 місяці тому
Fix Shipping Model Problem - Django Wednesdays ECommerce 33
Python Vs. PHP - Which Is Better?!
Переглядів 6 тис.2 місяці тому
Python Vs. PHP - Which Is Better?!
JS Maps - Javascript Programming 23
Переглядів 4853 місяці тому
JS Maps - Javascript Programming 23
Add Gravity To Our Platformer Game - PyGame Thursdays 27
Переглядів 7663 місяці тому
Add Gravity To Our Platformer Game - PyGame Thursdays 27
Order Checkout - Django Wednesdays ECommerce 32
Переглядів 2,3 тис.3 місяці тому
Order Checkout - Django Wednesdays ECommerce 32
Switch Statements - Javascript Programming 22
Переглядів 4463 місяці тому
Switch Statements - Javascript Programming 22
2D Vector Movement - PyGame Thursdays 26
Переглядів 1,1 тис.3 місяці тому
2D Vector Movement - PyGame Thursdays 26

КОМЕНТАРІ

  • @dannelalstral5160
    @dannelalstral5160 17 годин тому

    Chien ça ne marche pas

  • @devanshumishra6430
    @devanshumishra6430 17 годин тому

    Bahut Smash Smash Karta Hai Bhai Tum

  • @vedanshvyas-yl4dd
    @vedanshvyas-yl4dd 18 годин тому

    providing source code with videos would be extremely helpful ,,,, thanks

  • @rohallaheghbali4889
    @rohallaheghbali4889 18 годин тому

    what is different between django calendar and just html calendar ?

  • @devanshumishra6430
    @devanshumishra6430 19 годин тому

    Bhai Tum Bahot Smash Smash Karta Hai

  • @gideonozuluoha9029
    @gideonozuluoha9029 19 годин тому

    Great and very helpful content... how about you remove your face from the video so we can see the code better rather than always scrolling from right to left ... just my opinion tho

  • @devanshumishra6430
    @devanshumishra6430 19 годин тому

    Bahut Smash Karta Hai Bhai Tum

  • @devanshumishra6430
    @devanshumishra6430 23 години тому

    bahut smash karta hai bhi tum

  • @kevinbarrantes767
    @kevinbarrantes767 День тому

    The best Python-Django Tutorial ever seen, thank u so much!!!!!!

  • @alvinchisom4841
    @alvinchisom4841 День тому

    i am so happy i reached this far, but i wish i asked this question earlier how can we add size or color to the product, i.e if the book has big size and small size or color blue or red. and i want to buy big size color red. is that possible if i may ask and how can we go about it.

    • @Codemycom
      @Codemycom День тому

      Just add those fields to the model and form in the same way we’ve added everything like price etc

    • @alvinchisom4841
      @alvinchisom4841 22 години тому

      You say I don’t have to write any JavaScript code for it

    • @Codemycom
      @Codemycom 21 годину тому

      @@alvinchisom4841 well yeah, you'll have to do some work on the cart function js too

    • @alvinchisom4841
      @alvinchisom4841 20 годин тому

      @@Codemycom wow that will be tough for me but i will give it a try thanks

  • @nishant7083
    @nishant7083 День тому

    Hey man love this vid , but can we expect more of these

    • @Codemycom
      @Codemycom День тому

      Yeah coming soon

    • @nishant7083
      @nishant7083 День тому

      @@Codemycom love from India bro I need to learn it for data analysis

  • @devda20rs
    @devda20rs День тому

    Incredibly helpful to me as I start working on a new team. Thanks for the great work!

    • @Codemycom
      @Codemycom 21 годину тому

      Great to hear!

  • @latasuthar7904
    @latasuthar7904 День тому

    Sir is it fine if i code in virtual studio code ? And this much numpy is enough for data science?

    • @Codemycom
      @Codemycom 21 годину тому

      Sure, you can use vscode if you like. But why?

  • @bearz_ftw126
    @bearz_ftw126 День тому

    Hello! Do you know how to generate a txt file but have it attached to the model as a field?

    • @Codemycom
      @Codemycom 21 годину тому

      I don't have any videos on that

  • @dreido_it2952
    @dreido_it2952 День тому

    thank you very much, I was able to install flutter in my laptop because of this vid. I have a job interview for a flutter developer position so this really save me.

  • @myty5563
    @myty5563 День тому

    that little space between ' option:selected' got me thinking for an good 10 minutes hahahaha good series, enjoying it a lot

  • @just4fun277
    @just4fun277 2 дні тому

    Is there any faster way to do this cause like its gonna take me soooo long i have a lot of html files

  • @MedetAk-kb5jq
    @MedetAk-kb5jq 2 дні тому

    hocam dart eğitimi bitince flutter eğitimine geçebilecekmiyim

  • @spyderrex
    @spyderrex 3 дні тому

    I don't know if you figured it out or not, but you are indeed able to log the user back in after changing the password. I think your error came from making the password None. I kept the login part of the code and it worked fine after I changed the password.

    • @spyderrex
      @spyderrex 3 дні тому

      😂 I guess u did figure it out. I shoulda finished watching the video.

    • @Codemycom
      @Codemycom День тому

      ha

  • @user-my2zq6td8z
    @user-my2zq6td8z 3 дні тому

    oh that's amazing

  • @user-he3ud4yd4n
    @user-he3ud4yd4n 3 дні тому

    How can i handle a forgot password situation for the user

    • @Codemycom
      @Codemycom День тому

      we haven't addressed that

  • @leocambisaca26
    @leocambisaca26 4 дні тому

    By any chance do you know how to resolve this issue Warning: This version only understands SDK XML versions up to 3 but an SDK XML file of version 4 was encountered. This can happen if you use versions of Android Studio and the command-line tools that were released at different times.

    • @Codemycom
      @Codemycom День тому

      google it or paste it into chatgpt

  • @berlinemoscow
    @berlinemoscow 4 дні тому

    Hello, so can I only do better with python or should I also learn JS to enable me be a good programmer?

    • @Codemycom
      @Codemycom День тому

      more is always better

  • @kirvala2349
    @kirvala2349 4 дні тому

    def dot_it(self): text = self.screen.text() possible_chars_list = ['x', '/', '-', '+', '^'] is_valid = True for i in text: if i in possible_chars_list: is_valid = True elif i == ".": is_valid = False if is_valid: print(text[len(text)-1]) if text[len(text)-1] in possible_chars_list: pass else: self.screen.setText(f'{text}.') dot function

  • @kurtm9744
    @kurtm9744 4 дні тому

    But Django is such a pain to get set up compared to Rails. So much manual importing of other files and setup is required. Rails is so much faster to code in.

    • @Codemycom
      @Codemycom День тому

      There is literally no manually importing required in django. Starting a project in django couldn't be easier...literally one terminal command.

    • @kurtm9744
      @kurtm9744 День тому

      @@Codemycom are there ways to automate the imports? Not sure I understand

    • @kurtm9744
      @kurtm9744 День тому

      By the way, I do love all your material ❤️ I just feel Rails is faster to code in compared to Django, but I’m happy to switch to Django completely if someone can show me how Django development can be sped up.

  • @mrheatyoutube
    @mrheatyoutube 4 дні тому

    Share that post please do the video

    • @Codemycom
      @Codemycom День тому

      huh?

    • @mrheatyoutube
      @mrheatyoutube День тому

      @@Codemycom share function how to implement website please do the video

    • @Codemycom
      @Codemycom День тому

      @@mrheatyoutube this playlist is closed

  • @kevinkurani93
    @kevinkurani93 5 днів тому

    Hi John. Loving this series. Will you do any more videos on pyqt5? In tkinter you talked about treeview for example. But in pyqt5 you didn't talk about a similar widget.

  • @viniciusRocha-v8j
    @viniciusRocha-v8j 5 днів тому

    hi, i've looking for a way to better custom my treeviw, here i found a way to improve it but not reach where i wana arave, unfortunatly the ctk dont have its own kind of treeview, and the documentation of Tkinter and ttk is really bad, do you know where should i look for?

  • @kullervo3289
    @kullervo3289 5 днів тому

    Thank you for the video. Everything worked great, but my deployed site seems to have broken image thumbnails for some reason. Not 100% how to use the admin panel - I am guessing we cannot, since now the app is deployed, would have to take it down and repeat process?

    • @Codemycom
      @Codemycom День тому

      you can still use admin...you likely missed a step in the process.

  • @skillsnwokoloanthony7557
    @skillsnwokoloanthony7557 5 днів тому

    Btw who else feels deployment and hosting has it's own learning curve 😅 Like deployment on something like vercel or railway Hosting your database in something like supabase, host your bucket for media in something like aws or google cloud Securing all your environment variables and testing This can keep you going for a whole week depending on the scale of the application

  • @skillsnwokoloanthony7557
    @skillsnwokoloanthony7557 5 днів тому

    I am not paying 5 dols for a test project 💀😂 Why not use vercel

    • @Codemycom
      @Codemycom 5 днів тому

      You didn’t pay attention…they offer a free account for your test project. But like, obviously use any company you want... it doesn't matter in the least.

    • @skillsnwokoloanthony7557
      @skillsnwokoloanthony7557 5 днів тому

      @@Codemycom sure 👍 I have used railway in the past when it was free, but now I feel vercel is just supper great for developers looking to put something online supper quick and easy with less setups and totally free 🐥 I have like 7 projects on vercel and I haven't paid a dime But with railway just 3 and I was out of resources 😂 And the most important thing with vercel you understand how hosting really works and pick up useful skills like serving your media and static by just doing extra URL configuration (if it's a small project and you don't want to use White noise and gunicornn blah blah 🫠) Railway just does all the heavy lifting for you

  • @davidkingsley8940
    @davidkingsley8940 5 днів тому

    How does using cloudflare affect the load speed of the website?

    • @Codemycom
      @Codemycom 5 днів тому

      noticeably, not at all. Most major websites use them.

  • @oualidouarem4334
    @oualidouarem4334 5 днів тому

    You saved my day Bro. Thanks a lot !

  • @BlackCodeDev
    @BlackCodeDev 6 днів тому

    Hi please Mr John I want to let you know how we can create country list and country phone code lists please if you have time to make professional billing and signup form we will wait

    • @Codemycom
      @Codemycom 6 днів тому

      Sorry, I won’t be covering that

    • @BlackCodeDev
      @BlackCodeDev 6 днів тому

      @@Codemycom country list that have a module in python

  • @deemwinch
    @deemwinch 6 днів тому

    I'm not making migrations with you right now, waltuh

  • @TheLummen.
    @TheLummen. 6 днів тому

    Let's Goooo ! I'm pumped ! But will apply this tomorrow. Too much time on finding why the app was not deploying !

  • @AhmedNoors
    @AhmedNoors 6 днів тому

    Hi John I am very confused about how to change Django templates can you explain more, please

    • @Codemycom
      @Codemycom 6 днів тому

      No, we aren't using any templates in this project...I'm not really sure even what you mean by templates...

    • @AhmedNoors
      @AhmedNoors 6 днів тому

      @@Codemycom I mean bootstrap template but now I understand

  • @javokhir.offensive
    @javokhir.offensive 6 днів тому

    All I got is back pain

  • @yasinsaleem2520
    @yasinsaleem2520 6 днів тому

    newer versions of PIL have removed ANTIALIAS instead use Image.LANCZOS or Image. Resampling.LANCZOS hope this helps

  • @prasadmande8489
    @prasadmande8489 6 днів тому

    If possible can we connect??

    • @Codemycom
      @Codemycom 5 днів тому

      you're talking to me right here

  • @prasadmande8489
    @prasadmande8489 6 днів тому

    Hi sir I would like to work with you.

    • @Codemycom
      @Codemycom 6 днів тому

      Sorry, I don't do consulting work.

  • @faru2301
    @faru2301 6 днів тому

    Love from kerala🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴🌴

    • @nattravel
      @nattravel 6 днів тому

      എവിടെ പോയാലും മലയാളി😂😂😂

    • @Codemycom
      @Codemycom 6 днів тому

      thanks!

  • @MM-jr5sr
    @MM-jr5sr 6 днів тому

    Working as of June 26 2024

    • @Codemycom
      @Codemycom 5 днів тому

      yeah, it will always work

  • @Codemycom
    @Codemycom 6 днів тому

    Watch Django Wednesdays Ecommerce Playlist Subscribe To My UA-cam Channel: bit.ly/3OBQJfN bit.ly/2IGzvOR See More At: Join My Facebook Group: Codemy.com bit.ly/2GFmOBz Learn to Code at Codemy.com Buy a Codemy T-Shirt! Take 50% off with coupon code: youtube50 bit.ly/2VC9WUN Get The Code bit.ly/47xAhWJ

  • @MM-jr5sr
    @MM-jr5sr 6 днів тому

    My man! Been trying to install all this for 3 days and FINALLY it seems to be done!

  • @quaterman1270
    @quaterman1270 6 днів тому

    x coordinate starts on the left side and the y coordinates start at the top. Your x was correct but your y coordinate needs to sart at the top. Top is 0 and bottom is 200

    • @Codemycom
      @Codemycom 5 днів тому

      seemed to work fine in the video

    • @quaterman1270
      @quaterman1270 5 днів тому

      @@Codemycom of course it works, the coordinates of y are just wrong :D Did you not notice at 10:04 that your rectangle was not at the position you expected?

  • @Steve_Minecraft995
    @Steve_Minecraft995 7 днів тому

    The only videos that get low views are legendary ones like this one ❤

  • @heinoplaatjies5334
    @heinoplaatjies5334 7 днів тому

    Hi, thanks for this great video. Tell me, which would you prefer, sqlite or msql? Which of the two is more resource intensive, and which can easily be bundled with python kivy apps in an install file. I assume is sqlite since it is coming with python already?

    • @Codemycom
      @Codemycom 5 днів тому

      mysql...sqlite is just for testing purposes

  • @arminjafri4062
    @arminjafri4062 7 днів тому

    hi John when I create this function in cart.py have an error this text is error File "F:\ecommerce django\ecom\cart\cart.py", line 19, in add product_qty = int(quantity) ^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: '' thanks for this excellent course

    • @Codemycom
      @Codemycom 5 днів тому

      check your code vs the video to see what you did differently

    • @arminjafri4062
      @arminjafri4062 3 дні тому

      not different with your code say not accept empty string

    • @arminjafri4062
      @arminjafri4062 3 дні тому

      this problem what means?

  • @andreiinthedesktopworld1178
    @andreiinthedesktopworld1178 7 днів тому

    how do i use e.get in a different function?