BlogHide Resteemscodemy (64)in django • 3 months agoPayment Success/Failure Pages - Django Wednesdays ECommerce 51In this video we'll create our payment success and payment failure pages for our ecommerce app with Django and Python. When a customer finished making a payment thru PayPal, they get redirected…codemy (64)in django • 3 months agoHow To Use Paypal IPN Data - Django Wednesdays ECommerce 50In this video we're going to capture the Paypal IPN data that's being sent to our app and do something with it. We've set up the framework to grab the data, but now we want to use it to validate…codemy (64)in django • 4 months agoPaypal IPN - Django Wednesdays ECommerce 49In this video we'll start to set up Paypal IPN for our Ecommerce Site with Django and Python. IPN stands for Instant Payment Notification, and it's what sends information about a transaction back…codemy (64)in django • 4 months agoNgrok For Local Paypal Testing - Django Wednesdays ECommerce 48In this video we'll set up Ngrok so that we can test our PayPal Payments locally for our ecommerce app with Django and Python. In the last video we set up PayPal, but it only really works if…codemy (64)in django • 4 months agoTake Paypal Payments On Our Site - Django Wednesdays ECommerce 47In this video we'll set up Paypal Payments on our Django Ecommerce site. Accepting Paypal on our site is important, and easier than you may think! We'll implement the Django-Paypal library in…codemy (64)in django • 5 months agoPaypal Sandbox Accounts - Django Wednesdays ECommerce 46In this video we'll start to set up payment processing for our Django Ecommerce App. First we'll focus on Paypal. To get started we need a couple of Paypal Sandbox accounts. We'll create both a…codemy (64)in tkinter • 5 months agoBuild 3 Tkinter Apps Using Pieces and A.I. In Seconds!In this video we'll use Pieces to build out three Tkinter apps in seconds. We'll build a Calculator, a simple CRM App, and a Blackjack game. We'll have Pieces write the code for us, and make…codemy (64)in django • 5 months agoDomain Name For Our Project - Django Wednesdays ECommerce 45In 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…codemy (64)in django • 5 months agoPush Our App To Web Hosting - Django Wednesdays ECommerce 44In 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…codemy (64)in django • 5 months agoAdd Postgres Cloud Database - Django Wednesdays ECommerce 43In 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…codemy (64)in django • 6 months agoClear Shopping Cart Model - Django Wednesdays ECommerce 42In 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…codemy (64)in ai • 6 months agoFree A.I. Image Prompt Training From Google?!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…codemy (64)in django • 6 months agoShipped Buttons - Django Wednesdays ECommerce 41In 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.…codemy (64)in django • 6 months agoDashboard Item Pages - Django Wednesdays ECommerce 40In 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…codemy (64)in django • 6 months agoShipping Dashboard - Django Wednesdays ECommerce 39In 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…codemy (64)in django • 7 months agoAutomatically Add Shipping Date - Django Wednesdays ECommerce 38In 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…codemy (64)in tkinter • 7 months agoMenu Buttons - Intro To Tkinter 11In this video we'll learn how to use Menu Button popups for Tkinter. Menu buttons are similar to the regular Menu bars we looked at several videos ago... Except they aren't bars, they're buttons…codemy (64)in r • 7 months agoInstall R Studio - Machine Learning Mondays 1In 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…codemy (64)in pygame • 7 months agoShoot Bullets - PyGame Thursdays 32In 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…codemy (64)in django • 7 months agoOrder Item Inlines - Django Wednesdays ECommerce 37In 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…