Easy Code Share >

Telegram Bot API Send Weather Message by Python

Telegram Bot API Send Weather Message by Python

Based on the example of a Telegram weather bot, let us learn how Python scripts send messages to apps by using Telegram API. The procedural steps are made up of registering a bot, creating a daemon process for the bot, and handling requests with the help of web crawling skills. All codes here are not … Read more

Easy Code Share >

MySQL Crud by Python DB Class and Error Handling

MySQL Crud by Python DB Class and Error Handling

We are introducing a Python DB class for helping your coding. In Python programming, MySQL connection and CRUD operations seem common, but have risks inside because of potential exceptions. Our open-source database class allows you to derive a child class, customize the child class, and, importantly, handle exceptions to reduce risks. Let’s begin with the … Read more

Easy Code Share >

Python Web Scraping using BeautifulSoup in 3 Steps

Python Web Scraping using BeautifulSoup in 3 Steps

Web Scraping means navigating structured elements on a website, and deeply going to next layers. Incoming big data will be retrieved and formated in desired styles. We apply Python BeautifulSoup to a simple example for scraping with step-by-step tutorials. All codes here are not complicated, so you can easily understand even though you are still … Read more