Files

copied
Last update 5 years 7 months by Andy
Filesmanufacturing
..
datasheets
BOM.xlsx
pentalogix.zip
tableGenerator.py
tableGenerator.py
import pandas as pd from sys import argv import pyperclip import xlrd xlsFile = 'BOM.xlsx' book = xlrd.open_workbook(xlsFile) sheetNames = book.sheet_names() notDataNames = [] for sheet in sheetNames: if sheet.find('_data') < 0: notDataNames.append(sheet) first = True choice = 0 while choice<1 or choice>len(notDataNames): if first: print("\nChoose a Table to Generate") for i,sheetName in enumerate(notDataNames): print('{}: {}'.format(i+1,sheetName)) # print("\nChoose a Table to Generate\n1: Cerebro\n2: Implant\n3: Base Station\n") typed = input("Choice = ") first = False else: print("\"{}\" is not an option".format(typed)) typed = input("Choice = ") try: choice = int(typed) except: choice = 0 chosenSheet = notDataNames[choice-1] def getColWidths(table): colMax = [] for cols in table: lengths = [] for entry in table[cols]: lengths.append(len(entry)) colMax.append(max(lengths) if max(lengths)>len(cols) else len(cols) ) return colMax def printDivider(colWidths,emptyVec=[],doubleDash = False): dash = "=" if doubleDash else "-" index = 0 dividerString = "" for width in colWidths: insert = dash if emptyVec: if emptyVec[index]: insert = " " dividerString += "{0}{1}".format("+",(width+2)*insert) index += 1 dividerString += "+\n" return dividerString def printContents(table,colWidths,isHeader=False,**kwds): mergeRows = False contentString = "| " index = 0 blankCols = [] for cols in table: content = cols if isHeader else table.loc[row,cols] if content=="nan": blankCols.append(mergeRows) content = "" else: blankCols.append(False) fill = colWidths[index]-len(content) contentString += "{0}{1}{2}".format(content,(fill)*" "," | ") index +=1 contentString += "\n" return contentString,blankCols table = pd.read_excel(xlsFile,usecols=[0,1,2,3,],sheet_name=chosenSheet,dtype='str')#read in table from excel file table.fillna("",inplace=True) widths = getColWidths(table) # get the maximum content width of each column #print header outputString = printDivider(widths) #first divider outputString += printContents(table,widths,isHeader=True)[0] #header outputString += printDivider(widths,doubleDash=True) #header divider #print table contents for row in range(len(table)): valString,blanks = printContents(table,widths) outputString += printDivider(widths,blanks)*(row != 0) + valString outputString += printDivider(widths) #final divider #copy string to clipboard pyperclip.copy(outputString) print("\n\"{}\" sheet copied to clipboard!\n".format(chosenSheet))

Annotations

pyControl_DSeries.kicad_pcb
a26e497e
0/1 comments
Report a bug