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

[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

[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