You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import txt_parser.csv_utils as read_csv
|
|
import utils.constants as const
|
|
|
|
books_list = read_csv.read_books_csv_file(const.CSV_FILE)
|
|
|
|
for book in books_list:
|
|
print(book)
|
|
print(type(book))
|
|
|
|
read_csv.write_books_data_to_csv(const.CSV_FILE, books_list) |