I have tried three of them below. But nothing works.
Error: - TypeError: Invalid argument(s) 'fast_executemany' sent to create_engine(), using configuration MSDialect_pyodbc/QueuePool/Engine. Please check that the keyword arguments are appropriate for this combination of components.
engine = create_engine('mysql+pyodbc://{DB}:{Password}@{server}', fast_executemany=True)
engine = create_engine('mysql+mysqlconnector://{DB}:{Password}@{server}', fast_executemany=True)
engine = create_engine('mysql+pymysql://{DB}:{Password}@{server}', fast_executemany=True)