Skip to main content

keep frozen apps fresh

Project description

esky: keep frozen apps fresh

Esky is an auto-update framework for frozen Python applications, built on top
of bbfreeze. It provides a simple API through which apps can find, fetch
and install updates, and a bootstrapping mechanism that keeps the app safe
in the face of failed or partial updates.

The main interface is the 'Esky' class, which represents a frozen app. An Esky
must be given the path to the top-level directory of the frozen app, and a
'VersionFinder' object that it will use to search for updates. Typical usage
for an app automatically updating itself would look something like this:

if hasattr(sys,"frozen"):
app = esky.Esky(sys.executable,"http://example.com/downloads/")
new_version = app.find_update()
if new_version is not None:
app.install_update(new_version)

A simple default VersionFinder is provided that hits a specified URL to get
a list of available versions. More sophisticated implementations will likely
be added in the future, and you're encouraged to develop a custom VersionFinder
subclass to meet your specific needs.

When properly installed, the on-disk layout of an app managed by esky looks
like this:

prog.exe - esky bootstrapping executable
updates/ - work area for fetching/unpacking updates
appname-X.Y/ - specific version of the application
prog.exe - executable(s) as produced by bbfreeze
library.zip - pure-python modules frozen by bbfreeze
pythonXY.dll - python DLL
esky-bootstrap.txt - list of files expected in the bootstrapping env
...other deps...

The "appname-X.Y" directory is simply a bbfrozen app directory with some extra
bootstrapping information produced by esky. To freeze your app in such a
format, there is a "bdist_esky" command that can be used with a standard
distutils setup.py file.

To upgrade to a new version "appname-X.Z", esky performs the following steps:
* extract it into a temporary directory under "updates"
* move all bootstrapping files into "appname-X.Z/esky-bootstrap"
* atomically rename it into the main directory as "appname-X.Z"
* move the contents of "appname-X.Z/esky-bootstrap" into the main dir
* remove the "appname-X.Z/esky-bootstrap" directory
* remove files not in "appname-X.Z/esky-bootstrap.txt" from the main dir
* remove the "appname-X.Y" directory

Where such facilities are provided by the operating system, this process is
performed within a filesystem transaction. Neverthless, the esky bootstrapping
executable is able to detect and recover from a failed update should such an
unfortunate situation arise.

To clean up after failed or partial updates, applications should periodically
call the "cleanup" method on their esky.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

esky-0.1.2.tar.gz (14.7 kB view details)

Uploaded Source

File details

Details for the file esky-0.1.2.tar.gz.

File metadata

  • Download URL: esky-0.1.2.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for esky-0.1.2.tar.gz
Algorithm Hash digest
SHA256 0a1690dbf4d18a842635702101055701b957c2908d9105e94191b6ff4340619a
MD5 60f04806d9d6ba148f5910cac3149f72
BLAKE2b-256 f49be7b3324c1a00ad8660de896852132ea50a287fa921b2ad0f7da9ab19819f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page