project-structure

Project structure for desktop applications using SQLAlchemy and wxPython

Project structure for desktop applications using SQLAlchemy and wxPython Question: I want to create a desktop application using SQLAlchemy and wxPython, but I’d like to structure the project in a way similar to django projects, using django app-like packages (related models, views and tests in the same package) and settings and main module in the …

Total answers: 1

How to organize a Python Project?

How to organize a Python Project? Question: I’m new to Python and I’m starting a mini Project, but I have some doubts on how to organize the folders in the "Python Way". I’m using PyDev in my Development Environment, and when I create a new project a folder is created called src + src Now, …

Total answers: 8

What is the best project structure for a Python application?

What is the best project structure for a Python application? Question: Imagine that you want to develop a non-trivial end-user desktop (not web) application in Python. What is the best way to structure the project’s folder hierarchy? Desirable features are ease of maintenance, IDE-friendliness, suitability for source control branching/merging, and easy generation of install packages. …

Total answers: 8

Possibilities for Python classes organized across files?

Possibilities for Python classes organized across files? Question: I’m used to the Java model where you can have one public class per file. Python doesn’t have this restriction, and I’m wondering what’s the best practice for organizing classes. Asked By: brianegge || Source Answers: I would say to put as many classes as can be …

Total answers: 6