Visualize dataframes in 2 lines

2020-08-22 Thread Dave Dawson
import sho sho.w(dataframe) Install : pip install sho Medium Article: https://medium.com/@davewd/sho-w-dataframe-my-first-package-b7242088b78f Github: https://github.com/davewd/sho -- https://mail.python.org/mailman/listinfo/python-list

Re: Embedded python: How to debug code in an isolated way

2020-08-22 Thread Eko palypse
Thx for your tip/suggestion. > If In Doubt, Print It Out! That's the current situation and that's usually enough, but then there's this situation where it gets annoying because you realize that the print wouldn't make more sense at this point but at that point and that's where a debugger is just

Re: Embedded python: How to debug code in an isolated way

2020-08-22 Thread Chris Angelico
On Sun, Aug 23, 2020 at 5:51 AM Eko palypse wrote: > So the question is, what do I need to read/learn/understand in order to solve > this issue? > Or in other words, how can I debug my script in an isolated environment. I'd go for the old standby - IIDPIO: If In Doubt, Print It Out! Instead of t

Embedded python: How to debug code in an isolated way

2020-08-22 Thread Eko palypse
Hello, background info first. On windows, python3.8.5 A cpp app has an embedded python interpreter which allows to modify/enhance the cpp app by providing objects to manipulate the cpp app and callbacks to act on certain events, like fileopen, fileclose, updateui ... which are send by the cpp

RE: How do I use the data entered in a form?

2020-08-22 Thread Peter Otten
Steve wrote: > I take it that "fetch" is not an inside command or reserved word. The > code is everything what was posted. You don't say where you "found" the code. If you took it from https://www.python-course.eu/tkinter_entry_widgets.php you need to take another look. A fetch() function is

RE: How do I use the data entered in a form?

2020-08-22 Thread Steve
The only thing I can add to that program as far as errors go is that "SR is Not Defined" after the program focus is outside of any def in the last line or two. Is there any location where I should place "return (SR)" or a "global SR"? I take it that "fetch" is not an inside command or reserved