Increase the Read speed

point = (

    Point(measurement)

    .tag("StepNo", str(row\["Step No"\]))         # Example tag

    .tag("Status", row\["Status"\])               # Example tag

    .tag("CycleNo", int(row\["Cycle No"\]))

    .field("Voltage", float(row\["Voltage"\]))

    .field("Current", float(row\["Current"\]))

    .field("Capacity", float(row\["Capacity"\]))

    .field("Energy", float(row\["Energy"\]))

    .field("Temperature", float(row\["Temperature"\]))

    .time(row\["Timestamp"\], WritePrecision.NS)  # nanosecond precision

)

this is point script after inserting I want to read that measurement its having 14 million records i want to read that in 5 seconds using python script what will be the best approach