Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 463 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 463 Bytes

xlwings-utilities

Utility functions for working with Xlwings and Excel.

Usage

Include code below in file that need to use xlwings-utilities

import os, sys
sys.path.append(os.path.abspath('/Users/rishi/git/xlwings-utilities/')) # This should be the path to the local repo
from xlwings import Workbook, Sheet, Range
from xlwings_utilities import clear, clearcontents, list_write, list_read, df_read, df_write
# Create new workbook
wb = Workbook()