Automated updates for stand-alone Python applications, built upon python-tuf.
Reason this release was yanked:
wrong versioning scheme
Project description
notsotuf
A simple software updater for stand-alone Python applications.
The notsotuf
package is built on top of python-tuf, which is the reference implementation for TUF (The Update Framework).
The initial implementation is focused on Windows. The package can be used on other platforms, but these are not actively supported.
About
The notsotuf
package was inspired by PyUpdater, and uses a general approach to updating that is directly based on PyUpdater's implementation.
However, whereas PyUpdater implements a custom security mechanism to ensure authenticity (and integrity) of downloaded update files, notsotuf
is built on top of the security mechanisms implemented in the python-tuf package, a.k.a. tuf
.
By entrusting the design of security measures to the security professionals, notsotuf
can focus on high-level tools.
Although tuf
supports highly complex security infrastructures, it also offers sufficient flexibility to allow application developers to tailor the security level to their use case.
For details and best practices, refer to the tuf docs.
A detailed discussion of the intricacies of TUF adoption can be found in PEP458.
Overview
Borrowing tuf
terminology, we have tools for the repository (repo) side and tools for the client side.
The repo tools are used by the app developer to:
- create update files (e.g. using PyInstaller)
- sign the resulting files (cryptographically)
- deploy these files to a server
The client tools are used by the app itself to:
- check for updates
- download update files
- apply the update files
The tuf
package is used under the hood to check for updates and download update files in a secure manner, so notsotuf
can safely apply the update.
See the tuf docs for more information.
Archives and patches
Notsotuf works with archives (e.g. gzipped PyInstaller bundles) and patches (binary differences between subsequent archives). Each archive, except the first one, must have a corresponding patch file.
Archive filenames and patch filenames follow the pattern
<name>-<version><suffix>
where name
is a short string that may contain alphanumeric characters, underscores, and hyphens, version
is a version string according to the PEP440 specification, and suffix
is either '.tar.gz'
(including '.tar.gz'
) or '.patch'
.
Patches are typically smaller than archives, so the notsotuf client will always attempt to update using one or more patches. However, if the total amount of patch data is greater than the desired full archive file, a full update will be performed.
How updates are created (repo-side)
When a new release of your application is ready, the following steps need to be taken to enable clients to update to that new release:
- Create an application archive for the new release (e.g. a zipped PyInstaller bundle).
- Create a patch from the current archive to the new archive.
- Add hashes for the newly created archive file and patch file to the
tuf
metadata. - Sign the modified
tuf
metadata files. - Upload the new target files, i.e. archive and patch, and the updated metadata files, to the update server.
The signed metadata and hashes ensure both authenticity and integrity of the update files (see tuf docs).
In order to sign the metadata, we need access to the private key files for the applicable tuf
roles.
The notsotuf.tools.repo
module provides a convenient way to streamline the above procedure, based on the tuf
basic repo example.
How updates are applied (client-side)
Updates are applied by replacing all files in the current app installation path with files from the latest archive. The latest archive is either downloaded in full (as described above), or it is derived from the current archive by applying one or more downloaded patches. Once the latest archive is available, it is decompressed to a temporary location. From there, a script is started that clears the current app installation dir, and moves the new files into place. After starting the script, the currently running process will exit.
Migrating from other update frameworks
Here's one way to migrate from another update framework, such as pyupdater
, to notsotuf
:
- Add
notsotuf
to your main application environment as a core dependency, and movepyupdater
from core dependencies to development dependencies. - Replace all
pyupdater
client code (and configuration) in your application by thenotsotuf
client. - Build, package, and sign using
pyupdater
, and deploy to your server, as usual. This will ensure yourpyupdater
clients currently in the field will be able to update to the newnotsotuf
client. From here on, new updates will be deployed usingnotsotuf
. - Set up your
notsotuf
repository (on the same server or another server), but keep thepyupdater
repository in place as long as necessary to allow all clients to update. - From now on, build, package, sign and deploy using
notsotuf
, as described elsewhere in this document.
Platform support
The notsotuf
package is aimed primarily at Windows applications.
Basic notsotuf.client
functionality should also work on Mac or Linux, provided a custom move_and_exit
hook is specified in Client.update()
.
However, these platforms are not actively supported.
Moreover, Linux applications are probably better off using native packaging solutions, or solutions such as Flatpak or Snapcraft.
Read the Python packaging overview for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file notsotuf-2022.0.tar.gz
.
File metadata
- Download URL: notsotuf-2022.0.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d099c619dc82ae8c5b588ef6d6f6292c3d0482fcd714ea5c2d9a869d57965f74 |
|
MD5 | 89aed77617cc79117ce17412147d0c38 |
|
BLAKE2b-256 | 721d12c1a0b09b7c07c5b352bf9f1e1e5ef35d1dcd1eec156bf88e0ccd36746c |
File details
Details for the file notsotuf-2022.0-py3-none-any.whl
.
File metadata
- Download URL: notsotuf-2022.0-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 946acbc0857351e9390b3048f857584d67ad494f49c8795cc2225c5912ccf956 |
|
MD5 | bed76ff3a90631b1830c31a68bccb3a6 |
|
BLAKE2b-256 | fce4deb3881e7081845549fc49acef1124df957ffd335f9cd4190dffbb68201f |