python

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 »

Data Science – 4 [extract gold price using web scrap]

Extract live gold price using web scrap – Data Science in the following example we used three packages, they are a) bs4 [Beautiful Soup for web scraping] b) pandas [panel data for data representation ] c) request [to get source / url] #data science with Python – extracting Gold Price import bs4 import pandas as

Share

Data Science – 4 [extract gold price using web scrap] Read More »

Multilevel, Hierarchical and Hybrid Inheritance

Multilevel, Hierarchical and Hybrid Inheritance Multi-Level Inheritance in Python #Multilevel Inheritance in Python class India: def first(self): print (‘India is the largest democratic country in the world’) class Karnataka(India): def sec(self): print (‘Karnataka is famous for IT and Coffee Production’) class Bengaluru(Karnataka): def third(self): print (‘Bengaluru also known as Garden city!’) b=Bengaluru() b.first() b.sec() b.third()

Share

Multilevel, Hierarchical and Hybrid Inheritance Read More »

How to run python programs on wamp server

How to run python in wamp server and mysql connectivity using python program Steps: Create a simple python program file as following. #!C:/Python27/python.exe print “Content-type: text/html\n” print “<h1 align=center>Python programming</h1>” print “<hr>” print “<h2>Hello, world!</h2>” 2. Save above file as “test.py ” in wamp ->www directory 3. Start wamp server 4. Open browser and type

Share

How to run python programs on wamp server Read More »

Artificial Intelligence

What is Artificial Intelligence (AI)? According to John McCarthy, AI is an ability to interact with the world in the form of speech, vision, motion, manipulation etc. or Ability to model the world and to reason about it. or Ability to learn and to adapt rapidly. Future goals of AI To build systems that exhibit

Share

Artificial Intelligence Read More »

Share
Scroll to Top