Re: [Tutor] project directory structure

2016-08-25 Thread Alex Kleider
On 2016-08-25 21:27, Ben Finney wrote: That's exactly the wrong thing to do. Your shebang line should *not* assume a custom location of the Python interpreter. It's the responsibility of the operating system or virtualenv to provide the Python interpreter command in a standard place. Instead

Re: [Tutor] project directory structure

2016-08-25 Thread Ben Finney
Alex Kleider writes: > I'm still struggling with what is the best way to set up a project > directory. One thing to learn is that there's no one right way that is universally applicable. In particular, you are asking about *social* conventions here. These are prone to change and negotiation and

[Tutor] tkinter/sqlite3?

2016-08-25 Thread Jim Byrnes
I am working with Python 3.4.3 on Ubuntu 14.04. I am learning tkinter so I decided to rewrite a program I had written in pythoncard in tkinter. I found that a sqlite3 SELECT statement that works in pythoncard throws an error in tkinter and am wondering why? # Fill the accounts listbox from th

[Tutor] project directory structure

2016-08-25 Thread Alex Kleider
I'm still struggling with what is the best way to set up a project directory. All the sources I've read seem to agree that one should have a top level project directory under which one might expect to find the following: COPYING.txt # or LICENSE.txt README.rst setup.py and if the pr