×

Documentation on debugging issue for creating database

While running the crawler code to extract data about the categories(Beauty -> Tools and Accessories  products) in amazon.in,  I had come across the following error. I will be showing what I had done to rectify the error. runfile(‘C:/Users/Dell/Documents/Quilt/quilt-beauty/quilt-beauty/amazon_beauty_skin_crawler.py’, wdir=’C:/Users/Dell/Documents/Quilt/quilt-beauty/quilt-beauty’) Error tokenizing data....

Read out all

Install Alice3 on Ubuntu 18.04

~Saranya Alice 3 for Ubuntu 18.04 Step 1: Install oracle JDK (download the .deb file from this link  and inside the link select the  file call Java SE 11.0.3 (LTS) for ubuntu 18.04) Step 2: Set Path Type this command in terminal:...

Read out all

How to use Git in Eclipse(Cloning a respiratory)

–  Prabaharan 1.Open your Gitlab To copy the URL that you want to clone in your local respiratory. Go to: Project -> Details Select “Clone” and under “Clone with HTTPS”press on the “copy URL to clipboard”   2. Open Eclipse Go to: ...

Read out all

Learning Percentages and Discounts using Graph

The 8th graders were working on percentages  and finding the discounts. Sanjeev, taught the children on how to find the discount for a percentage using a graph sheet. Let’s see how to find discounts using graph sheet. Question: A book costs Rs....

Read out all

Ron-documentation

What is ssh? ssh is a kind of network protocol to communicate between two or more computer. communication between client to server. ssh is default install in all ubuntu pc’ s. ssh -client tool to communicate to the server. We need to...

Read out all

Inspiration “Secret of concentration”

~ Sundar, Murali, Naveen Transferred to the next group this week 🙂 , and worked on the secret of Concentration. The following passages were translated to Tamil and read with the children in both English and Tamil. From the teachings of Swami...

Read out all

Sample WebScraping

########### Source code for webscraping ############ from selenium import webdriver from bs4 import BeautifulSoup import pandas as pd driver = webdriver.Chrome("/home/ranjith/Documents/Software/Chrome/chromedriver_linux64/chromedriver") products=[] #List to store name of the product prices=[] #List to store price of the product driver.get("https://www.flipkart.com/laptops/~buyback-guarantee-on-laptops-/pr?sid=6bo%2Cb5g&uniq") content = driver.page_source soup...

Read out all

GCD and LCM using Sympy in Python

##########Source code for finding GCD and LCM using Sympy in python######### from sympy import * x = Symbol('x') expression1, expression2 = x**2 + 4*x - 12, x**2 - 5*x + 6 def findGCD(expression1, expression2): print("########### Find GCD ############") factorsExpr1, factorsExpr2 = factor(expression1),...

Read out all

Inspiration

At Isaiambalan school a project on value with Swammy Krishnan Maharaj was started last week(20190615) and children along with teachers were split into six groups each with a specific title . Our group was given the topic “True Education” whose avatar was...

Read out all

Installation of Python3.7, PIP3, JDK, Eclipse in Ubuntu 64x

Installing Python 3.7 sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa sudo apt-get install python3.7 python3.7 –version Installing pip3 sudo apt install python3.7-pip Installing JDK sudo add-apt-repository ppa:linuxuprising/java sudo apt install oracle-java11-installer installing eclipse (placed the extracted file in downloads) cd Downloads/ cd eclipse-inst-linux64/ cd eclipse-installer/ ./eclipse-inst...

Read out all