
I have a table that I have formatted perfectly when printed out on the terminal. I'm using Python's BeautifulTable to format the table, and PySimpleGUI to create a multiline output window. I'd like the table to be printed to the GUI window for feedback to the user. I've done extensive Google searches, searches here on Stack Overflow, official product documentation, etc. I have set a max width on the table that is large enough, I've set static column widths to 25 and max table width to 200. But the table will automatically expand max width if the columns exceed that (according to documentation anyways). I have printed long lines to the multiline output window that exceed the width of the table to ensure it isn't a limitation of the PySimpleGUI output window. Above is an example of how it prints in the terminal vs. PySimpleGUI. No idea where to go next to figure out where the problem lies ...
BeautifulTable Format Perfect in Terminal, "Broken" in PySimpleGUI Output
485 Views Asked by spickles At
1
There are 1 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in PYSIMPLEGUI
- Unable to Pin function in PysimpleGUI
- PySimpleGUI tree doesn't Insert data into tree
- How to display only filename selected in pysimplegui when using a text label in front
- Drawing a rectangle with buttons on top in PysimpleGUI
- Window in PysimpleGui Resizes after Matplot lib is used
- PySimpleGUI disabled an InputText according to sg.Radio?
- Dynamic layout on pysimpleGUI with frames
- PySimpleGUI window crashes after opening Chrome, but only if Chrome isn't already open
- Not able to import PySimpleGUI in mac m1
- PySimpleGUI: How to detect overflow of elements beyond the window limits?
- How to update input element to display new set of values on an event? PySimpleGui
- Using pysimplegui & pandas to display cell values in pysimplegui window for next row that is missing a value in a particular column(s) in excel file
- Window Not Opening PySimpleGUI Python
- How to stop window.read() from firing again?
- i am facing error while installing PySimpleGUI
Related Questions in PYTHON-BEAUTIFULTABLE
- difference between strings and striped_strings in beautifulsoup
- 'ValueError: could not convert string to float: '5,742.86'
- FutureWarning: 'BeautifulTable.__getitem__' has been deprecated in 'v1.0.0' and will be removed in 'v1.2.0'. Use 'BeautifulTable.{columns|rows}[key]'
- Cannot find the table tag in the website to scrap information using Beautiful soup
- Python's BeautifulTable modifies output
- BeautifulTable Format Perfect in Terminal, "Broken" in PySimpleGUI Output
- How to parse HTML tbody data into Python in tabular format
- How can i scrape all data at once from a website which shows the response only after scrolling?
- Check if a button is disabled with Beautifulsoup?
- How do I scrape data from this webpage with python using BeautifulSoup?
- Why does beautifultable in python do not fit content to the table?
- How do i save bs4 values in xls or csv?
- Web Page Scraping with BeautifulSoup
- How to use Beautiful soup in Python to find a particular text in a particular column
- how to find div in beautifulsoup if class or id doesn't exist
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To get text to be aligned vertically you'll need to use a mono-spaced font.
I tend to use Courier as it's a universally available font.
The Multiline Element is suggested now to use instead of the Output element as it has a lot more options available and it's very difficult to use.
This program will show you the effect of using one versus not using one.