S Vijay Balaji has Published 37 Articles

Writing a crontab file in Python using the Plan Module

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:44:18

51 Views

First, let us understand what a crontab file is. Cron is a software utility that helps us schedule tasks on the Unix based systems. So basically, you’ll be able to periodically run assigned tasks, for example, automated system backups at the end of the day, to auto shutdown or set ... Read More

Developing a Web Crawler with Python and the Requests Library

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:41:24

115 Views

From news articles and e−commerce platforms to social media updates and blog posts, the web is a treasure trove of valuable data. However, manually navigating through countless web pages to gather this information is a time−consuming and tedious task. That's where web crawling comes in. What is Web Crawling? Web ... Read More

Developing a Text Search Engine using the Whoosh Library in Python

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:39:26

574 Views

Whoosh is a python library of classes and functions for indexing text and then searching the index. Suppose you are building an application that needs to go through various documents and then find similarities or get data from it based on a few predefined conditions, or let's say you want ... Read More

Developing a Machine Learning Model with Python and scikit-learn

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:36:15

85 Views

Machine learning is a branch of artificial intelligence that allows machines to learn and improve on their own without explicit programming. Scikit−learn is a popular Python library for machine learning that provides various tools for predictive modeling, data mining, and data analysis. In this tutorial, we will explore how ... Read More

Creating a Web-based Data Visualization Dashboard with Python and Plotly Dash

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:33:12

251 Views

Data visualization allows us to explore patterns, trends, and relationships within our data, enabling us to derive meaningful insights. In this tutorial, we will explore how to create a web−based data visualization dashboard using Python and Plotly Dash. What is Plotly Dash? Python, being a popular programming language for data ... Read More

Control Raspberry Pi GPIO Pins Using Python

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:31:51

294 Views

Raspberry Pi is a popular single−board computer that is widely used for various projects, ranging from home automation to robotics. One of the key features of Raspberry Pi is its ability to interface with the physical world through its GPIO (General Purpose Input/Output) pins. These pins allow you to connect ... Read More

Building a Stock Price Prediction Model with Python and the Pandas Library

S Vijay Balaji

S Vijay Balaji

Updated on 31-Aug-2023 12:30:16

236 Views

Stock price prediction is a frequent use case in machine learning and data analysis. We can construct models that forecast future stock prices with fair accuracy by analysing past trends and patterns in the stock market. In this lesson, we'll look at how to use Python and the pandas package ... Read More

How to simulate mouse movements using Python?

S Vijay Balaji

S Vijay Balaji

Updated on 24-Aug-2023 12:21:04

3K+ Views

When it comes to automation, be it to setup your computer on start-up or to farm coins on a clicker game, it becomes essential to simulate mouse movements and clicks. And what better way to do this than use Python! For performing this particular task of automating or simulating your ... Read More

How to schedule simple alarms in Python?

S Vijay Balaji

S Vijay Balaji

Updated on 24-Aug-2023 12:20:22

114 Views

Creating a simple alarm clock is one of the basic projects that can help you understand the basics of time manipulation, running system commands, playing audio files and other such essential topics. And, in this tutorial, we will be learning how to build one. For this, we will be working ... Read More

Creating Snow Effect using the Arcade Module in Python

S Vijay Balaji

S Vijay Balaji

Updated on 04-Aug-2023 13:11:24

109 Views

We’ve all wanted to add additional effects to our presentation or to a video. These effects help us in better present our product or helps increase user experience. And in this tutorial, you will learn how to implement the snow effect using the arcade module. You can use this in ... Read More

Advertisements