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
| import csv | |
| import requests | |
| import sys | |
| """ | |
| This script converts a Goodreads export csv into a Book Track friendly csv. | |
| It does this by querying Google Books' api for each book and adding its id, | |
| along with removing some of the other unnecessary fields in the original | |
| export. |
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
| """ | |
| Author @ Kyaw Khant Nyar | |
| github: kyawkn | |
| """ | |
| import requests | |
| import csv | |
| from bs4 import BeautifulSoup as bs | |
| import urllib | |
| import os |