library.py import sqlite3 import time class Book(): def __init__(self,name,author,publisher,bookType,printing): self.name = name self.author = author self.publisher = publisher self.bookType = bookType self.printing = printing def __str__(self): return "Book name:{}\nAuthor:{}\nPublisher:{}\nbookType:{}\nPrinting:{}\n".format(self.name,self.author,self.publisher,self.bookType,self.printing) class Library(): def __init__(self): self.create_link() def create_link(self): self.link = sqlite3.connect("library.db") self.cursor = self.link.cursor() query = "CREATE TABLE IF NOT EXISTS books (name TEXT,author TEXT,publisher TEXT,bookType TEXT,printing... Continue Reading →