
This video provides an overview of the entire course.
Discover PyCharm, a powerful and easy-to-use IDE which provides smart Python coding support and seamless integration with Git.
Learn about Version Control Systems which special focus on Git, a modern distributed VCS.
Grasp how to use PyCharm and Git to setup and run a sample Python code project.
Python standard library offers lots of modules that provide high-level utilities to accomplish common tasks (interacting with operating systems, handling dates and time, logging and so on).
Learn how to use the pip utility to install new Python packages alongside the local standard library.
Discover Logging, which is a way to record application events that helps you with problem determination.
What are regular expressions, which are a very powerful way to search for specific patterns in a string?
Determine how Decorators allow dynamic extension of functions behavior. Context Managers are a way to easily allocate/release transactional resources in a managed fashion.
In this video, we are going to learn about Generators and how they behave like iterators and help to lazily evaluate logic for producing a set of values that you can iterate on. Generator expressions are a short syntax to create generators on the fly.
Discover how Magic methods are a way to enrich your classes with the capability to emulate built-in Python types and structures, resulting in more Pythonic code.
Study how Python native idioms helps you to write less code that runs faster and is more secure
Determine how Python scripting is very efficient when it comes to walk folders and manipulate their contents.
Study how File compression can be helpful, especially when you need to send big amounts of data through the wire.
In this video, you will learn how to read and write files using python.
Explore CSV file format and libraries. Also, learn how to read and write CSV file.
Take a look at CSV file format and libraries. Also, learn how to read and write CSV file.
Learn about Word file format and libraries. Also, learn how to read and write them.
Study about Excel XLS which is the binary file format used by the Microsoft Excel application to store data.
Images are worth a thousand words; therefore we use them a lot in our everyday life. Being able to read images from Python code opens up a whole new world of possibilities to manipulate them.
QR codes are an easy way to embed information into an image that can be photographed and then automatically parsed in order to retrieve such information.
In order to interact with websites you need an understanding of the protocols and technologies that make up the World Wide Web and proper tooling to leverage its capabilities
APIs provide programmatic access to datasets and operations from an online service provider. They are based on the HTTP protocol and allow any HTTP-compliant device to interact with them.
Requests can be used to interact with APIs, but you need to know how HTTP works in order to do that.
In order to use an API you need to understand how it works by reading its documentation and usage examples, and usually you need to ask for an authentication token.
OpenWeatherMap is a weather observation and forecast service that provides a free-tiered web API. We will learn how easy it is to retrieve weather data from it using the PyOWM library.
Problem: programmatically send a push notification to a mobile app running on your Android smartphone.
Problem: programmatically send an SMS to a mobile phone number using Twilio.
Problem: save your files on Dropbox, then view them on your browser.
Web frameworks help you being productive at web development and Model-View-Control favors a clear separation of concerns in your web app.
Flask and Django are the two prominent web frameworks in the Python ecosystem.
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.
This video course is about leveraging the Python programming language and its thriving ecosystem to save yourself time and money when doing common routine tasks. Nobody wants to do boring and time-consuming tasks: days have 24 hours and you should squeeze out the most of this time for yourself - automating the boring tasks gives you back time to focus on what you really like to do. Moreover, this is also the chance for you to learn a great general-purpose language such as Python, with which you can build very cool applications both at work and in your spare time.
The course is structured as an incremental learning path: you will start with a deep-dive into Python software development basics, then move on to write scripts to automate file system operations and file contents processing on your local host, then you will learn how to interact with web-based services such as websites and APIs in order to robotize the cool things that we do everyday - such as tweeting, posting to social networks, reading RSS feeds, etc. - moreover you will practice how to set up a web-based services yourself in the form of web applications and in the end you will learn how to analyze and visualize datasets in order to extract knowledge.
By the end of this course you will have learned how to proficiently write structured Python code in a wide range of applications – from one-liner scripts to complex web applications – aiming at the automation of lots of common everyday life tasks.
About the Author
Claudio Sparpaglione holds an MD in Computer Engineering from Università degli studi di Pavia, Italy, achieved in 2007. He later worked as software engineer and architect in various industries (Geospatial Application Systems development and integration, Web and Mobile Advertising, Telecommunications, Fashion Brand Protection).Claudio worked in London in 2014 for a UK start-up as a software engineer and in 2015 became CTO of an Italian start-up. He currently works for the largest Italian bank as application engineer and deals with innovation topics.
Claudio is a Pythonista with exposure to other languages (JavaScript, Java, and PHP). He’s passionate about the design and implementation of highly-scalable web systems and APIs, about cloud, mobile and scientific computing, and he’s fascinated by cryptocurrencies.
Claudio is a Linux advocate and an active contributor to the open source software community: he’s the maintainer of the PyOWM Python project and contributes to projects such as Requests and Reactive Manifesto.