I am using python 2.7 with python pptx
I need a table to fit exact size, It has 2 colums It has unknown number of rows each cell has unknown length of text.
I need the entire table to fit some exact location, and would ideally want the text in each -cell- to fit the exact portion of the table that it is supposed to get but the formula (size/rows/2)
I found here how to adjust the size of the text in each cell, but it is not quite sufficient
I found how to change the table size with .width and .height but this is not working when the text is too long and it's just making the table grow larger.
How can i either put a hard constraint on each cell size, filling it with the text in the best way possible (or the closest solution possible)?
Thanks!