Skip to main content

Extension for Foliant documentation tool to download external files during project build.

Project description

DownloadFile Extension

DownloadFile is a configuration extension for Foliant which downloads external files to use in your project.

It also resolves !download YAML tag in the project config and inside XML-tags parameters.

Installation

$ pip install foliantcontrib.downloadfile

Usage

To configure DownloadFile add the following section to your foliant.yml file:

downloadfile:
    fail_fast: true
    ignore_ssl_errors: false
    queue:
        - url: https://example.com/image.png  # required
          save_to: images/img1.png
          login: john
          password: qwerty123
        - ...

fail_fast : When true, build will be stopped if any file can't be downloaded. If false ­— unavailable files will be just skipped. Doesn't affect !download tag, this one will always break the build on errors. Default: true.

ignore_ssl_errors : Switch to true to skip SSL certificate check. Default: false.

queue : list of files to download. Each file is represented by a dictionary with the following fields:

url : (requried) URL to the file which should be downloaded.

save_to : path where the downloaded file should be saved, relative to the project root. If not supplied, file will be saved in the project root with the name from url.

login : login for basic authentication.

password : password for basic authentication.

Warning: don't store plain text passwords in foliant.yml. Use environment variables.

!download YAML tag

Another way to use DownloadFile is by specifying !download YAML tag. This is the quickest and the simplest way, but it comes with a few disadvantages.

Insert the !download tag, followed by file URL, in any place in foliant.yml or tag parameters, where file path is expected:

preprocessors:
    - swaggerdoc:
        spec_path: !download https://example.com/swagger.json
        mode: widdershins
Generated template:

<template engine="jinja2" ext_context="!download https://example.com/mycontext.yml">
...
</template>

The downloaded file will be saved in the .downloadfilecache directory under a hashed name, and the !download tag will be replaced by absolute path to this file.

The cons of this method are that you can't change the saved file path nor other parameters. Also if you reference the same file twice with !download tag, it will be downloaded two times.

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

foliantcontrib.downloadfile-1.0.1.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

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