Web Scraping with Python in 5 Minutes

Reading Time: 4 minutes Web scraping is the process of gathering information from the Internet. Even copy-pasting the lyrics of your favorite song is a form of web scraping! However, the words “web scraping” usually refer to a process that involves automation. Some websites don’t like it when automatic scrapers gather their data, while others don’t mind. The Python libraries requests and …

How-to Create a Simple Telegram Bot with Python

Reading Time: 3 minutes Telegram is one of the most used program for instant messaging and it is known for the possibility to have bots that interact with user privately or within groups. In this post we will see how-to create a Telegram Bot to send messages in a Telegram chat group using the Python programming language and telepot library. This …