Web Scraping with Playwright in Python
Gathering large amounts of data from websites manually is inefficient and unfeasible but you can use appropriate tools to help you. Let's learn how to use Playwright in Python to…
Favourite tutorials for developers
Coding, sometimes called computer programming, is how we communicate with computers. Code tells a computer what actions to take, and writing code is like creating a set of instructions. By learning to write code, you can tell computers what to do or how to behave in a much faster way. You can use this skill to make websites and apps, process data, and do lots of other cool things.
Gathering large amounts of data from websites manually is inefficient and unfeasible but you can use appropriate tools to help you. Let's learn how to use Playwright in Python to…
Logging is a crucial component in the software life cycle. It allows you to take a peek inside your application and understand what is happening, which helps you address the…
Decorators are an extremely useful feature in Python language that allows programmers to change the behaviour of a function without changing the function. In this post, we are going to…
Managing your Python application’s environment variables can be a challenge, especially if you’re dealing with sensitive information like API keys or database credentials. This is where python-dotenv comes into play.…
Environment variables are one of the key ways software developers provide the potentially sensitive or environment specific information your application will need to perform its tasks. Using a .env file…
Let's learn how to develop RESTful APIs with Python and Flask. Throughout this article, we will use Flask and Python to develop a RESTful API. We will create an endpoint…
Due to the slowness of repositories or even lack thereof being updated with specific versions of Python, I’ve decided to move some of my environments over to Pyenv to allow…
Microservices Architecture has captured the imagination of the software industry. Unless you’ve been living under a rock, you must have definitely heard or read about microservices. All the way from…
If you are familiar with modern web development then you will have encounter the terms like REST and API. If you have worked with APIs or heard of these terms…
Pip is a tool for installing Python packages. With pip, you can search, download, and install packages from Python Package Index (PyPI) and other package indexes. This guide explains how…