Skip to content

PySimpleSQL/pysimplesql

Repository files navigation

pysimplesql User's Manual

DISCLAIMER:

While pysimplesql works with and was inspired by the excellent PySimpleGUI™ project, it has no affiliation.

Rapidly build and deploy database applications in Python

pysimplesql binds PySimpleGUI™ to various databases for rapid, effortless database application development. At the time of this writing, pysimplesql supports SQLite, MySQL, MariaDB, PostgreSQL and Flatfile CSV databases!

Makes a great replacement for MS Access or LibreOffice Base! Have the full power and language features of Python while having the power and control of managing your own codebase. pysimplesql not only allows for super simple automatic control (not one single line of SQL needs written to use pysimplesql), but also allows for very low level control for situations that warrant it.

History

pysimplesql was conceived after having used PySimpleGUI™ to prototype a GUI in Python. After some time it became apparent that my approach of prototyping in one language, just to implement it in another wasn't very efficient and didn't make much sense. I had taken this approach many times in the past due to the lack of a good RAD (Rapid Application Development) tool when it comes to making database front ends in Python. Rather than spending my time porting my prototype over, one time I decided to try my hand at creating such a tool - and this is what I ended up with. Now make no mistake - I'm not a good project maintainer, and my goal was never to launch an open source project in the first place. The more I used this combination of pysimplesql and PySimpleGUI™ for my own database projects, the more I realized how many others would benefit from it. With that being said, I will do my best to maintain and improve this tool over time. Being new to open source as well as hosting projects like this, I have a lot to learn moving forward. Your patience is appreciated.

Basic Concepts

pysimplesql borrows on common concepts in other database front-end applications such as LibreOffice or MS Access. The basic concept revolves around Forms, which are invisible containers that connect to an underlying database, and Datasets, which use SQL to access the tables within the database. Forms in pysimplesql are very flexible in that multiple forms (and their underlying databases and tables) can be bound to the same PySimpleGUI™ Window. This allows for a tremendous amount of flexibility in your projects. Binding a pysimplesql Form to a PySimpleGUI™ Window is very easy, and automatically binds Elements of the Window to records in your own database. Be sure to check out the many examples to get a quick idea of just how quick and easy it is to develop database application with the combination of pysimplesql and PySimpleGUI™!

Some people may like to think of Form objects as a Database, and Dataset objects as a Table. For this reason, the Form class has an alias of Database and the Dataset class has an alias of Table - so you can use the Database/Table classes instead of Form/Dataset in your own code if you prefer!

ADVANCED FUNCTIONALITY

pysimplesql does much more than just bridge the gap between PySimpleGUI™ and databases! In full, pysimplesql contains:

  • Support for multiple databases. Currently, SQLite, MySQL, MariaDB, PostgreSQL and even CSV Flatfiles are supported
  • Convenience functions for simplifying PySimpleGUI™ layout code for building database driven GUIs
  • Binding between PySimpleGUI™ elements and database fields
  • Automatic requerying of related tables
  • Record navigation - Such as First, Previous, Next, Last, Searching and selector control elements
  • Callbacks to allow your own functions to expand control over your own database front ends
  • Event Mapping system
  • An edit protect system to help prevent unwanted or errant changes to your data
  • A prompt save system to help avoid losing data
  • LanguagePacks - use one of the existing ones, modify one or create your own
  • ThemePacks - change the look and feel of your application, including icons for navigation buttons and more
  • Transforms - Transform your data as it's read from and written to the database

All of the above features will be broken down throughout the sections below, from the simple to the advanced.

Lets do this!

Install

NOTE: I will try to keep current progress updated on Pypi so that pip installs the latest version. However, the single pysimplesql.py file can just as well be copied directly into the root folder of your own project.

pip install PySimpleGUI
pip install pysimplesql
or
pip3 install PySimpleGUI
pip3 install pysimplesql

pysimplesql is in active development and constantly changing. When an update is available, a message similar to the following will be displayed in the output of the program:

***** pysimplesql update to v0.0.5 available! Just run pip3 install pysimplesql --upgrade *****

Be sure to update the package when you get this message, or from time to time with the following command:

pip install pysimplesql --upgrade

or

pip3 install pysimplesql --upgrade

This Code

import PySimpleGUI as sg
import pysimplesql as ss                # <=== PySimpleSQL lines will be marked like this.  There's only a few!
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)  # <=== Set the logging level here (NOTSET,DEBUG,INFO,WARNING,ERROR,CRITICAL)


# Define our layout. We will use the Form.field() convenience function to create the controls
layout = [
    [ss.field('Restaurant.name')],
    [ss.field('Restaurant.location')],
    [ss.field('Restaurant.fkType', sg.Combo, size=(30, 10), auto_size_text=False)],
    [sg.HSep()]
]
sub_layout = [
    [ss.selector('Item', size=(35, 10))],
    [ss.actions('Item', default=False, insert=True, delete=True)],
    [sg.HSep()],
    [
        sg.Col(
            layout=[
                [ss.field('Item.name')],
                [ss.field('Item.fkMenu', sg.Combo, size=(30, 10), auto_size_text=False)],
                [ss.field('Item.price')],
                [ss.field('Item.description', sg.MLine, size=(30, 7))],

            ]
        )
    ],
]
layout.append([sg.Frame('Items', sub_layout)])
layout.append([ss.actions('Restaurant', edit_protect=False)])

# Initialize our window and database, then bind them together
win = sg.Window('Places to eat', layout, finalize=True)
# Set up our driver. # NOTE: ":memory:" is a special database URL for in-memory databases
driver = ss.Sqlite(':memory:', sql_script='restaurants.sql')
# Create our Form
frm = ss.Form(driver, bind_window=win)  # <=== load the database

while True:
    event, values = win.read()

    if ss.process_events(event, values):                  # <=== let PySimpleSQL process its own events! Simple!
        logger.info('PySimpleDB event handler handled the event!')
    elif event == sg.WIN_CLOSED or event == 'Exit':
        frm.close()  # <= ensures proper closing of the sqlite database and runs a database optimization at close
        break
    else:
        logger.info(f'This event ({event}) is not yet handled.')
win.close()

along with a database created from these SQL statements

DROP TABLE IF EXISTS "Restaurant";
DROP TABLE IF EXISTS "Item";
DROP TABLE IF EXISTS "Type";
DROP TABLE IF EXISTS "Menu";

CREATE TABLE "Restaurant"(
	"pkRestaurant" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Restaurant",
	"location" TEXT,
	"fkType" INTEGER,
	FOREIGN KEY(fkType) REFERENCES Type(pkType)
);

CREATE TABLE "Item"(
	"pkItem" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Item",
	"fkRestaurant" INTEGER,
	"fkMenu" INTEGER,
	"price" TEXT,
	"description" TEXT,
	FOREIGN KEY(fkRestaurant) REFERENCES Restaurant(pkRestaurant) ON UPDATE CASCADE,
	FOREIGN KEY(fkMenu) REFERENCES Menu(pkMenu)
);

CREATE TABLE "Type"(
	"pkType" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Type"
);

CREATE TABLE "Menu"(
	"pkMenu" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Menu"
);

INSERT INTO "Menu" VALUES (1,"Breakfast");
INSERT INTO "Menu" VALUES (2,"Lunch");
INSERT INTO "Menu" VALUES (3,"Dinner");

INSERT INTO "Type" VALUES (1,"Fast Food");
INSERT INTO "Type" VALUES (2,"Fine Dining");
INSERT INTO "Type" VALUES (3,"Hole in the wall");
INSERT INTO "Type" VALUES (4,"Chinese Food");

INSERT INTO "Restaurant" VALUES (1,"McDonalds","Seatle WA",1);
INSERT INTO "Item" VALUES (1,"Hamburger",1,2,"$4.99","Not flame broiled");
INSERT INTO "Item" VALUES (2,"Cheeseburger",1,2,"$5.99","With or without pickles");
INSERT INTO "Item" VALUES (3,"Big Breakfast",1,1,"$6.99","Your choice of bacon or sausage");

INSERT INTO "Restaurant" VALUES (2,"Chopstix","Cleveland OH",4);
INSERT INTO "Item" VALUES (4,"General Tso",2,3,"$7.99","Our best seller!");
INSERT INTO "Item" VALUES (5,"Teriaki Chicken",2,3,"$5.99","Comes on a stick");
INSERT INTO "Item" VALUES (6,"Sticky Rice",2,2,"$6.99","Our only lunch option, sorry!");

INSERT INTO "Restaurant" VALUES (3,"Jimbos","Lexington KY",3);
INSERT INTO "Item" VALUES (7,"Breakfast Pizza",3,1,"$11.99","Pizza in the morning");
INSERT INTO "Item" VALUES (8,"Lunch Pizza",3,3,"$12.99","Pizza at noon");
INSERT INTO "Item" VALUES (9,"Dinner Pizza",3,3,"$16.99","Whatever we did not sell earlier in the day");

Makes This fully operational database front-end

Complete with navigation buttons, insert, delete, duplicate and save buttons, a search input field and button, and even a built in quick editor for editing related foreign tables. image

Like PySimpleGUI™, pysimplesql supports subscript notation, so your code can access the data easily in the format of Form['Table']['column']. In the example above, you could get the current item selection with the following code:

selected_restaurant = frm['Restaurant']['name']
selected_item = frm['Item']['name']

or via the PySimpleGUI™ control elements with the following:

selected_restaurant=win['Restaurant.name']
selected_item=win['Item.name']

It really is that simple. All the heavy lifting is done in the background!

To get the best possible experience with pysimplesql, the magic is in the schema of the database. The automatic functionality of pysimplesql relies on just a couple of things:

  • foreign key constraints on the database tables (lets pysimplesql know what the relationships are, though manual relationship mapping is also available)
  • a CASCADE ON UPDATE constraint on any tables that should automatically refresh child tables when parent table records are changed
  • PySimpleGUI™ element keys are typically named {table}.{column} when using the ss.field() convenience function. Of course, keys can be manually supplied as well. Form.field() is a convenience function/"custom element" to make adding records quick and easy!
  • Each table has what is known as a "description column". The description column is what will be displayed in ComboBoxes and other controls for foreign key relationships. The description column is automatically set to the 'name', 'title', or 'description' column of the table if they exist, or the 2nd column of the table in the absence of these columns. This can als be changed manually if needed, but truly the simplicity of pysimplesql is in having everything happen automatically!

Here is another example SQL table that shows the above rules at work. Don't let this scare you, there are plenty of tools to create your database without resorting to raw SQL commands. These commands here are just shown for completeness (Creating the SQL database is only done once anyway)

CREATE TABLE "Book"(
    "pkBook" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
    "title" TEXT,
    "author" TEXT
);
CREATE TABLE "Chapter"(
    "pkChapter" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
    "title" TEXT,
    "fkBook" INTEGER,
    "startPage" INTEGER,
    -- SECRET SAUCE BELOW! If you have foreign key constraints set on the database,
    -- then pysimplesql will pick them up!
    -- note: ON UPDATE CASCADE only needed if you want automatic GUI refreshing
    -- (i.e. not every constraint needs them, like fields that will populate comboboxes for example)
    FOREIGN KEY(fkBook) REFERENCES Book(pkBook) ON UPDATE CASCADE
);

But wait, there's more!

The above is literally all you have to know for working with simple and even moderate databases. However, there is a lot of power in learning what is going on under the hood. In the examples below, we will peel back the layers so that you can learn how to manually add database tables, map elements to them and manually set up events and callbacks.

pysimplesql elements:

Referencing the example above, look at the following:

[ss.field('Restaurant.name')],

# could have been written like this using PySImpleGUI elements:
[
    sg.Text('Name:', size=(15, 1)), 
    sg.Input('', key='Restaurant.name', size=(30, 1), metadata={'type': ss.TYPE_RECORD, 'Form': None, 'filter': None, 'field': 'Restaurant.name', 'data_key': 'Restaurant.name'})
]

As you can see, the pysimplesql.field() convenience function simplifies making field elements that adhere to the pysimplesql conventions needed for automatic mapping. Also notice that pysimplesql makes use of the PySimpleGUI metadata keyword argument - but don't worry, the element's metadata is still be available to you in your own program by adding your own keys in the Python list contained within, or just overwriting it completely after the window has been bound to the Form.

There is even more you can do with this. The pysimplesql.field() function can take a PySimpleGUI™ element as a parameter as well, overriding the default Input() element. Furthermore, supplying an optional key will let you use any key you want in your program instead of the default table.column string. See this code which uses ss.field() to create a combobox instead of the default Input element:

[ss.field('Restaurant.fkType', sg.Combo)]

Furthering that, the default size of these elements created by ss.field() can be set with the ThemePack to have custom sizing of the elements. Even with these defaults set, the size parameter of pysimplesql.field() will override the default size, for plenty of flexibility with a minimum amount of code.

Place those two functions just above the layout definition shown in the example above and then run the code again

# set the sizing for the Restaurant section
ss.themepack['set_label_size'] = (10, 1)    # <=== Add this line
ss.themepack['set_element_size'] = (90, 1)  # <=== Add this line
# Define our layout. We will use the Form.field() convenience function to create the controls
layout = [
    [ss.field('Restaurant.name')],
    [ss.field('Restaurant.location')],
    [ss.field('Restaurant.fkType', sg.Combo, size=(30, 10), auto_size_text=False)],
    [sg.HSep()]
]
sub_layout = [
    [ss.selector('Item', size=(35, 10))],
    [ss.actions('Item', default=False, insert=True, delete=True)],
    [sg.HSep()],
    [
        sg.Col(
            layout=[
                [ss.field('Item.name')],
                [ss.field('Item.fkMenu', sg.Combo, size=(30, 10), auto_size_text=False)],
                [ss.field('Item.price')],
                [ss.field('Item.description', sg.MLine)],

            ]
        )
    ],
]
layout.append([sg.Frame('Items', sub_layout)])
layout.append([ss.actions('Restaurant', edit_protect=False)])

image You will see that now, the controls were resized using the new sizing rules. Notice however that some elements had a size parameter manually set, so they didn't use the defaults!

Let's see one more example. This time we will fix the oddly sized elements by specifying the new size in the size parameter

ss.themepack['set_label_size'] = (10, 1)   
ss.themepack['set_element_size'] = (90, 1)  
# Define our layout. We will use the Form.field() convenience function to create the controls
layout = [
    [ss.field('Restaurant.name')],
    [ss.field('Restaurant.location')],
    [ss.field('Restaurant.fkType', sg.Combo, size=(90, 10), auto_size_text=False)],
    [sg.HSep()]
]
sub_layout = [
    [ss.selector('Item', size=(105, 10))],
    [ss.actions('Item', default=False, insert=True, delete=True)],
    [sg.HSep()],
    [
        sg.Col(
            layout=[
                [ss.field('Item.name')],
                [ss.field('Item.fkMenu', sg.Combo, size=(90, 10), auto_size_text=False)],
                [ss.field('Item.price')],
                [ss.field('Item.description', sg.MLine, size=(90, 7))],

            ]
        )
    ],
]

image

Binding the window to the element

Referencing the same example above, the window and database were bound with this one single line:

frm = ss.Form(driver, bind_window=win) # Load in the database and bind it to win

The above is a one-shot approach and all most users will ever need! The above could have been written as:

frm=ss.Form(driver) # Load in the database using the supplied driver
frm.bind(win) #  bind the window to the database

frm.bind() likewise can be peeled back to its own components and could have been written like this:

frm.auto_add_datasets()
frm.auto_add_relationships()
frm.auto_map_controls(win)
frm.auto_map_events(win)
frm.requery_all()
frm.update_elements()

And finally, that brings us to the lowest-level functions for binding the database. This is how you can MANUALLY map tables, relationships, controls and events to the database. The above auto_map_* methods could have been manually achieved as follows:

# Add the datasets you want pysimplesql to handle.  The function frm.auto_add_datasets() will add all dataset found in the database 
# by default.  However, you may only need to work with a couple of tables in the database, and this is how you would do that

# add the tables, with their primary key fields, and description fields
frm.add_dataset('Restaurant', 'pkRestaurant', 'name', ) 
frm.add_dataset('Item', 'pkItem', 'name', )  
frm.add_dataset('Type', 'pkType', 'name', )  
frm.add_dataset('Menu', 'pkMenu', 'name', )  
# Note: While I personally prefer to use the pk{Table} and fk{Table} naming conventions, it's not necessary for 
# pySimpleSQL. These could have just as well been restaurantID and itemID for example


# Set up relationships
# Notice below that the first relationship has the last parameter to True.  This is what the ON UPDATE CASCADE constraint accomplishes.
# Basically what it means is that then the Restaurant table is requeried, the associated Item table will automatically requery right after.
# This is what allows the GUI to seamlessly update all the PySimpleGUI elements when records are changed!
# The other relationships have that parameter set to False - they still have a relationship, but they don't need requeried automatically
frm.add_relationship('LEFT JOIN', 'Item', 'fkRestaurant', 'Restaurant', 'pkRestaurant', True)
frm.add_relationship('LEFT JOIN', 'Restaurant', 'fkType', 'Type', 'pkType', False)
frm.add_relationship('LEFT JOIN', 'Item', 'fkMenu', 'Menu', 'pkMenu', False)

# Map our elements
# Note that you can map any element to any DataSet field  that you would like.
# The {DataSet}.{field} naming convention is only a default used by **pysimplesql**, and can be customized with the
# `key` parameter when using ss.field() or ss.selector()
frm.map_element(win['Restaurant.name'], 'Restaurant', 'name')
frm.map_element(win['Restaurant.location'], 'Restaurant', 'location')
frm.map_element(win['Restaurant.fkType'], 'Type', 'pkType')
frm.map_element(win['Item.name'], 'Item', 'name')
frm.map_element(win['Item.fkRestaurant'], 'Item', 'fkRestaurant')
frm.map_element(win['Item.fkMenu'], 'Item', 'fkMenu')
frm.map_element(win['Item.price'], 'Item', 'price')
frm.map_element(win['Item.description'], 'Item', 'description')

# Map out our events
# In the other examples, this was all done automaticallys since we used the ss.actions() convenience functions to add 
# record navigation buttons. However, we could have made our own buttons and mapped them to events.  Below is such an 
# example.
frm.map_event('Restaurant:table_first', frm['Restaurant'].first)  # button control with the key of 'Restaurant:table_first'
frm.map_event('Restaurant:table_previous', frm['Restaurant'].previous)
frm.map_event('Restaurant:table_next', frm['Restaurant'].next)
frm.map_event('Restaurant:table_last', frm['Restaurant'].last)
# and so on...
# In fact, you can use the event mapper however you want to, mapping control names to any function you would like!
# Event mapping will be covered in more detail later...

# This is the magic function which populates all of the controls we mapped!
# For your convenience, you can optionally use the function Form.set_callback('update_controls',function) to set a callback function
# that will be called every time the controls are updated.  This allows you to do custom things like update
# a preview image, change element parameters or just about anything you want!
frm.update_elements()

As you can see, there is a lot of power in the auto functionality of pysimplesql, and you should take advantage of it any time you can. Only very specific cases need to reach this lower level of manual configuration and mapping!

Convenience Functions

pysimplesql.field(table, field,control_type=None,size=None,text_label=None)- This is a convenience function for creating a PySimpleGUI™ text element and a PySimpleGUI™ Input element inline for purposes of displaying a field from the current record.
This function also creates a default name of {table.column} in the element's key parameter and the required metadata that pysimplesql uses for advanced automatic functionality. The optional element parameter allows you to bind elements other than Input to a database field. Checkboxes, ListBoxes, and other controls entered here will override the default Input control. The size parameter will override the default element size that is set in the current ThemePack. Lastly, the text_label parameter will prefix a text field before the element.

pysimplesql.selector() - For adding Selector controls to your GUI. Selectors are responsible for selecting the current record in a Form in addition to the normal navigateion buttons.

pysimplesql.actions()- Actions such as save, delete, search and record navigation can all be customized with this convenience function!

Element Binding

PySimpleGUI elements are bound to fields from the current record. This means that as you navigate through your data your GUI automatically updates and stays in sync. This happens automatically, but can also be done manually if needed.

Automatic Requerying

Foreign key relationships can be complicated, and even more so when you are trying to manage a GUI to display this related data. As example, if you were to have an Albums database, and a Songs database, where a foreign key in Songs references the Albums table, then when the current record for Album changes, the songs list is automatically requeried so that only songs referencing that Album are shown.

Record Navigation

pysimplesql includes a convenience function for adding record navigation buttons to your project. For lower level control or a custom look, you may want to learn how to do this on your own. Lets start with the convenience function and work backwards from there to see how you can implement your own record navigation controls.

The convenience function pysimplesql.actions() is a swiss army knife when it comes to generating PySimpleGUI™ layout code for your record navigation controls. With it, you can add First, Previous, Next and Last record navigation buttons, a search box, edit protection modes, and record actions such as Insert, Save and Delete (Or any combination of these items). Under the hood, the actions() convenience function uses the Event Mapping features of pysimplesql, and your own code can do this too! See the code below on example usage of the pysimplesql.actions() convenience function

#!/usr/bin/python3
import PySimpleGUI as sg
import pysimplesql as ss

# Create a small table just for demo purposes
sql = '''
CREATE TABLE "Fruit"(
    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Fruit"
);
INSERT INTO "Fruit" ("name") VALUES ("Apple");
INSERT INTO "Fruit" ("name") VALUES ("Orange");
INSERT INTO "Fruit" ("name") VALUES ("Banana");
INSERT INTO "Fruit" ("name") VALUES ("Kiwi");
'''

# PySimpleGUI™ layout code to create your own navigation buttons
table = 'Fruit'  # This is the table in the database that you want to navigate
layout = [
    [ss.field(table, 'name', label='Fruit Name')],
    # pysimplesql.record() convenience function for easy record creation!
    [ss.actions(), table]  # pysimplesql.actions() convenience function for easy navigation controls!
]

win = sg.Window('Navigation demo', layout, finalize=True)
# note: Since win was passed as a parameter, binding is automatic (including event mapping!)
# Also note, in-memory databases can be created with ":memory:"!
db = ss.Database(':memory:', sql_commands=sql, bind_window=win)  # <- Database can be used as an alias to Form!

while True:
    event, values = win.read()
    if db.process_events(event, values):  # <=== let pysimplesql process its own events! Simple!
        print(f'PySimpleDB event handler handled the event {event}!')
    elif event == sg.WIN_CLOSED or event == 'Exit':
        db = None  # <= ensures proper closing of the database and runs a database optimization
        break
    else:
        print(f'This event ({event}) is not yet handled.')

Simple! But as stated earlier, pysimplesql.actions is a swiss army knife! Experiment with the code ablove, trying all of these variations to see all of goodness this convenience functions provides!

ss.actions(table, search=False)
ss.actions(table, save=False)
ss.actions(table, edit_protect=False)
ss.actions(table, insert=False)
ss.actions(table, delete=False, save=False) 

See example below of how your can make your own record navigation controls instead of using the pysimplesql.actions() convenience function:

#!/usr/bin/python3
import PySimpleGUI as sg
import pysimplesql as ss

# Create a small table just for demo purposes
sql = '''
CREATE TABLE "Fruit"(
    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Fruit"
);
INSERT INTO "Fruit" ("name") VALUES ("Apple");
INSERT INTO "Fruit" ("name") VALUES ("Orange");
INSERT INTO "Fruit" ("name") VALUES ("Banana");
INSERT INTO "Fruit" ("name") VALUES ("Kiwi");
'''

# PySimpleGUI™ layout code to create your own navigation buttons
table = 'Fruit'  # This is the table in the database that you want to navigate
layout = [
    [ss.field(table, 'name', label='Fruit Name')],
    # pysimplesql.record() convenience function for easy record creation!
    # Below we will create navigation buttons manually, naming the key so that the automatic event mapper will map the events
    [sg.Button('<<', key=f'btnFirst', size=(1, 1), metadata=meta = {'type': ss.TYPE_EVENT, 'event_type': ss.EVENT_FIRST,
                                                                    'table': table, 'function': None}),
sg.Button('<', key=f'btnPrevious', size=(1, 1), metadata=meta = {'type': ss.TYPE_EVENT, 'event_type': ss.EVENT_PREVIOUS,
                                                                 'table': table, 'function': None}),
sg.Button('>', key=f'btnNext', size=(1, 1), metadata=meta = {'type': ss.TYPE_EVENT, 'event_type': ss.EVENT_NEXT,
                                                             'table': table, 'function': None}),
sg.Button('>>', key=f'btnLast', size=(1, 1), metadata=meta = {'type': ss.TYPE_EVENT, 'event_type': ss.EVENT_LAST,
                                                              'table': table, 'function': None})
]
]

win = sg.Window('Navigation demo', layout, finalize=True)
# note: Since win was passed as a parameter, binding is automatic (including event mapping!)
# Also note, in-memory databases can be created with ":memory:"!
db = ss.Database(':memory:', win, sql_commands=sql)

while True:
    event, values = win.read()
    if db.process_events(event, values):  # <=== let pysimplesql process its own events! Simple!
        print(f'PySimpleDB event handler handled the event {event}!')
    elif event == sg.WIN_CLOSED or event == 'Exit':
        db = None  # <= ensures proper closing of the database and runs a database optimization
        break
    else:
        print(f'This event ({event}) is not yet handled.')

Notice the metadata use in the navigation buttons above. This is so that the Automatic event mapping of pysimplesql will handle these. Valid event_types can be found right at the start of the pysimplesql.py file.

Peeling this back further, you can rewrite the same without the special metadata used by the automatic event mapper, then manually map them in the event mapper yourself...

#!/usr/bin/python3
import PySimpleGUI as sg
import pysimplesql as ss

# Create a small table just for demo purposes
sql = '''
CREATE TABLE "Fruit"(
    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Fruit"
);
INSERT INTO "Fruit" ("name") VALUES ("Apple");
INSERT INTO "Fruit" ("name") VALUES ("Orange");
INSERT INTO "Fruit" ("name") VALUES ("Banana");
INSERT INTO "Fruit" ("name") VALUES ("Kiwi");
'''

# PySimpleGUI™ layout code to create your own navigation buttons
table = 'Fruit'  # This is the table in the database that you want to navigate
layout = [
    ss.field(table, 'name', label='Fruit Name'),  # pysimplesql.record() convenience function for easy record creation!
    # Below we will create navigation buttons manually, naming the key so that the automatic event mapper will map the events
    [
        sg.Button('<<', key=f'btnFirst', size=(1, 1)),
        sg.Button('<', key=f'btnPrevious', size=(1, 1)),
        sg.Button('>', key=f'btnNext', size=(1, 1)),
        sg.Button('>>', key=f'btnLast', size=(1, 1))
    ]
]

win = sg.Window('Navigation demo', layout, finalize=True)
# note: Since win was passed as a parameter, binding is automatic (including event mapping!)
# Also note, in-memory databases can be created with ":memory:"!
db = ss.Database(':memory:', sql_commands=sql, bind_window=win)

# Manually map the events, since we did not adhere to the naming convention that the automatic mapper expects
db.map_event('btnFirst', db[table].first)
db.map_event('btnPrevious', db[table].previous)
db.map_event('btnNext', db[table].next)
db.map_event('btnLast', db[table].last)

while True:
    event, values = win.read()
    if db.process_events(event, values):  # <=== let pysimplesql process its own events! Simple!
        print(f'PySimpleDB event handler handled the event {event}!')
    elif event == sg.WIN_CLOSED or event == 'Exit':
        db = None  # <= ensures proper closing of the database and runs a database optimization
        break
    else:
        print(f'This event ({event}) is not yet handled.')

Lastly, you can rewrite the same and handle the events yourself instead of relying on pysimplesql's event mapper

#!/usr/bin/python3
import PySimpleGUI as sg
import pysimplesql as ss

# Create a small table just for demo purposes
sql = '''
CREATE TABLE "Fruit"(
    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	"name" TEXT DEFAULT "New Fruit"
);
INSERT INTO "Fruit" ("name") VALUES ("Apple");
INSERT INTO "Fruit" ("name") VALUES ("Orange");
INSERT INTO "Fruit" ("name") VALUES ("Banana");
INSERT INTO "Fruit" ("name") VALUES ("Kiwi");
'''

# PySimpleGUI™ layout code to create your own navigation buttons
table = 'Fruit'  # This is the table in the database that you want to navigate
layout = [
    ss.field(table, 'name', label='Fruit Name'),  # pysimplesql.record() convenience function for easy record creation!
    # Below we will create navigation buttons manually, naming the key so that the automatic event mapper will map the events
    [
        sg.Button('<<', key=f'btnFirst', size=(1, 1)),
        sg.Button('<', key=f'btnPrevious', size=(1, 1)),
        sg.Button('>', key=f'btnNext', size=(1, 1)),
        sg.Button('>>', key=f'btnLast', size=(1, 1))
    ]
]

win = sg.Window('Navigation demo', layout, finalize=True)
# note: Since win was passed as a parameter, binding is automatic (including event mapping!)
# Also note, in-memory databases can be created with ":memory:"!
db = ss.Database(':memory:', win, sql_commands=sql)

while True:
    event, values = win.read()
    # Manually handle our record selector events, bypassing the event mapper completely
    if db.process_events(event, values):  # <=== let pysimplesql process its own events! Simple!
        print(f'PySimpleDB event handler handled the event {event}!')
    elif event == 'btnFirst':
        db[table].first()
    elif event == 'btnPrevious':
        db[table].previous()
    elif event == 'btnNext':
        db[table].next()
    elif event == 'btnLast':
        db[table].last()
    elif event == sg.WIN_CLOSED or event == 'Exit':
        db = None  # <= ensures proper closing of the database and runs a database optimization
        break
    else:
        print(f'This event ({event}) is not yet handled.')

Whether you want to use the pysimplesql.actions() convenience function, write your own navigation button layout code, use the auto event mapper, manually map the events, or handle the events yourself, you have plenty of options for flexibility writing your navigation button code! Of course, the convenience function is very flexible and has attractive icons in the buttons, and really should be used in most cases.

LanguagePacks

LanguagePacks in pysimplesql fun and easy to use. By default, a US English Language Pack is already enabled. Here is an example to load the Spanish LanguagePack: ss.languagepack(ss.lp_es) or the German LanguagePack: ss.languagepack(ss.lp_de) In fact, you can use a pre-built fun LanguagePack, or even build your own: ss.languagepack(ss.lp_monty_python) See the language_pack.py file for available built-in LanguagePacks!

Additionally, You can create partial LanguagePacks that uses the default LanguagePack for keys not specified in the new one. See example below that creates a new LanguagePack, where the YES and NO buttons are replaced with Yep! and Nope, and all others remain the default:

new_lp = {'button_yes': 'Yep!', 'button_no': 'Nope!'}
ss.languagepack(new_lp)

See the language_pack.py file for all the keys used in our LanguagePacks.

ThemePacks

TODO

Callbacks

TODO

Event Mapping

TODO

SIMPLE BUT ROBUST PROMPT SAVE SYSTEM

Nothing is worse than a program that doesn't catch when you forget to save changes - especially if those programs deal with data entry. pysimplesql has a simple but robust prompt save system in place. This is enabled by default, but can be turned off if needed. Prompt saves can be thought of as having 3 levels - a Form level which affects all queries of the Form, a Query level which affects only specific queries, and a manual level where you can command the system to prompt to save changes (such as when switching tabs in a tab group, at specified intervals, or when shutting down your program). The system is smart enough to only prompt if an actual change is found.

Form-level prompt save

Simply call python frm.set_promt_save(True) # or False to disable to enable automatic promt saves any time the user navigates away from a record that has changed. This happens for any and all Queries attached to this Form.

Query-level prompt save

A call to python frm['table_name'].set_prompt_save(True) # or False to disable for this Query can enable/disable automatic prompting for individual Queries

Manual prompting

To manually prompt for a save, just do a direct call to ```python frm.prompt_save(). There is an optional autosave=True/False parameter to enable an autosave feature which will make these saves happen automatically without bothering the user for their input. Its also a great thing to put in your main loop exit conditions to ensure changes are saved before shutting down. There are a couple of caveats to using the prompt_save() call on the main loop exit condition - please see example below:

# For using the prompt save system on exit, you have to add the enable_close_attempted_event=True parameter during PySimpleGUI window creation
window=sg.Window('My Program', layout, enable_close_attempted_event=True)

While True:
	events,values=window.read()
	
	if event in (sg.WINDOW_CLOSE_ATTEMPTED_EVENT, sg.WIN_CLOSED, 'Exit', '-ESCAPE-'):
        	frm.prompt_save(autosave=False) # set autosave to True to have this automatically happen, or leave to False to have the user prompted
		window.close()
		frm=None
		break

PLEASE BE PATIENT

There is a lot of documentation left to do, and more examples to make. In subsequent releases, I'll try to pick away at these items to get them done. For now, just create a github issue and ask your questions and I'll do my best to guide you in the right direction!