Author name: SKB

Yoga for ಮಧುಮೇಹ (Diabetes)

Yoga for blood sugar control Benefits of practicing Yoga ಯೋಗದಿಂದ ಆಗುವ ಪ್ರಯೋಜನೆಗಳು How Yoga control’s diabetes or blood sugar? ಯೋಗ ಮಧುಮೇಹವನ್ನು ಹೇಗೆ ನಿಯಂತ್ರಿಸುತ್ತದೆ? Yoga is most ancient Indian method of keeping good health. Yoga is not only relax your mind but also whole body. People who are suffering from type-1 diabetes or type-2 diabetes symptoms

Share

Yoga for ಮಧುಮೇಹ (Diabetes) Read More »

Yoga for(ಬೆನ್ನು ನೋವು) back pain

ಬೆನ್ನು ನೋವೀಗಾಗಿ ಈ ಆಸನಗಳನ್ನು ಮಾಡಿ How to over come Back pain?( ಬೆನ್ನು ನೋವು) Daily Practicing yoga for at least  few minutes it would can help you gain more awareness(ಅರಿವು) of your body. This will help you notice where you’re holding tension and where you have imbalances(ಅಸಮತೋಲನ). You can use this awareness to bring yourself into

Share

Yoga for(ಬೆನ್ನು ನೋವು) back pain Read More »

Best 3 Yogasanas for stress(ಒತ್ತಡ) relief

ರಕ್ತದ ಒತ್ತಡ ಮತ್ತು ಸಕ್ಕರೆ ಖಾಯಿಲೆಗೆ ಈ ಯೋಗಾಸನಗಳನ್ನು ಮಾಡಿ 1. Plow Pose(ನೇಗಿಲು ಭಂಗಿ) This pose improves blood circulation and stimulates the thyroid gland. A healthy thyroid gland and proper blood circulation help in preventing diabetes and hypertension. It is one of the best asanas for cholesterol. Do this asana with these steps Lie down on your

Share

Best 3 Yogasanas for stress(ಒತ್ತಡ) relief Read More »

Live Stock ticker using Python

In this example we will be knowing that how to show live stock price using Python with various python packages. Lets have an example from yahoo_fin import stock_info from tkinter import * def stock_price(): price = stock_info.get_live_price(e1.get()) Current_stock.set(price) master = Tk() master.geometry(‘300×150’) master.title(‘Global Stock Price’) Current_stock = StringVar() Label(master, text=”Live Stock Price”, font=’sans 14′, fg=’yellow’,

Share

Live Stock ticker using Python Read More »

Data Science – Web scraping (Access Share/BSE Market price)

Retrieve Live Market Price Accessing Share and Bombay Stock Exchange (BSE) Market price using Web scraping with the help of Python’s Beautiful Soup Package. In this example we covered TCS share price as an example. Here is the Python code to perform the task. #data science with Python – TCS share and BSE Market price

Share

Data Science – Web scraping (Access Share/BSE Market price) Read More »

Text extracting from an Image (OCR )

Extract text from an image. Extracting text from an image using pytesseract tool and package using Python programming. install tesseract.exe from here. First, here is an image which contains some text as following..[saved as sample.jpg) And here is the full code to extract text from above image. from PIL import Image #Python Imaging Library (abbreviated

Share

Text extracting from an Image (OCR ) Read More »

Joins using Python and MySQL

MYSQL Joins with Python Inner join example to retrieve records from two table. Here are those two table: Now we will retrieve records from both tables based on regno column. Source code is:  # pip install mysql-connector import mysql.connector as sql # pip install pandas import pandas as pd db_connection = sql.connect(host=’localhost’, database=’college_db’, user=’root’, password=”)

Share

Joins using Python and MySQL Read More »

Share
Scroll to Top