Re: [GENERAL] Avoiding re-inventing a wheel

2016-08-12 Thread Rich Shepard
On Fri, 12 Aug 2016, Adrian Klaver wrote: Or are the various levels tightly coupled and you are looking to start from scratch? Adrian, I want to start from scratch. Yet, I think that I found a solution that will work better than that that. There's a tool called XRMS that appears to have

Re: [GENERAL] Avoiding re-inventing a wheel

2016-08-12 Thread Adrian Klaver
On 08/12/2016 09:42 AM, Rich Shepard wrote: On Fri, 12 Aug 2016, Adrian Klaver wrote: FYI regular(classic) wxPython does not support Python 3. If you are looking forward you want: https://www.wxpython.org/Phoenix/docs/html/index.html Adrian, Yes, I'm aware of this and decided that this new

Re: [GENERAL] Avoiding re-inventing a wheel

2016-08-12 Thread Rich Shepard
On Fri, 12 Aug 2016, Adrian Klaver wrote: FYI regular(classic) wxPython does not support Python 3. If you are looking forward you want: https://www.wxpython.org/Phoenix/docs/html/index.html Adrian, Yes, I'm aware of this and decided that this new application should be written using Python3

Re: [GENERAL] Avoiding re-inventing a wheel

2016-08-12 Thread Adrian Klaver
On 08/12/2016 09:18 AM, Rich Shepard wrote: I need to expand my client relation management/sales tracking application from its existing python3/Qt5/SQLite3 version to a more capable one built on a postgres backend. (For the record, I've been using postgres and sqlite on linux for almost 20 year

[GENERAL] Avoiding re-inventing a wheel

2016-08-12 Thread Rich Shepard
I need to expand my client relation management/sales tracking application from its existing python3/Qt5/SQLite3 version to a more capable one built on a postgres backend. (For the record, I've been using postgres and sqlite on linux for almost 20 years now so I'm comfortable with both.) Befor