Skip to main content

Simple light API to download and install (optionally compressed) files.

Project description

Downloads and installs files

PyPI Python 3.13 Build Status

Simple light API to download and install files. If the file appears to be a compressed file by ending with zip, tar.gz, tgz etc, then also un-compress the file after it is downloaded. The process flow follows:

  1. Check to see if the installed file exists. If not download it.
  2. Otherwise, if the file has been downloaded uncompress it.
  3. If the file could not be downloaded, uncompressed, or a file from the uncompressed file isn't found an error is thrown.

A destination location can be specified in the configuration. It is also possible to install it in the ~/.cache/<package name> where package name is the name the installed package. For example, that would be zensols.install for the package installed for this repository.

Documentation

Obtaining

The easiest way to install the command line program is via the pip installer:

pip3 install zensols.install

Binaries are also available on pypi.

Usage

The below code is given in the example.

First create the installer configuration with each file to be installed as a resource as a file install.conf:

[build_resource]
class_name = zensols.install.Resource
url = https://github.com/plandes/zenbuild/archive/refs/tags/general_build.zip
# we have to give the name of the diretory in the zip file so the program knows
# what to unzip; otherwise it is named from the section, or file if `None`
name = zenbuild-general_build
# a file in the compressed archive to access; also used to indicate it was
# (already) extracted
sub_path = src/python/gtagutil
# uncomment below to keep the `zenbuild-general_build.zip` zip file
#clean_up = False

[downloader]
class_name = zensols.install.Downloader
#use_progress_bar = False

[installer]
class_name = zensols.install.Installer
# providing the `downloader` is optional
downloader = instance: downloader
# uncomment the below line, then comment out `base_directory` to use the
# package name (using the zensols.cli.ApplicationFactory--see example); using
# `package_resource` will in install a ~/.<package name> install directory
base_directory = path: install_dir
# give the installer access to the resource
resources = instance: list: build_resource

Now use the configuration to create an Installer and access an file to be uncompressed via a Resource:

import logging
from zensols.config import IniConfig, ImportConfigFactory
from zensols.install import Resource, Installer

logging.basicConfig(level=logging.INFO)

# create the installer
fac = ImportConfigFactory(IniConfig('install.conf'))
installer: Installer = fac.instance('installer')

# print the resources the installer contains
res: Resource
for res in self.installer.resources:
	res.write_to_log(logger, depth=1)

# iterate over the paths the installer creates from the resources
path: Path
for path in self.installer:
	logger.info(f'resource path: {path}')

# install the files
installer.install()

# access a file
ufile: Path = self.installer.get_singleton_path()
print(f'uncompressed file: {ufile}, exists: {ufile.is_file()}')

# optionally remove any installed files
self.installer.clear()

This code creates a new directory with the un-zipped files in install_dir:

INFO:zensols.install.installer:installing zenbuild-general_build to install_dir/zenbuild-general_build
INFO:zensols.install.download:creating directory: install_dir
INFO:zensols.install.download:downloading https://github.com/plandes/zenbuild/archive/refs/tags/general_build.zip to install_dir/zenbuild-general_build.zip
general_build.zip: 16.4kB [00:00, 40.1kB/s]
INFO:zensols.install.installer:uncompressing install_dir/zenbuild-general_build.zip to install_dir
patool: Extracting install_dir/zenbuild-general_build.zip ...
patool: ... install_dir/zenbuild-general_build.zip extracted to `install_dir'.
INFO:zensols.install.installer:cleaning up downloaded file: install_dir/zenbuild-general_build.zip

First the program checks to see if the target directory (name property in the zip_resource section) exists. It then downloads it when it can't find either the target directory or the downloaded file.

If the program is run a second time, there will be no output since the installed directory now exists.

Changelog

An extensive changelog is available here.

Community

Please star this repository and let me know how and where you use this API. Contributions as pull requests, feedback, and any input is welcome.

License

MIT License

Copyright (c) 2021 - 2026 Paul Landes

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zensols_install-1.4.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file zensols_install-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for zensols_install-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 857bf2a6cdbdf67d64a66f7aefd704e93742bf89c531f6581aaabe780c156d36
MD5 0e2b2fff309b65652e09ecc13e2ccf0e
BLAKE2b-256 595a9b510fc7f71c567d9ba31967be3687b61175ea692a2144d85f9fe43daab6

See more details on using hashes here.

Supported by

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