I've been referring many articles and tried many code snippet, but not able to achieve. openpyxl package insert_rows is not working.
import openpyxl
wb = openpyxl.load_workbook('sample.xlsx')
sheet = wb['Sheet1']
sheet.insert_rows(idx=1, amount=3)