module installcustom.install_custom_sqlitespy

Short summary

module pymyinstall.installcustom.install_custom_sqlitespy

Various functions to install SQLiteSpy.

source on GitHub

Functions

function

truncated documentation

add_shortcut_to_desktop_for_sqlitespy

create a shortcut on your desktop

install_sqlitespy

Installs SQLiteSpy. It does not do it a second time if it is already installed.

IsSQLiteSpyInstalled

Checks if SQLiteSpy was already installed

Documentation

Various functions to install SQLiteSpy.

source on GitHub

pymyinstall.installcustom.install_custom_sqlitespy.IsSQLiteSpyInstalled(dest_folder)

Checks if SQLiteSpy was already installed

Parameters:

dest_folder – where it was installed

Returns:

boolean

source on GitHub

pymyinstall.installcustom.install_custom_sqlitespy.add_shortcut_to_desktop_for_sqlitespy(exe)

create a shortcut on your desktop

Parameters:

exe – exe location (SQLiteSpy.exe)

Returns:

filename

source on GitHub

pymyinstall.installcustom.install_custom_sqlitespy.install_sqlitespy(temp_folder='.', fLOG=<built-in function print>, install=True, version=None, backup=False)

Installs SQLiteSpy. It does not do it a second time if it is already installed.

Parameters:
  • temp_folder – where to download the setup

  • fLOG – logging function

  • install – install (otherwise only download)

  • version – version to install (unused)

Returns:

temporary file

source on GitHub