Editing Python Desk Top Applications

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
This is page about how I write my desktop applications, and so, naturally, how I would recommend they be writtern.  It also documents the structure of most of the applications that I have documented on this wiki.  Try them and let me know how you think they might be better.
+
This will be a page about how I write my desktop applications, and so naturally, how I would recommend they be writtern.  It also documents the structure of most of the applications that I have documented on this wiki.  Try them and let me know how you think they might be better.
  
  
See also:  [[Python Smart Plug Technical]]
+
[[Python Smart Plug Technical]]
  
 
= Overview =
 
= Overview =
 
== General Information ==
 
== General Information ==
These notes are here so you can more easily modify my code and build your own.
+
These notes are here so you can more easily modify my code and build your own.  
 
 
== Goals/Needs ==
 
 
 
 
 
I would like my applications to have the following characteristics:
 
* Runs on all PC like platforms, PC, PI, Linux -- self configurable to os .... as much as practical.
 
* Easily programmable for modifications.
 
* Easily configured, flexible
 
* Not too Ugly.
 
* GUI. Friendly
 
* Intuitive.
 
* Easy to Debug.
 
* Bug Free, robust.
 
* Easy, quick to program.
 
* Meaningful error messages.
 
 
 
== Big Picture ==
 
  
 
Here is an overview of the general plan, details can be filled out by reading the example code in my projects ( see category ..... below).
 
Here is an overview of the general plan, details can be filled out by reading the example code in my projects ( see category ..... below).
  
 +
 
The overall architecture is called the model view controller or MVC.  
 
The overall architecture is called the model view controller or MVC.  
  
Line 45: Line 29:
  
 
*Windows 10 64bit
 
*Windows 10 64bit
*Anaconda Spyder 4.x
+
*Anaconda Spyder 3.x
 
*Python 3.7
 
*Python 3.7
  
Line 59: Line 43:
 
I have had some issues with matplotlib in linux which are still unresolved.
 
I have had some issues with matplotlib in linux which are still unresolved.
  
 +
= Components and Functions =
 
== Imported Libraries ==
 
== Imported Libraries ==
 
Frequently or occasionally used:
 
Frequently or occasionally used:
Line 67: Line 52:
 
* SQLLite or MySQL for the database.
 
* SQLLite or MySQL for the database.
 
* os, sys, psutil, platform .. and pathlib for system access.
 
* os, sys, psutil, platform .. and pathlib for system access.
 +
  
 
== My Components ==
 
== My Components ==
Line 73: Line 59:
 
* Global Singleton for app cohesion.  
 
* Global Singleton for app cohesion.  
 
* Parameter file for easy customization.
 
* Parameter file for easy customization.
* MVC component for application control.
 
* Multithreading, when required, most of code in its own class.
 
* Typically one class, '''GUI''', for the graphical user interface.
 
  
== My Style ==
+
==== RunningOn ====
 +
A new class RunningOn has fairly recently be added to gather information about the platform the system is running on.  This information is later used to adjust the system automatically to run when moved from system to system without any code or parameter changes.  It is a bit tricky because some of the functions it uses and value obtained vary from system to system.  Still seems to work pretty well.
 +
 +
Variables in RunningOn may be use in parameters to branch based OS or computer name or TCP IP address.  Occasionally values will be used in other code.
  
I have written a good number of Graphical User Interface ( GUI ) applications and keep re using the parts that work well while slowly evolving the parts that do not work well or are hard to program, or just for some reason seem wrong.
 
  
The languages I have used in the past did not really have a concept of module, so I do not do much programming at the module level.  Mostly I use modules to organize my classes, most modules have only a couple of classes at most.
+
==== Paths and File Names ====
 +
There are a couple of challenges with paths and file names:
 +
*Are they relative or absolute?
 +
*How to OS differences effect the code?
  
My immediate prior language was Java which is very class oriented, as a result I probably overuse classes.  But while a bit intelligent, and perhaps non zen, it works well enough.
+
My current approach:
  
= Components and Functions =
+
*For files that are "close" to the code, in your system for the application, I try to use file names that are relative to the installation location of the main Python application.  To facilitate that the application tries to determine the startup location of the application and change the default directory to that location.  Then notations like "./images/something.png" seem to work in the code.  Since slashes seem to work in windows I try to avoid back-slashes.
== The Controllers for Applications ==
 
  
The class for the MVC controller is also the class you create to run the application: see the code at the bottom of the file, just run the file.  Similar code is at the bottom of some of the other source files to make it convenient to run from those files, this is just to make it easier in development, the code in smart_plug.py is the model for what should be used.  Sometimes the code at the bottom of other file may have code for testing objects in the file, it may not be maintained, may not work as intended.
+
*For system resources, like your editor, I use both bare filenames -- the system can often find them through environmental paths, or full file namesThese are mostly in parameters.py so you can use what works for you.
 
 
The __init__ method is the initialization and "run" method for the application.  Much of the code that would normally be in it has been moved to .restart which is used to restart the application when just the parameters have been changed.  See the docstring there.
 
 
 
== GUI ==
 
  
The view component is called GUI ( typically  gui.py with the class name GUI ). It creates all the visible components, and relays user input to the controller.
+
==== Helper Tread ====
You can unplug the GUI object from the application and plug in new components. Don't like the GUI? You could modify mine, or you could make a modification and choose which one to use. This is sort of like a skin for an application.
 
  
  
  
== Singletons ==
+
The application has a main thread running in a Tkinter mainloop.  There is also a second thread called a "helper" running which makes some processing much easier.  To make GUI mainloop responsive to both the GUI and its own processing it uses a pseudo event loop or a polling subroutine that is implemented in xxxxx. The frequency which polling occurs is set in parameters, the relatively low rate of 100 ms between calls ( .1 sec ) seems to give a perfectly responsive application in most cases.  I have run it as fast as once every 10 msHave not tried to find a limit.
Most classes are used as singletons, although they may not be coded that way.  There is little to stop programmers from creating multiple instances, but why would theyKeep in mind an application is not a library. So in addition to AppGlobal we have
 
  
* AppGlobal  -- used as a class, never any instances
+
=== Database ===
* GUI a single instance is the user interface.
 
* Main program, controller.  A single instance.
 
* Helper thread Class a single  instance which has most of the hellp thread code, or acts as a controller for the second thread and communicates with the "main" or GUI thread
 
  
== AppGlobal ==
 
  
Global Values: Yes I know that globals are bad, but they can be useful.  For example many class instances need to access the parameter file.  This can be done using the singleton class AppGlobal.
+
== The Controllers for Smart Plug ==
It has values at the class level ( not instance ) that are available simply by importing the class.  Many values are originally defaulted to None, and are set to valid values as the application initializes and runs, starting, default values often come from parameters, or for instance variables from self as the instance is initialized.  Some values that used to be shared through an instance of the application are now shared through AppGlobal.  This code change is still in process.  AppGlobal has now expanded to include globally useful functions.
 
  
== RunningOn ==
+
The class for the MVC controller is also the class you create to run the application: see the code at the bottom of the file, just run the file.  Similar code is at the bottom of some of the other source files to make it convenient to run from those files, this is just to make it easier in development, the code in smart_plug.py is the model for what should be used.  Sometimes the code at the bottom of other file may have code for testing objects in the file, it may not be maintained, may not work as intended.
  
A new class RunningOn has fairly recently be added to gather information about the platform the application is running on.  This information is later used to adjust the application automatically when moved from computer to computer ( including OS changes ) without any code or parameter changes.  It is a bit tricky because some of the functions it uses and value obtained vary from OS to OS.  So to test it you need to "move it aroung" some. Still seems to work pretty well.
+
The __init__ method is the initialization and "run" method for the applicationMuch of the code that would normally be in it has been moved to .restart which is used to restart the application when just the parameters have been changedSee the docstring there.
   
 
Variables in RunningOn may be use in parameters to branch based OS or computer name or TCP IP address.  Occasionally values will be used in other code.
 
 
 
== Paths and File Names ==
 
There are a couple of challenges with paths and file names:
 
*Are they relative or absolute?
 
*How to OS differences effect the code?
 
 
 
My current approach:
 
 
 
*For files that are "close" to the code, in your system for the application, I try to use file names that are relative to the installation location of the main Python application. To facilitate that the application tries to determine the startup location of the application and change the default directory to that locationThen notations like "./images/something.png" seem to work in the code.  Since slashes seem to work in windows I try to avoid back-slashes.
 
 
 
*For system resources, like your editor, I use both bare filenames -- the system can often find them through environmental paths, or full file names.  These are mostly in parameters.py so you can use what works for you.
 
  
 
== Threads ==
 
== Threads ==
Line 139: Line 102:
 
=== HelperThread ===
 
=== HelperThread ===
  
The application has a main thread running in a Tkinter mainloop.  There is also a second thread called a "helper" running which makes some processing much easier.  To make GUI mainloop responsive to both the GUI and its own processing it uses a pseudo event loop or a polling subroutine that is implemented in xxxxx. The frequency which polling occurs is set in parameters, the relatively low rate of 100 ms between calls ( .1 sec ) seems to give a perfectly responsive application in most cases. I have run it as fast as once every 10 ms.  Have not tried to find a limit.
+
Refers to similar but different program !! Will update for this program soon.
  
=== Helper Thread in Smart Terminal ===
+
HelperThread in smart_terminal_helper.py  This class provides the support for a second thread of execution that does not block the main thread being run by Tinker.  I call the two threads the GUI Thread (gt) and the Helper Thread ( ht ).  It can get confusing keeping track of which method is running in which thread, I sometimes annotate them with gt and ht.  The helper thread is started by running HelperThread.run() which pretty much just runs a polling task in HelperThread.polling().  HelperThread.polling() is an infinite loop, it uses sleep to set the polling rate.  When used with the green house processing module, it may call a function there that is its own infinite loop.  There are a lot of details here, I should write some more about it.
Smart Terminal is fairly typical:  HelperThread in smart_terminal_helper.py  This class provides the support for a second thread of execution that does not block the main thread being run by Tinker.  I call the two threads the GUI Thread (gt) and the Helper Thread ( ht ).  It can get confusing keeping track of which method is running in which thread, I sometimes annotate them with gt and ht.  The helper thread is started by running HelperThread.run() which pretty much just runs a polling task in HelperThread.polling().  HelperThread.polling() is an infinite loop, it uses sleep to set the polling rate.  When used with the green house processing module, it may call a function there that is its own infinite loop.  There are a lot of details here, I should write some more about it.
 
 
 
=== Polling ===
 
Both threads have method that perform polling for events often for items in their queue that may have been sent from the other thread.  Info on a similar app in [[Python Smart Terminal Technical Details]].  Polling is also used in some single threaded applications.  Parameters for polling are set in parameters.py
 
  
 
== Parameters ==
 
== Parameters ==
Line 165: Line 124:
 
== DataBase ==
 
== DataBase ==
 
For databases I have used both SQLLite and versions of MySQL.  See application for which one it uses.  I may expand on this section later for now see the code.
 
For databases I have used both SQLLite and versions of MySQL.  See application for which one it uses.  I may expand on this section later for now see the code.
 +
 +
== Polling ==
 +
Both threads have method that perform polling for events often for items in their queue that may have been sent from the other thread.  Info on a similar app in [[Python Smart Terminal Technical Details]].
  
 
== Logging ==
 
== Logging ==
Line 191: Line 153:
  
  
[[Category:Python]] [[Category:Python Projects]] [[Category:SmartTerminal]][[Category:Python SmartPlug]] [[Category:Python Easy DB]] [[Category:ClipBoard]][[Category:Twitter Analysis DB]]
+
[[Category:Python]] [[Category:Python Projects]] [[Category:SmartTerminal]][[Category:Python SmartPlug]] [[Category:Python Easy DB]] [[Category:ClipBoard]]

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)