- pyupdater.client.get_highest_version
- pyupdater.client.AppUpdate
- pyupdater.client.Client
- pyupdater.client.ClientError
- pyupdater.client.DefaultClientConfig
- pyupdater.client.FileDownloader
- pyupdater.client.LibUpdate
- pyupdater.client.UnpaddedBase64Encoder
- pyupdater.client.UpdateStrategy
- pyupdater.client.VerifyKey
Used to update an application. This object is returned by pyupdater.client.Client.update_check
Args:
data (dict): Info dict
Cleans up old update archives for this app or asset
Downloads update
######Args:
background (bool): Perform download in background thread
Will extract the update from its archive to the update folder. If updating a lib you can take over from there. If updating an app this call should be followed by method "restart" to complete update.
######Returns:
(bool) True - Extract successful. False - Extract failed.
Will extract the update then overwrite the current binary
Will extract the update, overwrite the current binary, then restart the application using the updated binary.
Used to check if update has been downloaded.
######Returns (bool):
True - File is already downloaded.
False - File has not been downloaded.
Used to check for updates & returns an updateobject if there is an update.
######Args:
obj (instance): config object
######Kwargs:
refresh (bool): True - Refresh update manifest on init False - Don't refresh update manifest on init
progress_hooks (list): List of callbacks
data_dir (str): Path to custom update folder
headers (dict): A dictionary of generic and/or urllib3.utils.make_headers compatible headers
strategy (str): The update strategy to use (default: overwrite). See the UpdateStrategy enum for options.
test (bool): Used to initialize a test client
Add a download progress callback function to the list of progress hooks.
total: Total size of the file to download
downloaded: The amount of bytes that have been downloaded so far.
percent_complete: The percentage downloaded so far
status: Status of download
Args:
cb (function): Function which takes a dict as its first argument
Will download and verify the version manifest.
Checks for available updates
######Args:
name (str): Name of file to update
version (str): Current version number of file to update
channel (str): Release channel
strict (bool): True - Only look for updates on specified channel. False - Look for updates on all channels
######Returns:
(updateobject):
AppUpdate - Used to update current binary
LibUpdate - Used to update external assets
None - No Updates available
Raised for Client exceptions
The FileDownloader object downloads files to memory and verifies their hash. If hash is verified data is either written to disk to returned to calling object
######Args:
filename (str): The name of file to download
urls (list): List of urls to use for file download
hexdigest (str): The hash of the file to download
######Kwargs:
headers (str):
hexdigest (str): The hash of the file to download
verify (bool):
True: Verify https connection
False: Do not verify https connection
Downloads file to memory, checks against provided hash If matched returns binary data
Returns:
(data):
Binary data - If hashes match or no hash was given during
initialization.
None - If any verification didn't pass
Downloads file then verifies against provided hash If hash verfies then writes data to disk
Returns:
(bool):
True - Hashes match or no hash was given during initialization.
False - Hashes don't match
Used to update library files used by an application. This object is returned by pyupdater.client.Client.update_check
######Args:
data (dict): Info dict
Cleans up old update archives for this app or asset
Downloads update
######Args:
background (bool): Perform download in background thread
Will extract the update from its archive to the update folder. If updating a lib you can take over from there. If updating an app this call should be followed by method "restart" to complete update.
######Returns:
(bool) True - Extract successful. False - Extract failed.
Used to check if update has been downloaded.
######Returns (bool):
True - File is already downloaded.
False - File has not been downloaded.
A simple encoder class to encode/decode to base64 with the 'padding' (trailing equal characters) removed.
This is needed for PyNaCL to be compatible with keys generated by the old ed25519 library.
Enum representing the update strategies available
The public key counterpart to an Ed25519 SigningKey for producing digital signatures.
:param key: [:class:bytes
] Serialized Ed25519 public key
:param encoder: A class that is able to decode the key