Beispiel #1
0
def create_book(name):
    """
    creates new book - split to chapters and creates book file
    :param name: the epub file name
    """
    # check if the book is already in the system
    if Book.is_book_exists(name):
        raise BookNameException
    # create new book
    Book.create_new_book(name)