Skip to content

Commit bc913d6

Browse files
Update BookShelfScrape v1.2
1 parent b5e52b3 commit bc913d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BookShelfScrape v1.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ with requests.Session() as s:
3535
for book in parsed_Library:
3636
title = book['title']
3737
isbn = book['isbn']
38-
if str(Year) in title and Level in title:
38+
if str(Year) in title and Level in title and 'CFA' in title:
3939
isbnList.append({'title': title, 'isbn': int(isbn)})
4040
# Going to each book's table of contents first
4141
for book in isbnList:

0 commit comments

Comments
 (0)