Skip to content

Instantly share code, notes, and snippets.

View varundey's full-sized avatar
🧼
Keep bugs and virus away

Varun Dey varundey

🧼
Keep bugs and virus away
View GitHub Profile
def value(k, degree, coefficients):
ans = 0
for i in range(degree+1):
ans += coefficients[i]*pow(k,i)
return ans
degree = input()
coefficients = map(int,raw_input().split())
t=input()
@varundey
varundey / rssCrawler.py
Created April 9, 2016 11:51
RSS news feed crawler
url = "http://timesofindia.indiatimes.com/rss.cms"
from bs4 import BeautifulSoup as bs
import requests
soup = bs(requests.get(url).content, "lxml")
soup = soup.findAll("table",{"border":"0", "width":"740", "cellspacing":"0", "cellpadding":'0'})
print len(soup)
dic = {}
file = open("newsrss.txt","a")
for i in soup:
@varundey
varundey / indexing.py
Created April 8, 2016 13:22
indexing for elasticsearch
#!/usr/bin/env python
from elasticsearch import Elasticsearch
es = Elasticsearch()
import json
import os
x= os.listdir("/home/varun/Desktop/git/zeroclickinfo-goodies/share/goodie/cheat_sheets/json")
li=[]
for xx in x: