Udemy - Automate the Boring Stuff with Python Programming (2015)

seeders: 0
leechers: 0
Added on March 30, 2016 by bardin Other > Tutorials
Torrent verified.



Udemy - Automate the Boring Stuff with Python Programming (2015) (Size: 2.42 GB)
 002 Basic Terminology and Using IDLE.mp436.3 MB
 001 Get Python Installed.mp422.91 MB
 003 Writing Our First Program.mp434.09 MB
 001 Flow Charts and Basic Flow Control Concepts.mp421.01 MB
 002 If, Else, and Elif Statements.mp441.76 MB
 003 While Loops.mp433.93 MB
 004 For Loops.mp429.72 MB
 003 Global and Local Scopes.mp437.72 MB
 002 Writing Your Own Functions.mp448.32 MB
 001 Pythons Built-In Functions.mp428.36 MB
 001 Try and Except Statements.mp436.79 MB
 001 Writing a Guess the Number Program.mp461.03 MB
 001 The List Data Type.mp442.39 MB
 002 For Loops with Lists, Multiple Assignment, and Augmented Operators.mp439.76 MB
 003 List Methods.mp453.61 MB
 004 Similarities Between Lists and Strings.mp457.95 MB
 001 The Dictionary Data Type.mp492.81 MB
 002 Data Structures.mp441.63 MB
 002 String Methods.mp460.76 MB
 001 Advanced String Syntax.mp435.17 MB
 003 String Formatting.mp412.64 MB
 001 Launching Python Programs from Outside IDLE.mp458.02 MB
 005 Regex Dot-Star and the CaretDollar Characters.mp474.71 MB
 007 Regex Example Program A Phone and Email Scraper.mp493.84 MB
 006 Regex sub Method and Verbose Mode.mp446.23 MB
 002 Regex Groups and the Pipe Character.mp414.7 MB
 003 Repetition in Regex Patterns and GreedyNongreedy Matching.mp478.07 MB
 004 Regex Character Classes and the findall Method.mp478.85 MB
 001 Regular Expression Basics.mp454.71 MB
 004 Deleting Files.mp435.88 MB
 002 Reading and Writing Plaintext Files.mp461.35 MB
 005 Walking a Directory Tree.mp430.19 MB
 001 Filenames and AbsoluteRelative File Paths.mp498.3 MB
 003 Copying and Moving Files and Folders.mp419.55 MB
 001 The raise and assert Statements.mp467.95 MB
 002 Logging.mp441.53 MB
 003 Using the Debugger.mp465.95 MB
 004 Controlling the Browser with the Selenium Module.mp463.02 MB
 003 Parsing HTML with the Beautiful Soup Module.mp462.87 MB
 001 The webbrowser Module.mp444.89 MB
 002 Downloading from the Web with the Requests Module.mp430.18 MB
 003 Reading and Editing PDFs.mp477.34 MB
 001 Reading Excel Spreadsheets.mp432.86 MB
 004 Reading and Editing Word Documents.mp462.09 MB
 002 Editing Excel Spreadsheets.mp426.71 MB
 001 Sending Emails.mp443.44 MB
 002 Checking Your Email Inbox.mp4111.04 MB
 001 Controlling the Mouse from Python.mp462.5 MB
 003 Screenshots and Image Recognition.mp442.88 MB
 004 Congratulations And next steps....mp41.83 MB
 002 Controlling the Keyboard from Python.mp428.25 MB


Description




A practical programming course for office workers, academics, and administrators who want to improve their productivity.
If you're an office worker, student, administrator, or just want to become more productive with your computer, programming will allow you write code that can automate tedious tasks. This course follows the popular (and free!) book, Automate the Boring Stuff with Python.
Automate the Boring Stuff with Python was written for people who want to get up to speed writing small programs that do practical tasks as soon as possible. You don't need to know sorting algorithms or object-oriented programming, so this course skips all the computer science and concentrates on writing code that gets stuff done.
This course is for complete beginners and covers the popular Python programming language. You'll learn basic concepts as well as:
Web scraping
Parsing PDFs and Excel spreadsheets
Automating the keyboard and mouse
Sending emails and texts
And several other practical topics
By the end of this course, you'll be able to write code that not only dramatically increases your productivity, but also be able to list this fun and creative skill on your resume.

Udemy - Automate the Boring Stuff with Python Programming (2015)
├── 01 Python Basics
│ ├── 001 Get Python Installed.mp4
│ ├── 002 Basic Terminology and Using IDLE.mp4
│ └── 003 Writing Our First Program.mp4
├── 02 Flow Control
│ ├── 001 Flow Charts and Basic Flow Control Concepts.mp4
│ ├── 002 If, Else, and Elif Statements.mp4
│ ├── 003 While Loops.mp4
│ └── 004 For Loops.mp4
├── 03 Functions
│ ├── 001 Pythons Built-In Functions.mp4
│ ├── 002 Writing Your Own Functions.mp4
│ └── 003 Global and Local Scopes.mp4
├── 04 Handling Errors with tryexcept
│ └── 001 Try and Except Statements.mp4
├── 05 Writing a Complete Program Guess the Number
│ └── 001 Writing a Guess the Number Program.mp4
├── 06 Lists
│ ├── 001 The List Data Type.mp4
│ ├── 002 For Loops with Lists, Multiple Assignment, and Augmented Operators.mp4
│ ├── 003 List Methods.mp4
│ └── 004 Similarities Between Lists and Strings.mp4
├── 07 Dictionaries
│ ├── 001 The Dictionary Data Type.mp4
│ └── 002 Data Structures.mp4
├── 08 More About Strings
│ ├── 001 Advanced String Syntax.mp4
│ ├── 002 String Methods.mp4
│ └── 003 String Formatting.mp4
├── 09 Running Programs from the Command Line
│ └── 001 Launching Python Programs from Outside IDLE.mp4
├── 10 Regular Expressions
│ ├── 001 Regular Expression Basics.mp4
│ ├── 002 Regex Groups and the Pipe Character.mp4
│ ├── 003 Repetition in Regex Patterns and GreedyNongreedy Matching.mp4
│ ├── 004 Regex Character Classes and the findall Method.mp4
│ ├── 005 Regex Dot-Star and the CaretDollar Characters.mp4
│ ├── 006 Regex sub Method and Verbose Mode.mp4
│ └── 007 Regex Example Program A Phone and Email Scraper.mp4
├── 11 Files
│ ├── 001 Filenames and AbsoluteRelative File Paths.mp4
│ ├── 002 Reading and Writing Plaintext Files.mp4
│ ├── 003 Copying and Moving Files and Folders.mp4
│ ├── 004 Deleting Files.mp4
│ └── 005 Walking a Directory Tree.mp4
├── 12 Debugging
│ ├── 001 The raise and assert Statements.mp4
│ ├── 002 Logging.mp4
│ └── 003 Using the Debugger.mp4
├── 13 Web Scraping
│ ├── 001 The webbrowser Module.mp4
│ ├── 002 Downloading from the Web with the Requests Module.mp4
│ ├── 003 Parsing HTML with the Beautiful Soup Module.mp4
│ └── 004 Controlling the Browser with the Selenium Module.mp4
├── 14 Excel, Word, and PDF Documents
│ ├── 001 Reading Excel Spreadsheets.mp4
│ ├── 002 Editing Excel Spreadsheets.mp4
│ ├── 003 Reading and Editing PDFs.mp4
│ └── 004 Reading and Editing Word Documents.mp4
├── 15 Email
│ ├── 001 Sending Emails.mp4
│ └── 002 Checking Your Email Inbox.mp4
└── 16 GUI Automation
├── 001 Controlling the Mouse from Python.mp4
├── 002 Controlling the Keyboard from Python.mp4
├── 003 Screenshots and Image Recognition.mp4
└── 004 Congratulations And next steps....mp4

Sharing Widget


Download torrent
2.42 GB
seeders:0
leechers:0
Udemy - Automate the Boring Stuff with Python Programming (2015)

All Comments

Awesome release bro, thanks a lot