Skip to main content

Binaries for the 'extended + withdeploy' edition of the Hugo static site generator, installable with pip

Project description

hugo-python-distributions

Classifiers Description
Builds Actions Status for CI Actions status for CD pre-commit.ci status
Package PyPI version PyPI - Python Version Downloads Downloads per month Downloads per week Downloads per day
Meta License Hugo version Documentation pre-commit Ruff

Binaries for the extended + withdeploy edition of the Hugo static site generator, installable via pip

This project provides wheels for Hugo so that it can be used with pip on macOS, Linux, and Windows; for Python 3.9 and later.

[!NOTE] Only the latest, stable, and to-be EOL Python versions are tested regularly. If you encounter any issues with the package on a specific Python version, please feel free to open an issue.

What is Hugo?

Hugo is a static site generator written in Go. It is designed to be fast and flexible, and it is used by many people and organizations for their websites, documentation, and personal blogs.

[!NOTE] This distribution of Hugo is currently not affiliated with the official Hugo project. Please refer to the Hugo documentation for more information on Hugo.

What version of hugo do I install?

This project, hugo is versioned alongside the Hugo releases and is aligned with the versioning of Hugo itself, which uses SemVer – but is likely versioned according to 0ver software standards based on their versioning history.

Binaries for hugo through these wheels are available for Hugo versions 0.121.2 and above, through PyPI or through releases on GitHub. If you need an older version of hugo that is not available through this package, please consider using the official Hugo binaries.

Please refer to the section on Supported platforms for a list of wheels available for supported platforms and architectures. If it does, jump to the Quickstart section to get started.

[!WARNING] Owing to the limitations of overall sizing available on PyPI for hugo, only the most recent versions of Hugo are available for download through pip, and older versions of these wheels will be deleted to make space for newer releases. If you need an older version of Hugo, please consider using the wheels that have been uploaded to the GitHub releases page or the official Hugo binaries. The former can be done via pip by downloading the .whl file, or through pipx using the URL directly (recommended). For example, if you need Hugo 0.122.0, you can run pipx install "https://github.com/agriyakhetarpal/hugo-python-distributions/releases/download/v0.122.0/hugo-0.122.0-cp311-cp311-win_amd64.whl" to download and install the wheel for Hugo 0.122.0 on Windows for Python 3.11.

Documentation

Quickstart

Create a virtual environment and install the package (or install it globally on your system):

python -m virtualenv venv  # (or your preferred method of creating virtual environments)
pip install hugo

This places a hugo installation with an executable in your virtual environment and adds an entry point to it in your virtual environment's bin directory. You can use the hugo command as you would normally:

hugo version
hugo env --logLevel info

Alternatively, you can install the package globally on your system:

python3.X -m pip install hugo  # Unix
py -m pip install hugo         # Windows

[!TIP] It is a great idea to use pipx or uvx to install or use Hugo in an isolated location without having to create a virtual environment, which will allow you to run Hugo as a command-line tool without having to install it globally on your system. i.e.,

pipx install hugo      # install Hugo through pipx
pipx run hugo         # run Hugo through pipx

or

uv tool install hugo  # install Hugo through uvx
uvx hugo              # run Hugo through uvx

or

pipx run hugo==0.121.2 # run a specific version of Hugo through pipx, even if a different version is installed in whatever environment you are in

Please refer to the pipx documentation and documentation on uv's tools interface for more information.

Then, you can use the hugo commands as you would normally:

hugo version
hugo env --logLevel info

and

hugo new site mysite
hugo --printI18nWarnings server
# and so on
...

Standard virtual environments can allow multiple versions of Hugo to be installed and used side-by-side. To use a specific version of Hugo, you can specify the version when installing the package (please refer to the section What version of hugo do I install? for more information):

pip install "hugo==0.X.Y"

For more information on using Hugo and its command-line interface, please refer to the Hugo documentation and Hugo CLI documentation.

Supported platforms

A subset of the platforms supported by Hugo itself are supported by these wheels for hugo via hugo-python-distributions. The plan is to support as many platforms as possible with Python wheels and platform tags. Please refer to the following table for a list of supported platforms and architectures:

Platform Architecture Support
macOS x86_64 (Intel) ✅ macOS 10.13 (High Sierra) and later
macOS arm64 (Silicon) ✅ macOS 11.0 (Big Sur) and later
Linux amd64 ✅ glibc 2.17 and later
Linux arm64 ✅ glibc 2.17 and later
Linux s390x ✅ glibc 2.17 and later
Linux ppc64le ✅ glibc 2.17 and later
Windows x86_64
Windows arm64 ✅💡 Experimental support [^1]
Windows x86 ✅💡 Experimental support [^1]
DragonFlyBSD amd64 ❌ Will not receive support[^2]
FreeBSD amd64 ❌ Will not receive support[^2]
OpenBSD amd64 ❌ Will not receive support[^2]
NetBSD amd64 ❌ Will not receive support[^2]
Solaris amd64 ❌ Will not receive support[^2]

[^1]: Support for 32-bit (i686) and arm64 architectures on Windows is made possible through the use of the Zig compiler toolchain that uses the LLVM ecosystem. These wheels are experimental owing to the use of cross-compilation and may not be stable or reliable for all use cases, and are not officially supported by the Hugo project at this time. Hence, while these are published to PyPI for general availability, they are considered experimental. Please refer to the Building from source section for more information on how to build Hugo for these platforms and architectures locally. If you need official support for these platforms or face any bugs, please consider contacting the Hugo authors by [https://github.com/gohugoio/hugo/issues/new](opening an issue).

[^2]: Support for these platforms is not possible to include because of i. the lack of resources to test and build for them and ii. the lack of support for these platform specifications in Python packaging standards and tooling. If you need support for these platforms, please consider downloading the official Hugo binaries for their non-extended editions.

Building from source

Building the extended + withdeploy edition of Hugo from source requires the following dependencies:

  • The Go toolchain
  • The Git version control system
  • A C/C++ compiler, such as GCC or Clang

Windows users can use the Chocolatey package manager in order to use the MinGW compiler. After installing Chocolatey, run the following command in an elevated terminal prompt:

choco install mingw

Then, clone the repository and run the build script:

git clone https://github.com/agriyakhetarpal/hugo-python-distributions@main
python -m venv venv
source venv/bin/activate      # on Unix-based systems
venv\Scripts\activate.bat     # on Windows
pip install -e .              # editable installation
pip install .                 # regular installation

Cross-compiling for different architectures

[!NOTE] Cross-compilation is experimental and may not be stable or reliable for all use cases. If you encounter any issues with cross-compilation, please feel free to open an issue.

This project is capable of cross-compiling Hugo binaries for various platforms and architectures and it can be used as follows. Cross-compilation is provided for the following platforms:

  1. macOS; for the arm64 and amd64 architectures via the Xcode toolchain,
  2. Linux; for the arm64, amd64, s390x, and ppc64le architectures via the Zig toolchain, and
  3. Windows; for the amd64, arm64, and x86 architectures via the Zig toolchain.

Please refer to the examples below for more information on how to cross-compile Hugo for different architectures:

macOS

Say, on an Intel-based (x86_64) macOS machine:

export GOARCH="arm64"
pip install .  # or pip install -e .

This will build a macOS arm64 binary distribution of Hugo that can be used on Apple Silicon-based (arm64) macOS machines. To build a binary distribution for the target Intel-based (x86_64) macOS platform on the host Apple Silicon-based (arm64) macOS machine, you can use the following command:

export GOARCH="amd64"
pip install .  # or pip install -e .
Linux

Set the USE_ZIG, GOOS, and GOARCH environment variable prior to installing the package:

Say, on an amd64 Linux machine:

export USE_ZIG="1"
export GOOS="linux"
export GOARCH="arm64"
pip install .  # or pip install -e .

will cross-compile a Linux arm64 binary distribution of Hugo that can be used on the targeted arm64 Linux machines. To build a binary distribution for the target amd64 Linux platform on the host arm64 Linux machine, set the targets differently:

export USE_ZIG="1"
export GOOS="linux"
export GOARCH="amd64"
pip install .  # or pip install -e .

This creates dynamic linkage for the built Hugo binary with a system-provided GLIBC. If you wish to statically link the binary with MUSL, change the CC and CXX environment variables as follows:

export CC="zig cc -target x86_64-linux-musl"
export CXX="zig c++ -target x86_64-linux-musl"

Linkage against MUSL is not tested in CI at this time, but it should work in theory. The official Hugo binaries do not link against MUSL for a variety of reasons including but not limited to the size of the binary and the popularity of the GLIBC C standard library and its conventions.

Windows

Set these environment variables prior to installing the package:

Say, on an amd64 Windows machine:

set USE_ZIG="1"
set GOOS="windows"
set GOARCH="arm64"
pip install .  # or pip install -e .

will cross-compile a Windows arm64 binary distribution of Hugo that can be used on the targeted arm64 Windows machines (note the use of set instead of export on Windows), and so on for the x86 architecture:

set USE_ZIG="1"
set GOOS="windows"
set GOARCH="386"
pip install .  # or pip install -e .

For a list of supported distributions for Go, please run the go tool dist list command on your system. For a list of supported targets for Zig, please refer to the Zig documentation for more information or run the zig targets command on your system.

[!TIP] Cross-compilation for a target platform and architecture from a different host platform and architecture is also possible, but it remains largely untested at this time. Currently, the Zig compiler toolchain is known to work for cross-platform, cross-architecture compilation.

Background

Binaries for the Hugo static site generator are available for download from the Hugo releases page. These binaries have to be downloaded and placed in an appropriate location on the system manually and the PATH environment variable has to be updated to include said location.

This project provides wheels for Hugo to be used with pip on macOS, Linux, and Windows. This allows Hugo to be installed and used in a virtual environment, which allows multiple versions of Hugo to be installed and used side-by-side in different virtual environments, where Hugo can be used as a command-line tool (a Python API is not provided at this time given the lack of such a demand for it).

Use cases

This project is designed to be used in the following scenarios:

  • You want to use Hugo as a command-line tool, but you don't want it to be installed globally on your system or do not have the necessary permissions to do so.
  • You cannot or do not want to use the official Hugo binaries
  • You want to use Hugo in a virtual environment that is isolated from the rest of your system – this also allows you to install and use multiple versions of Hugo side-by-side if needed for any reason
  • You want to use Hugo in a Python-based project, such as a static site generator that uses Hugo as a backend?
  • You want to test a new version of Hugo without having to install it globally on your system or affecting your existing Hugo installation
  • Python wheels allow for incredibly fast installation, in comparison to using other methods of installing Hugo such as system package managers
  • Easy updates to the latest version of Hugo through the use of the pip install --upgrade hugo command, and automatic updates possible too if you use a package manager such as Poetry or PDM to manage your Python dependencies or a tool such as pipx to manage your command-line tools
  • ...and more!

(Known) limitations

  • It is difficult to provide wheels for all platforms and architectures (see Supported platforms), so this project only provides wheels for the most common ones—those supported by Python platform tags, packaging standards and tooling—it is not reasonable to do so and provide releases for other platforms owing to the limited resources available on CI systems, in this case, GitHub Actions runners. For extra platforms and architectures, please refer to the Building from source section or consider using the official Hugo binaries for your purpose.
  • This project does not provide a Python API for Hugo, it just wraps its own command-line interface. The packaging infrastructure for this Python package is not designed to provide a Python API for Hugo, and it is not the goal of this project to provide one. If you need a Python API for Hugo, please refer to the Hugo documentation for further resources on how to use Hugo programmatically as needed.

Licensing

This project is licensed under the terms of the Apache 2.0 license. Hugo is available under Apache 2.0 (see the Hugo license) as well.

Security

Please refer to the Security policy for this project for more information.

Code of Conduct

This repository aims to follow the Hugo project in striving to provide a welcoming and inclusive environment for all contributors, regardless of their background and identity. Please refer to the Code of Conduct for more information that applies to all interactions in this repository and its associated spaces. It is reliant on the Contributor Covenant for its guidelines and conforms to version 2.1.

For requesting help, reporting bugs, or requesting features that are specific to Hugo's functionalities, please refer to the Hugo Discourse forum. For requesting help for hugo-python-distributions, please feel free to open an issue in this repository.

Inspirations for this project, and similar projects

Binaries

  • The official Hugo project, which is the source of the binaries provided by this project.

Naming

  • The cmake-python-distributions project by the scikit-build team provides a similar infrastructure for building and distributing CMake as a Python package to be used as a PEP 517 build-time dependency for building packages with extension modules. I used their repository's name as an inspiration for the name of this repository.

Other distributors of Hugo

  • uhugo is a Hugo binary helper that installs and updates Hugo binaries from Hugo official releases. It can be used to update the version of Hugo within Cloud providers. The difference between uHugo is that this project enables building Hugo from source and embeds the application binary into a wheel, while uHugo is a CLI to update an existing Hugo binary already present on PATH. It provides similar visions for installing Hugo via a command-line interface, even though the idea and the packaging code is fundamentally different.
  • hvm (Hugo version manager) is a project by one of the core developers of Hugo that allows downloading multiple Hugo versions and setting different default versions by adding them to PATH, thereby allowing the usage of multiple versions at once, but without the extra Python scaffolding provided here (and without pipx's run-without-install functionality of course).
  • hugo-installer is a small Node.js script which you can use to fetch the correct Hugo binary for your system and install it with npm's post-installation hook. It is similar to this project in that it provides a way to install Hugo binaries.
  • conda-forge's hugo feedstock provides a way to install Hugo binaries via the conda package format and associated package managers.

Similar projects that distribute binaries embedded in Python packages

  • zig-pypi is a project that provides a way to distribute the Zig compiler as a Python package, which can be installed via pip. It provides a similar infrastructure for building and distributing binaries as this project does for Hugo, but it fetches the Zig compiler binaries from the official Zig releases and embeds them into a Python package in a reproducible manner.
  • nodejs-wheel is a project that provides a way to unofficially distribute Node.js binaries as Python packages, which can be installed via pip, in order to use Node.js and npm in an isolated Python environment.
  • The pip-binary-factory repository provides binaries and their CLIs for various Go-based tools as Python packages.

There are several other projects in this area, but are not listed here for brevity.

Footnotes

  • This project is currently not affiliated with the official Hugo project. Please refer to the Hugo documentation for more information on Hugo.
  • The author of this project: @agriyakhetarpal, would like to express a token of gratitude to the owner of the Hugo package on PyPI (@nariman) for their kind gesture of granting access to take over the package name with the underlying provisions of PEP 541. This way, it allows users to install the package using the same name as the official Hugo project, which undoubtedly provides for a better user experience and convenience to users of this package when compared to the previous package name, python-hugo.

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

hugo-0.148.1.tar.gz (30.7 kB view details)

Uploaded Source

Built Distributions

hugo-0.148.1-py3-none-win_arm64.whl (25.7 MB view details)

Uploaded Python 3Windows ARM64

hugo-0.148.1-py3-none-win_amd64.whl (28.7 MB view details)

Uploaded Python 3Windows x86-64

hugo-0.148.1-py3-none-win32.whl (26.3 MB view details)

Uploaded Python 3Windows x86

hugo-0.148.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

hugo-0.148.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

hugo-0.148.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

hugo-0.148.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

hugo-0.148.1-py3-none-macosx_11_0_arm64.whl (26.3 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

hugo-0.148.1-py3-none-macosx_10_13_x86_64.whl (27.9 MB view details)

Uploaded Python 3macOS 10.13+ x86-64

File details

Details for the file hugo-0.148.1.tar.gz.

File metadata

  • Download URL: hugo-0.148.1.tar.gz
  • Upload date:
  • Size: 30.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for hugo-0.148.1.tar.gz
Algorithm Hash digest
SHA256 e238475427b3077dd66cc9f6f1cf748cdf2bfcbf23479b836ee7a4241c4b9faa
MD5 38025e8d5644d0be4c2ea5b25db0e6da
BLAKE2b-256 dfe56a8d584e5b4ec791780286187390b21ead6cf5562dc2ffa067a931d9800d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1.tar.gz:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-win_arm64.whl.

File metadata

  • Download URL: hugo-0.148.1-py3-none-win_arm64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for hugo-0.148.1-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 c7baef7ffe0c9414bee2e23424c37721391db3545673bf43bcf92d6a17f27f94
MD5 bf2331c5d7b5d261a5df0e9d80f50845
BLAKE2b-256 67c84da588a721ee61368aae9d432ac4218890c28ac8e1ea9c8a2691e7cf7c8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-win_arm64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-win_amd64.whl.

File metadata

  • Download URL: hugo-0.148.1-py3-none-win_amd64.whl
  • Upload date:
  • Size: 28.7 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for hugo-0.148.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 8e5b5d51893a447b20d5bfbced339dedf1d8e3b01c3d6d323f77d9f6222ec2e0
MD5 11a5adbb87543dcd675779ad7b0c6fab
BLAKE2b-256 19f7ad655cf86265fdadbc3f4a6030c9141ee4f6a46b944d885b32e18c46cc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-win_amd64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-win32.whl.

File metadata

  • Download URL: hugo-0.148.1-py3-none-win32.whl
  • Upload date:
  • Size: 26.3 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for hugo-0.148.1-py3-none-win32.whl
Algorithm Hash digest
SHA256 c699c3fccf1aeb34874f3279c6afa1a9da8d69d23b3060c379e993f8a17e8fe0
MD5 e9565068952c386e987daa158067316d
BLAKE2b-256 5c50ebab6a9ff2ba2346c49b97548ae5e0e4b351f1024fa945494de2234fc8e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-win32.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da02e5b1b67d2ae366c2fde68a2dd063ab16a0709595f6098afe4fb773d3ee4e
MD5 92fbbb697e80207009bcdb2d2c927696
BLAKE2b-256 e7ae4f4ab8aab18b8d3efce765ab7b1aeaab5c325d9fe5623a53cdd08b8df745

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10c5be38cf29e2c39c9eda12196e80d844a168faf40d7e7350dc6f68d44cc140
MD5 f273d75ffc6b384e326264f667a02ca4
BLAKE2b-256 40dd7ba5e1ff7e1ca8ab6afdbcb2f082320fa251d38d792387ee97776ddcfaf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 078b321e50cc0a639c09974f50eda1de8b4265c3ba9f4a5b4f433bc1c9715916
MD5 f9e115498e4db420e93df3f9b1bf6857
BLAKE2b-256 84155eff8d014d71242cd8191f07906e4ce3b8bff7489de309408084fa955dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c46c9986eac69c7695b5c69d734e3d150d3cafff931119a3bbc273bba4a82305
MD5 014cbbf235dcdf9b08dd2a740de96d95
BLAKE2b-256 039153c7b0515d90b8abbc7739b5276a3b54b3affe0d251635f5a85c1a3bd46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d87b8ed6bb80d517d7d9fc66db33eeead56e99a66f02f02b189a192b7504dc
MD5 8ddac5c99541f7d8bdd92e05250743fa
BLAKE2b-256 a7cbabdf03c73844d900b2ed7f66a4b1add202533dc78f7c40628ce3c296862b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-macosx_11_0_arm64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hugo-0.148.1-py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hugo-0.148.1-py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9abd8bec74a30fe95a2e4409587595f820c5f4d26a7d10558b00c7589b82cf63
MD5 f89e8a02c947ffd1d58be1bcd3ecc714
BLAKE2b-256 7c34c86e75d2836b18f3a029712d274a7c6ccf56e3e8746f9c1ba3db865680ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for hugo-0.148.1-py3-none-macosx_10_13_x86_64.whl:

Publisher: cd.yml on agriyakhetarpal/hugo-python-distributions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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