Skip to main content

Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more)


Curriculum for the course Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more)

Learn Django, a Python web framework, in this full course. The course also covers pandas, matplotlib, JavaScript, ajax, xhtml2pdf, dropzone.js, and more! You will learn about: ➜ django concepts (models, views, templates, signals and more!) ➜ pandas dataframes ➜ matplotlib and seaborn integration ➜ pdf integration ➜ javascript ajax integration ➜ dropzone js for csv files ➜ working with base64 ➜ and more! ✏️ Course developed by Pyplane. Check out their channel: https://www.youtube.com/channel/UCQtHyVB4O4Nwy1ff5qQnyRw 💻 Source code and starter files: https://blog.pyplane.com/blog/django-report-app/ ⭐️ Coruse Contents ⭐️ ⌨️ (0:00:00​) intro ⌨️ (0:03:35​) django project setup part 1 ⌨️ (0:09:56​) django project setup part 2 ⌨️ (0:15:11​) django project setup part 3 ⌨️ (0:25:21​) customer model ⌨️ (0:30:49​) product model ⌨️ (0:36:30​) profile model + post_save signal ⌨️ (0:48:14​) sale model ⌨️ (1:12:05​) m2m_changed signal ⌨️ (1:19:15​) reports model ⌨️ (1:24:14​) first view and template ⌨️ (1:33:25​) working on the sales list ⌨️ (1:39:58​) navigating to the detail page ⌨️ (1:49:27​) creating the search form ⌨️ (1:58:15​) get the data from the search form ⌨️ (2:01:08​) first querysets and dataframes ⌨️ (2:17:05​) display dataframes in the templates ⌨️ (2:24:04​) dataframe for the positions ⌨️ (2:32:47​) get the sales id for position objects ⌨️ (2:38:00​) the apply function ⌨️ (2:49:01​) merge dataframes ⌨️ (2:54:57​) perform groupby ⌨️ (2:58:12​) working on the charts part 1 ⌨️ (3:02:58​) working on the charts part 2 ⌨️ (3:17:18​) hello world from the console ⌨️ (3:21:29​) adding the modal ⌨️ (3:29:04​) add the report form to the modal ⌨️ (3:35:45​) add the 'results by' field ⌨️ (3:50:02​) no data available alert ⌨️ (3:53:51​) add the chart to the modal ⌨️ (3:58:48​) create report objects ⌨️ (4:28:46​) adding alerts to the modal ⌨️ (4:33:27​) report list and detail page ⌨️ (4:41:35​) working on the report list ⌨️ (4:47:43​) working on the report detail ⌨️ (4:51:33​) first pdf ⌨️ (4:58:13​) the report pdf ⌨️ (5:04:19​) add dropzone + favicon ⌨️ (5:07:30​) working on the dropzone js part 1 ⌨️ (5:17:01​) working on the dropzone js part 2 ⌨️ (5:23:52​) uploading csvs ⌨️ (5:35:45​) first objects from file ⌨️ (5:49:27​) improving the dropzone ⌨️ (5:56:15​) dropzone js final touches ⌨️ (6:04:03​) adding my profile ⌨️ (6:09:42​) working on my profile ⌨️ (6:17:06​) authentication ⌨️ (6:31:14​) protecting the views ⌨️ (6:36:17​) adding the navbar ⌨️ (6:49:03​) the forgotten sale detail page ⌨️ (6:57:06​) outro + next steps 🎉 Thanks to our Champion supporters: 👾 Otis Morgan 👾 DeezMaster 👾 Katia Moran -- Learn to code for free and get a developer job: https://www.freecodecamp.org Read hundreds of articles on programming: https://freecodecamp.org/news And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp

Watch Online Full Course: Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more)


Click Here to watch on Youtube: Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more)


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more) courses free download, Plurasight Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more) courses free download, Linda Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more) courses free download, Coursera Django 3 Course - Python Web Framework (+ pandas, matplotlib, & more) course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee