This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import time | |
from random import randint | |
# Self made implementation of merge sort | |
def merge(A,B): | |
''' | |
Merge sort merging procedure. | |
Takes two sorted subarrays and merges them to create a new sorted | |
array which is returned |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
A script to fetch details of books in a range from Goodreads | |
For educational purpose ONLY. | |
Storing data for more than 24 hours or an attempt to archive Goodreads Data is a violation of Developer Terms of Service. You have been warned. | |
''' | |
from goodreads import client | |
import codecs | |
import time | |
from datetime import datetime |
NewerOlder