Difference between revisions of "Python Desk Top Applications"

From OpenCircuits
Jump to navigation Jump to search
 
(47 intermediate revisions by the same user not shown)
Line 1: Line 1:
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.
+
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.
  
  
[[Python Smart Plug Technical]]
+
See also:  [[Python Smart Plug Technical]]
  
 
= Overview =
 
= Overview =
 
== General Information ==
 
== General Information ==
These notes are here so you can more easily modify the code.  Contact me Russ Hensel if you would like additional information.
+
These notes are here so you can more easily modify my code and build your own.   
  
Before modifying the code it is best to understand how it works. Here is an overview of the general plan, details can be filled out by reading the code.
+
== Goals/Needs ==
  
The "Application" is really two different applications, each with its own main program and GUI, but sharing a lot of the other code.  At one point I though I might merge them into one application, but 2 apps seems better.
 
The two applications are: SmartPlugGraph ( in smart_plug_graph.py ) and SmartPlug ( in smart_plug.py ).  The apps are very similar so I will explain them in a combined document: generally what is said about SmartPlug also applies to SmartPlugGraph ( the significant difference is that SmartPlugGraph is single threaded, so ignore content, for it, that refers to multi threaded..
 
  
 +
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.
  
The overall architecture is called the model view controller or MVC. The class SmartPlug can be viewed as the main class.  To run the program run its file smart_plug.py ( see code at end of file).  SmartPlug  is the controller in MVC it is responsible for all overall control, it directly or indirectly creates all other program objects.
+
== Big Picture ==
  
The view component is called GUI ( in gui.py and for SmartPlugGraph is called also GUI but is in GUI_for_graph.py ). It creates all the visible components, and relays user input to the controller.
+
Here is an overview of the general plan, details can be filled out by reading the example code in my projects ( see category ..... below).
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.  
 
  
Two other important components are called Logger ( in logger.py ) and Parameters ( in parameters.py ). The controller creates one of each, and make them available to the other components. The other components can interact with them, and uses them respectively for logging events, and getting access to parameters ( those aspects of the application that are particularly easy to change ). I describe more of this in [[My Python Coding Conventions]]
+
The overall architecture is called the model view controller or MVC.  
  
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.
+
The main program is the controller.
 +
 
 +
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.
 +
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.
 +
 
 +
=== Projects Here Done in this Style ===
 +
 
 +
 
 +
*[[Python Smart Terminal]]
 +
*[[Python Smart ClipBoard]]
 +
*[[Python Control of Smart Plugs]]
 +
*[[Python Scheduling Application]]
  
 
== Development Environment ==
 
== Development Environment ==
  
 
*Windows 10 64bit
 
*Windows 10 64bit
*Anaconda Spyder 3.x
+
*Anaconda Spyder 4.x
 
*Python 3.7
 
*Python 3.7
  
Line 34: Line 53:
 
*Python 3.6 up.
 
*Python 3.6 up.
  
I have run in:
+
I am now running in:
Windows 10, Python 3.7
+
*Windows 10, Python 3.7
*more coming, or let me know.
+
*Linux Mint
 
+
*Raspberry Pi Buster
= Components and Functions =
+
I have had some issues with matplotlib in linux which are still unresolved.
  
 +
== Imported Libraries ==
 +
Frequently or occasionally used:
 
* Tkinter for the GUI
 
* Tkinter for the GUI
 
* pyLogging for logging
 
* pyLogging for logging
* SmartTerminal a model-view-controller controller with some modifications  ( '''[https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller Model–view–controller - Wikipedia ]'''  or perhaps closer to '''[https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93presenter Model–view–presenter - Wikipedia ]''' )
 
 
* Second thread for processing without being blocked by/blocking the GUI
 
* Second thread for processing without being blocked by/blocking the GUI
 +
* Mathplotlib for graphing.
 +
* SQLLite or MySQL for the database.
 +
* os, sys, psutil, platform .. and pathlib for system access.
 +
 +
== My Components ==
 +
Some of my components ( more information below )
 +
 
* Global Singleton for app cohesion.  
 
* Global Singleton for app cohesion.  
 
* Parameter file for easy customization.
 
* Parameter file for easy customization.
* Mathplotlib for graphing.
+
* MVC component for application control.
* SQLLite for the database.
+
* Multithreading, when required, most of code in its own class.
 +
* Typically one class, '''GUI''', for the graphical user interface.
 +
 
 +
== My Style ==
 +
 
 +
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.
 +
 
 +
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.
  
== The Controllers for Smart Plug ==  
+
= Components and Functions =
 +
== 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.
 
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.
Line 55: Line 92:
 
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.
 
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.
  
== Global Values ==
+
== 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.
 +
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.
  
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.
+
 
It has values at the class level ( not instance ) that are available simply by importing the class.  Most values are originally defaulted to None, and are set to valid values as the application initializes and runs.
+
 
 +
== Singletons ==
 +
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 they.  Keep in mind an application is not a library. So in addition to AppGlobal we have
 +
 
 +
* AppGlobal  -- used as a class, never any instances
 +
* 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.
 +
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 ==
 +
 
 +
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.
 +
 +
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 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.
 +
 
 +
*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 70: Line 139:
 
=== HelperThread ===
 
=== HelperThread ===
  
Refers to similar but different program !! Will update for this program soon.
+
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.
  
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.
+
=== Helper Thread in Smart Terminal ===
 +
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 ==
 +
 +
This is a fairly big topic.  It is how you or your user easily controls some aspect of the program.
  
 
Parameters ( in parameters.py ) this is pretty much a structure ( that is all instance variables ) that is instantiated early in the life of the application.  It passes values, strings, numbers, objects to application elements that need them.  The instance of parameters is made globally available thru the AppGlobal class. Values in Parameters are treated as constants, read only.  Much of the appearance and behavior of the application is controlled here.
 
Parameters ( in parameters.py ) this is pretty much a structure ( that is all instance variables ) that is instantiated early in the life of the application.  It passes values, strings, numbers, objects to application elements that need them.  The instance of parameters is made globally available thru the AppGlobal class. Values in Parameters are treated as constants, read only.  Much of the appearance and behavior of the application is controlled here.
Line 89: Line 164:
  
 
== 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.
  
The database is SQLLite.  So far it seems adequate to the taskAccess is via string of SQL and variables bound to those statements. Look for the code in .......
+
== Logging ==
 
+
This uses the standard Python logging classLogging level and other logging details are controlled using the parameter file.  
== Polling ==
+
Logger ( in logger.py ) and Parameters ( in parameters.py ). The controller creates one of each, and make them available to the other components. The other components can interact with them, and uses them respectively for logging events, and getting access to parameters ( those aspects of the application that are particularly easy to change )I describe more of this in [[My Python Coding Conventions]]
Both threads have method that perform polling for events often for items in their queue that may have been sent from the other threadInfo on a similar app in [[Python Smart Terminal Technical Details]].
 
  
== Logging ==
+
== System Editor ==
This uses the standard Python logging classLogging level and other logging details are controlled using the parameter file.
+
I often use the system editor, for example to view the log files.  This has gotten more complicated over time ( and is still a bit in flux now )The current approach is to give the system a list of possible editor programs ( some hardcoded and some via parameters ) and try each until one works or all are tried.  The system then remembers the one that works.  Code for this is mostly in AppGlobal with a bit in parameters.
  
 
== Other Classes ==
 
== Other Classes ==
 
For now the documentation, as far as it exists is in the source code.  This probably will not change.
 
For now the documentation, as far as it exists is in the source code.  This probably will not change.
 
See:  [[My Python Coding Conventions]]
 
  
 
= Coding Conventions =
 
= Coding Conventions =
Line 108: Line 181:
 
= See Also =
 
= See Also =
  
Master Page for this Project:
+
Look at the categories below, especially the one Python Projects
 
[[Python Control of Smart Plugs]]
 
[[Python Control of Smart Plugs]]
 
+
 
 
== A Related Python Program==
 
 
*[[Python Smart Terminal Technical Details]] More detailed technical issues.
 
*[[Python Smart Terminal Technical Details]] More detailed technical issues.
 
*[[Smart Terminal GUI]] how the gui works and interfaces the user.
 
*[[Smart Terminal GUI]] how the gui works and interfaces the user.
Line 120: Line 191:
  
  
[[Category:Python SmartPlug]] [[Category:Python]]
+
[[Category:Python]] [[Category:Python Projects]] [[Category:SmartTerminal]][[Category:Python SmartPlug]] [[Category:Python Easy DB]] [[Category:ClipBoard]][[Category:Twitter Analysis DB]]
 
 
 
 
 
 
 
 
[[Category:Python]][[Category:SmartTerminal]][[Category:Python SmartPlug]] [[Category:Python Easy DB]]
 

Latest revision as of 17:35, 9 May 2020

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.


See also: Python Smart Plug Technical

Overview[edit]

General Information[edit]

These notes are here so you can more easily modify my code and build your own.

Goals/Needs[edit]

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[edit]

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 main program is the controller.

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. 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.

Projects Here Done in this Style[edit]

Development Environment[edit]

  • Windows 10 64bit
  • Anaconda Spyder 4.x
  • Python 3.7

Runtime Environments[edit]

Should Run in:

  • Windows, Mac, Linux, Raspberry Pi with desktop support ( not headless )
  • Python 3.6 up.

I am now running in:

  • Windows 10, Python 3.7
  • Linux Mint
  • Raspberry Pi Buster

I have had some issues with matplotlib in linux which are still unresolved.

Imported Libraries[edit]

Frequently or occasionally used:

  • Tkinter for the GUI
  • pyLogging for logging
  • Second thread for processing without being blocked by/blocking the GUI
  • Mathplotlib for graphing.
  • SQLLite or MySQL for the database.
  • os, sys, psutil, platform .. and pathlib for system access.

My Components[edit]

Some of my components ( more information below )

  • Global Singleton for app cohesion.
  • 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[edit]

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.

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.

Components and Functions[edit]

The Controllers for Applications[edit]

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.

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[edit]

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. 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[edit]

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 they. Keep in mind an application is not a library. So in addition to AppGlobal we have

  • AppGlobal -- used as a class, never any instances
  • 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[edit]

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. 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[edit]

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.

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[edit]

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 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.
  • 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[edit]

The application runs two threads, one for the GUI and one where processing can occur ( HelperThread ) with out locking up the GUI. There are 2 queues that allow the threads to communicate. Multithreading is not used in the graphing application as of now.

The Tkinker Thread[edit]

Once Tkinker is started it runs its own mainloop. In order to receive however we need to check the rs232 port from time to time. This is done in SmartTerminal.polling() I call this thread the GUI thread or gt. The terminal is configured to have a second thread called the Helper Thread or ht. In some cases the receiving of data is passed to the Helper Thread so where data is processed in addition to being posted to the GUI. See the section HelperThread for more info.

HelperThread[edit]

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.

Helper Thread in Smart Terminal[edit]

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[edit]

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[edit]

This is a fairly big topic. It is how you or your user easily controls some aspect of the program.

Parameters ( in parameters.py ) this is pretty much a structure ( that is all instance variables ) that is instantiated early in the life of the application. It passes values, strings, numbers, objects to application elements that need them. The instance of parameters is made globally available thru the AppGlobal class. Values in Parameters are treated as constants, read only. Much of the appearance and behavior of the application is controlled here.

The standard gui has a button to kick off editing of this file, the application may then be restarted ( another button ) with the new values.

There are a couple of meta parameters, including os_win, mode and computername which then may be used in conditionals later in parameters.py. Except for this sort of thing there is really not much "code" in parameters. You can change this code pretty much as much as you like, as long as you end up setting up values for the required parameters.

The code is extensively commented: use that for documentation.

Values are often set to None as a default, then later set to some other value. Or the value may be set several times in a row ( this is an artifact of messing with the values ); only the last value set has any meaning.

For more info see: Configuration Files For Python

DataBase[edit]

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.

Logging[edit]

This uses the standard Python logging class. Logging level and other logging details are controlled using the parameter file. Logger ( in logger.py ) and Parameters ( in parameters.py ). The controller creates one of each, and make them available to the other components. The other components can interact with them, and uses them respectively for logging events, and getting access to parameters ( those aspects of the application that are particularly easy to change ). I describe more of this in My Python Coding Conventions

System Editor[edit]

I often use the system editor, for example to view the log files. This has gotten more complicated over time ( and is still a bit in flux now ). The current approach is to give the system a list of possible editor programs ( some hardcoded and some via parameters ) and try each until one works or all are tried. The system then remembers the one that works. Code for this is mostly in AppGlobal with a bit in parameters.

Other Classes[edit]

For now the documentation, as far as it exists is in the source code. This probably will not change.

Coding Conventions[edit]

See: My Python Coding Conventions

See Also[edit]

Look at the categories below, especially the one Python Projects Python Control of Smart Plugs