2015
14:19 hours
├── 01 Up and Running With Python
│ ├── 001 Welcome.mp4
│ ├── 002 Installing Python.mp4
│ └── 003 Hello World.mp4
├── 02 The Basics Data Types
│ ├── 001 Exercise Files.pdf
│ ├── 001 Placeholders in Strings.html
│ ├── 001 Variables.mp4
│ ├── 002 Multiple Assignment.mp4
│ ├── 003 Data Types and Ints.mp4
│ ├── 004 Strings.mp4
│ ├── 005 ListsArrays.mp4
│ ├── 006 List Functions.mp4
│ ├── 007 Dictionaries.mp4
│ ├── 008 Dictionary Functions.mp4
│ └── 009 Tuples.mp4
├── 03 Conditions and Loops
│ ├── 001 Exercise Files.pdf
│ ├── 001 If-Else Statements.mp4
│ ├── 002 Relational Operators.mp4
│ ├── 003 Nested IfElse.mp4
│ ├── 004 Elif Statements.mp4
│ ├── 005 Logical Operators.mp4
│ ├── 006 For Loops.mp4
│ ├── 007 While Loops.mp4
│ ├── 008 Nested For Loops.mp4
│ ├── 009 Prime Number Generator.mp4
│ ├── 010 Pass, Break and Continue.mp4
│ ├── 011 Try and Except.mp4
│ ├── 012 Commenting.mp4
│ └── 013 Quick Tips.mp4
├── 04 Functions
│ ├── 001 Creating our own Functions.mp4
│ ├── 002 Global and Local Vars.mp4
│ ├── 003 Abs and Bool.mp4
│ ├── 004 Help and Dir.mp4
│ ├── 005 Eval and Exec.mp4
│ ├── 006 Str, Int, Float.mp4
│ └── 007 Recap and Sum.mp4
├── 05 Classes Object Orientated Programming
│ ├── 001 Basics of Classes.mp4
│ ├── 002 Functions in Classes.mp4
│ ├── 003 Class Attributes.mp4
│ ├── 004 Inheritance.mp4
│ └── 005 Overriding Methods.mp4
├── 06 File InputOutput
│ ├── 001 Creating a File.mp4
│ ├── 001 Creating a File Windows.html
│ ├── 002 Reading a File.mp4
│ ├── 003 Writing to a File.mp4
│ ├── 004 Appending to Files.mp4
│ └── 005 Copying Files.mp4
├── 07 Using Python Modules
│ ├── 001 Guessing Game Challenge.pdf
│ ├── 001 Random Module – Randint.mp4
│ ├── 002 Exercise Files.pdf
│ ├── 002 Guessing Game.mp4
│ ├── 003 Random Module – Shuffle and Choice.mp4
│ ├── 004 Sys Module.mp4
│ ├── 005 Time Module.mp4
│ ├── 006 Turtle Module.mp4
│ ├── 007 For Loops in Turtle.mp4
│ ├── 008 Up and Down Functions.mp4
│ ├── 009 Coloring in Turtle.mp4
│ └── 010 Functions in Turtle.mp4
├── 08 Crawling The Web
│ ├── 001 Re Module.mp4
│ ├── 001 Stock Quotes .py.pdf
│ ├── 002 Crawling The Web Stocks.mp4
│ ├── 002 Weather .py.pdf
│ ├── 003 Crawling The Web Weather.mp4
│ ├── 003 Definition .py.pdf
│ └── 004 Crawling The Web Definition.mp4
├── 09 Beautiful Soup HTML Parsing
│ ├── 001 Intro to Beautiful Soup.mp4
│ ├── 002 Installing the Beautiful Soup Module.mp4
│ ├── 003 Prettify with Soup.mp4
│ ├── 004 Drilling Down.mp4
│ ├── 005 Functions in Soup.mp4
│ ├── 006 .String and .Parent.mp4
│ ├── 007 Searching in Soup.mp4
│ ├── 008 Weather Parsing.mp4
│ └── 009 Antonym Parsing.mp4
├── 10 MatPlotLib – Charts, Plots and 3D Figures
│ ├── 001 Intro to MatPlotLib.mp4
│ ├── 002 First Graph.mp4
│ ├── 003 Understanding the MatPlotLib Interface.mp4
│ ├── 004 Graph Labels.mp4
│ ├── 005 Creating a Graph from a File.mp4
│ ├── 006 Understanding SubPlots and Figures.mp4
│ ├── 007 Coloring of Graph.mp4
│ ├── 008 Multiple Plots in a Graph.mp4
│ ├── 009 Multiple Graphs in a Figure.mp4
│ ├── 010 What about 3 graphs.mp4
│ ├── 011 Bar Graphs Intro.mp4
│ ├── 012 Modifying our Bar Graph.mp4
│ ├── 013 Pie Chart Intro.mp4
│ ├── 014 Modifying our Pie Chart.mp4
│ ├── 015 Adding a Legend.mp4
│ ├── 016 3D Graphics Intro.mp4
│ ├── 017 3D Scatter Plots.mp4
│ ├── 018 Multiple 3D Scatter Plots.mp4
│ ├── 019 3D Bar Graphs.mp4
│ └── 020 3D Wireframes.mp4
├── 11 Data Analysis with Pandas
│ ├── 001 Intro to Pandas.mp4
│ ├── 002 Series Data Structure.mp4
│ ├── 003 Series Continuation.mp4
│ ├── 004 Data Frames Intro.mp4
│ ├── 005 Creating a CSV.mp4
│ ├── 006 Reading a CSV.mp4
│ ├── 007 Writing to a CSV.mp4
│ ├── 008 Getting our Data.mp4
│ ├── 009 Slicing Data Frames.mp4
│ ├── 010 Data Manipulation.mp4
│ ├── 011 Indexing and More.mp4
│ ├── 012 Merging Data Frames.mp4
│ ├── 013 GroupBy Function.mp4
│ ├── 014 MovieLens Data.mp4
│ ├── 015 Heavy Data Analysis.mp4
│ ├── 016 MatPlotLib with Pandas.mp4
│ └── 017 Lets Finish This.mp4
├── 12 Python GUI with Tkinter
│ ├── 001 Tkinter Introduction.mp4
│ ├── 002 Labels.mp4
│ ├── 003 Buttons.mp4
│ ├── 004 Layouts.mp4
│ ├── 005 Fill.mp4
│ ├── 006 Grid Layout.mp4
│ ├── 007 Entries.mp4
│ ├── 008 Check Buttons.mp4
│ ├── 009 GUI Login.mp4
│ ├── 010 Actions on Button Click.mp4
│ ├── 011 Binding Functions.mp4
│ ├── 012 More Binding.mp4
│ ├── 013 Getting Entry Data.mp4
│ ├── 014 Message Box.mp4
│ ├── 015 Drop Down Menus.mp4
│ ├── 016 Calculator Part 1.mp4
│ ├── 017 Calculator Part 2.mp4
│ ├── 018 Calculator Part 3.mp4
│ ├── 019 Calculator Part 4.mp4
│ ├── 020 Canvas Intro.mp4
│ ├── 021 Canvas Objects.mp4
│ ├── 022 Canvas Fill.mp4
│ ├── 023 Random Rectangle Generator.mp4
│ ├── 024 Text and Arcs.mp4
│ └── 025 Animations.mp4
├── 13 Our First Game Bounce
│ ├── 001 Creating our Ball.mp4
│ ├── 002 Adding the Game Interface.mp4
│ ├── 003 Adding the Paddle.mp4
│ ├── 004 Final Touches.mp4
│ └── 005 Recap.mp4
├── 14 Our Second Game Pong
│ ├── 001 Creating our Ball.mp4
│ ├── 001 Pong .py.pdf
│ ├── 002 Adding Paddle1.mp4
│ ├── 003 Adding Paddle2.mp4
│ └── 004 Final Touches.mp4
└── 15 Whats Next
└── 001 Up and Beyond.mp4