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
@varundey
varundey / .gitignore
Last active March 13, 2017 17:14 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
void solve()
{
string s;
@varundey
varundey / goodreads-review-collector.py
Created April 6, 2020 13:00
Get reviews from goodreads and export as an excel file
import json
import os
import pandas
import requests
from string import Template
GOODREADS_API_KEY = ""
EBOOKS_DIRECTORY = "/Users/varun.dey/Documents/Kindle"
RATINGS_JSON_FILE = "ratings.json"
RATINGS_EXCEL_FILE = "ratings.xlsx"