I found to have problem with conversion of .xlsx file to .csv using pandas library. Here is the code:
import pandas as pd
# If pandas is not installed: pip install pandas
class Program:
    def __init__(self):
        # file = input("Insert file name (without extension): ")
        file = "Daty"
        self.namexlsx = "D:\\" + file + ".xlsx"
        self.namecsv = "D:\\" + file + ".csv"
        Program.export(self.namexlsx, self.namecsv)
    def export(namexlsx, namecsv):
        try:
            read_file = pd.read_excel(namexlsx, sheet_name='Sheet1', index_col=0)
            read_file.to_csv(namecsv, index=False, sep=',')
            print("Conversion to .csv file has been successful.")
        except FileNotFoundError:
            print("File not found, check file name again.")
            print("Conversion to .csv file has failed.")
Program()
After running the code the console shows the ValueError: File is not a recognized excel file error
File i have in that directory is "Daty.xlsx". Tried couple of thigns like looking up to documentation and other examples around internet but most had similar code.
Edit&Update What i intend afterwards is use the created csv file for conversion to .db file. So in the end the line of import will go .xlsx -> .csv -> .db. The idea of such program came as a training, but i cant get past point described above.