About 289,000 results
Open links in new tab
  1. python - Differences between xlwings vs openpyxl Reading Excel ...

    You are correct in that xlwings relies on pywin32, whereas openpyxl does not. openpyxl A ".xlsx" excel file is essentially a zip-file containing multiple XML files formatted according to …

  2. how to make xlwings faster or find another alternative?

    Dec 22, 2020 · If someone have the same problem looping through cells with openpyxl is faster than xlwings. "If ws.cell (row=row, column=col).fill.start_color.tint==0.0" can help you find the …

  3. Newest 'xlwings' Questions - Stack Overflow

    Sep 12, 2025 · Using xlwings, I am connecting to Snowflake and extracting a Pandas dataframe. The dataframe is a mixture of text, dates, and floats, which I have verified by using df.to_excel.

  4. From pandas dataframe to excel with xlwings? - Stack Overflow

    Dec 17, 2020 · From pandas dataframe to excel with xlwings? Asked 4 years, 10 months ago Modified 3 years, 11 months ago Viewed 20k times

  5. A whole sheet into a pandas dataframe with xlwings

    I would like to use the same method using xlwings. In fact, my Workbook is already open and I don't want to use read_excel function (witch will take too long to execute by the way) but use …

  6. xlwings RPC Server unavailable strikes again? - Stack Overflow

    May 13, 2024 · The Xlwings macro searches for items in a_master and updates certain dataframe columns or adds a new line, depending on the search. So basic Python/xlwings logic is

  7. python - RefreshAll in excel file with xlwings - Stack Overflow

    Dec 20, 2018 · I wanted to RefreshAll database connections in a number of excel files but i didn't want to run an Excel macro from within python. I just wanted one line of xlwings code. I looked …

  8. excel - How do I programmatically (via Python/xlWings) add axes …

    Oct 15, 2024 · Xlwings is aka as 'VBA for Excel' using Python. If you don't know what function (s) to use in Xlwings; in Excel, record a macro while executing the required steps and look at the …

  9. pywintypes.com_error: (-2147352567,'Exception occured.', (0, …

    May 13, 2022 · Background: I am using xlwings to open an xlsx file and use a list (tuple) to receive all the data of the table. The code is as follows. def get_excel_all_data(path: string, …

  10. Create a Drop down list using XLWings in Python - Stack Overflow

    Apr 11, 2021 · Create a Drop down list using XLWings in Python Asked 4 years, 6 months ago Modified 4 years, 6 months ago Viewed 3k times