Skip to main content

A text preprocessing tool with environment variable substitution.

Project description

envsub

Documentation Continuous Integration

envsub is a text preprocessing tool that performs environment variable substitution in files, with support for default values. Written in Rust and callable from Python, it provides a fast and reliable way to inject environment variables into text files during runtime.

Features

  • Environment variable substitution in any text file.
  • Support for default values when environment variables are missing.
  • Fast performance with Rust under the hood, accessible from Python.

Installation

pip install envsub

Usage

envsub api

envsub comes with a sub method that text a io.TextIO and return a io.TextIO containing the replaced variable.

Basic usage:

from envsub import sub


with open("/path/to/file", "r") as downstream:
    with sub(downstream) as upstream:
        upstream.read()

When it is usefull.

envsub is made for replacing a set of variable inside a configuration file from envisonment variable, its feet well with confifuration file format.

Example with json:

import json
from envsub import sub

with open("/path/to/file.json", "r") as downstream:
    with sub(downstream) as upstream:
        data = json.load(upstream)

Substitution format

envsubst subsitute variable format that are curly-braced, like in bash.

{"hello": "${NAME}"}

⚠️ Warning:

The variable stay in the same line, no \n are permitted.**

This will not work: {"hello": "${ NAME }" }

Default value:

If the environment variable is not present, no substitution will be made, it means than in the previous example, ${NAME} will stay in the read value.

Alternatively, a default value can be set in the variable, using a - value.

{"hello": "${NAME-world}"}

In this case the final result will be {"hello": "world"}.

Alternatives

Similar tools exists, but did not find any good one in python.

The envsub lib has been created to replace non existing tool like a8m/envsubst a Go binary that update the GNU envsubst that do not support default values.

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

envsub-0.2.1.tar.gz (42.3 kB view details)

Uploaded Source

Built Distributions

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

envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (440.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (536.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (450.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (284.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

envsub-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (233.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

envsub-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (237.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (440.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (537.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (450.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (285.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

envsub-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (233.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

envsub-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (237.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

envsub-0.2.1-cp313-cp313-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.13Windows x86-64

envsub-0.2.1-cp313-cp313-win32.whl (122.6 kB view details)

Uploaded CPython 3.13Windows x86

envsub-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl (438.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

envsub-0.2.1-cp313-cp313-musllinux_1_1_armv7l.whl (535.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

envsub-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl (449.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

envsub-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

envsub-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

envsub-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (327.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

envsub-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

envsub-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

envsub-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (283.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

envsub-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (235.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

envsub-0.2.1-cp312-cp312-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.12Windows x86-64

envsub-0.2.1-cp312-cp312-win32.whl (122.4 kB view details)

Uploaded CPython 3.12Windows x86

envsub-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl (438.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

envsub-0.2.1-cp312-cp312-musllinux_1_1_armv7l.whl (535.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

envsub-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl (448.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

envsub-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

envsub-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

envsub-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

envsub-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

envsub-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

envsub-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (283.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

envsub-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

envsub-0.2.1-cp311-cp311-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.11Windows x86-64

envsub-0.2.1-cp311-cp311-win32.whl (123.1 kB view details)

Uploaded CPython 3.11Windows x86

envsub-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (439.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

envsub-0.2.1-cp311-cp311-musllinux_1_1_armv7l.whl (536.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

envsub-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (449.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

envsub-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

envsub-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (308.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

envsub-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (327.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

envsub-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

envsub-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

envsub-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (283.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

envsub-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

envsub-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

envsub-0.2.1-cp310-cp310-musllinux_1_1_armv7l.whl (536.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

envsub-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (450.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

envsub-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

envsub-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

envsub-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (327.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

envsub-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

envsub-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

envsub-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (283.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

envsub-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

envsub-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (439.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

envsub-0.2.1-cp39-cp39-musllinux_1_1_armv7l.whl (536.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

envsub-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

envsub-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

envsub-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

envsub-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (328.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

envsub-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

envsub-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

envsub-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (284.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

envsub-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (233.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

envsub-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl (237.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file envsub-0.2.1.tar.gz.

File metadata

  • Download URL: envsub-0.2.1.tar.gz
  • Upload date:
  • Size: 42.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1.tar.gz
Algorithm Hash digest
SHA256 38456c4f4702babb3d1b72649076aec067b6bccb1af661727d32d573d73d61fe
MD5 8d482e879226ca8366648bd47dd878d0
BLAKE2b-256 14508d86c18c16cf9057ac41815a767a325058fc56fa3d63dacef7854145d35e

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d3f226a22d67da762479b6c17e5df4ffc6a2bb7a6afc875de70fae40a6e6ecb
MD5 f36ab32a89c3caea142b027fbeda4796
BLAKE2b-256 b28a73f3cc2f8841e0f006b1784093d2732eb7e06a14030691f67d698313bfe1

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e85fa77e304fb9947938aebd870fdd57447d5d741ab6f050231dfbf47374f38e
MD5 b602441990c4abc4284e44d1a967390b
BLAKE2b-256 4414f85b0a96abbd53f94cbabd89af1b439c6755ac5b3652e515efd93d0126aa

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 551f7ad163b2bcbeda12db93036f8c813d4f95f627f02c51fed14f2f3cad142f
MD5 9f9b913bfd8b138f80eee3c0d64f76e1
BLAKE2b-256 eccb6443d7b403f973646ae9bea2adaef52206c2887e9c3039a82c4f10e95d43

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 024005442137c10629c1111afc2d9ec7408c6e20eca94a5e48c06b691c3c5bae
MD5 c65a5e0a5fffc45ef3fce99c6ed67047
BLAKE2b-256 44da118cc68c5492145ca4f223f38694b8750bd75c3a4b3854fcd2c1e2e6327c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c4114e048fc0f9887721220cbfb4d5a2dfbef3d78444adedbe811ef306ebe33
MD5 b4b461a01f61a58283c97432a8f54f78
BLAKE2b-256 c6879a32eef03a48edc730d26ad850a30410ab238e6b9dd1fcbab0fa9d0e228c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a57a41a70d434fa489cce0bf7780f9a1fb4d051293fb51e16027e03bce208df
MD5 1e456186031fd0689d8fa4267d8b5d5a
BLAKE2b-256 4e3147d5a2e15726fd4acdb4e8d2ce29ab5a78918410c5238e00a97b8f5c8206

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad3462689cb44cdbd56786f31172df1f0d41fd8a2e5382a191690bc40f5137b5
MD5 c5cd2bde36d4e00db44d52228ef4429c
BLAKE2b-256 39f3b2b7acc7467d46da61d56560e750ed1577a78a19e481a40883b0b8146c79

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eedabb6d8e3d41320850d3ba59764d9f41b1fc6321bca1944729748af14bbc16
MD5 fd2782be017e6f7eeb4718092388ce89
BLAKE2b-256 feb9a77fe190d9afdf21c555773c3da19cac04b76dfcf4730137722cb27b1b0d

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d9747343212833bc741f9d75f422d770e4892e1af289af3d647b333f72e3366
MD5 70a94d6c7e0d5b7cd7f9d3e8da0cfcfa
BLAKE2b-256 c3969a37ff515bfbc5c1df167fdddd6793ae3009705cb69ad064ac3fd5d15240

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 94185b43dcad1cd06dca0f206d67ff8a199389bd4fea1af6282b7a9598573fac
MD5 e06350417f7da310e16e8dc282f87995
BLAKE2b-256 5407c32778da8e6a6604734804f60feb61778536376e10556278b94140148a16

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0113052a5c681fc8b47f048341200cac9976087d6638974ddc2a4bf3cd8b2227
MD5 a01d55bee5bea795abc6d2a7d65711b5
BLAKE2b-256 59529dc57f1b97ad2754128ff1383848857d5661022515987bddc989881d7769

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7fb56bd3ff6343d60216241fc9023756871b8be8cd40dedd65c886e2b8743db
MD5 db8547a35c86aed34cffc9edbba1c47c
BLAKE2b-256 2202b492b84ff97104da3d78e6fc2c45b9f8a068a8359bfa944faf247deea36c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e687b2915cecc4b81433f0e632413a5cff1d30de238f72455100a6d174c2fe5f
MD5 9540fd2ad9d38a2ebf56d7ca70c9dcc0
BLAKE2b-256 f5ef201809db4cd16d42e31540e76c8254f3992157702b263b3f6b0b277a63a5

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cf06b0072f4cdf87178b6797ba37fe6dc4d1bd4a43e2a7e4394ff03db26ce7f
MD5 e2ae44f395ed33773c0d7d96e0f036fb
BLAKE2b-256 d20ae9c04fbbe7839fe57c92c8956549b8553243fb6f67e3af03ad256446341f

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a7f259e16c39d083e444cf89152ad88d1f715a25fe9ef7efd7f7e2a1c7d41e9
MD5 d16f15e1637979bb8f4e642602722450
BLAKE2b-256 cc2b25e869e460ed5d1ec29d75d4792d4db2dbd86c900d12459530adcc6dd081

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49fcf76b29410d4d90c550e3091f0180ba8ef71785b821cf02480ec6f59e2de4
MD5 52e173594690e4a7fa9cc81422fff852
BLAKE2b-256 4c389d10a67d7cc3cfff489bf4566576004bfd8a1679beb4084a9af04b680c4a

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: envsub-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 535ec139d20b8b2bc39f9f9e4ad1468cc61f0270c0a80141b6edec3048a8bbdc
MD5 855b2c7152767f49cf6f16325ff8fe60
BLAKE2b-256 a5e0d287b11c2a84aca84aa7ecc255a730c49d9c9f5dc535a17e3257f6835d61

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: envsub-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 122.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e9d9e859e14291893a5a6752eda89bff43a19b59e5dda57b9cbf802bd869e60e
MD5 42d6f2a29b4e5e351763e60df85737e6
BLAKE2b-256 fa56ddebf9ede00b0621f42f7d08942582db1d17241c515f90fafc5cb6d321bc

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ee8330d9094c426a81a66d192b055678bd5c167998db035d93d0063e9887b90
MD5 28ce7ac9d1abab12c0133b28071663ed
BLAKE2b-256 c79f940713e25ef552ad2052625bda830fa31ba5392e64bd1ecfcd42a1a88175

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4f79d3edcafa44c428844f031cb91152e324517cb74ecd65ceb02d827618bfe7
MD5 dbced63241562087ef0d82abac7a9707
BLAKE2b-256 26ca275bdfa837bb09fe87570ddc9dcf1505b68c6f956421784eb0cdf6707611

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f933478e5868ef7c568f76cf53d3ec5693ccd828ec5f0ed43bd06e22f5846eda
MD5 c65e14a7855dc6ee76a49f28c0bf9b24
BLAKE2b-256 44be01611488bec52a147611ba9af057acf18fa7bd44b8cfbea6a9b3d3446eae

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bce7bc93e2b6f3c7a0ac41307656834b898256ac34679436554d6d1ea740c2ac
MD5 0bd51e96fac46153e53af839f590ae81
BLAKE2b-256 b1b200a966849a787a1033682b9d2261f0151c5f5065ffaf43912549aaea059a

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac0f8a5963db27c3f432565ab48da6cd2946d41de7de63c163f123e6fc9c03bd
MD5 bab26240a825d59ddc42daaee4a5a006
BLAKE2b-256 2c927e90127f23a119914a89d0a0a1bb5e2d1bbc1ed19ce50b278a4b480f853e

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e48d7b199e4b8e5125f494228934d5f321eb5f819001c0adf4467e8d2efa3ead
MD5 2cdd8dee63043e9683a8264edf4398fb
BLAKE2b-256 09b29aac9f1c0271e78c5d2f679c5ba5567b1434e78de03d551776c0f97274c3

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b16d3d21935668c9a1b3025629253b121775c849bf129b4d0b3b3e8b3c36b6e
MD5 7297fa56de0a3170b9f7b122edab61c2
BLAKE2b-256 3d99cf1e167a50e76a028d4865a139459571e7ab479240762ca6c168615db6b8

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c34cee2e0c4cf4f61a6148be36e9cef53f3e00124fd9b482c95c73c7f2ec2704
MD5 bf0ee1777c2bcaaae64f3a4fe7c4d0ee
BLAKE2b-256 1e83ab2511165a562a86e29ad6216a7d36b97423716505a12142576ee6970714

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59999451e0ee8dfdfcbc383bae2618b3c347d19dd0ea9494f75e53a25aa56929
MD5 5c59b194a6e1e840bb42be5aa81793c8
BLAKE2b-256 d5ea12b0f537d627e5684bc13ff951bb7d4a7773117055e381c1bbbecc552d16

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6339e5ef15ee1bb0dacf550390c0f4982df0c005b1a7ed1e6938661c88bf5126
MD5 3bff29d274d8130e5b0858f71779721b
BLAKE2b-256 8aa099354d836fdbccca2beb893907c2bdfdada029b937281f4a1a9b75583488

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: envsub-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1db37a9c212e43e7050607f5a57de8bb7eb129c50e0fb520ad77109ebd5f5c17
MD5 6fe67680167d2fa6913558d9043bbb0f
BLAKE2b-256 3f73a34eb5b09712243b623ecc26a194b4878650d92e86c5d72072c783478bfe

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: envsub-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 122.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ffb331e8443db5620d45f8eb0ea9c6e95c5bff496baa36665a7abc287a00f37
MD5 ab753abcdb54ffe990237e2a4bf71116
BLAKE2b-256 6b79d4c2342c65a2a4f41e3d734be6ff6248ef35d45af61d5ec36761dd39a053

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d0ab78cebed1722dfcc8a66b5b60ec4d15a7c51549a588c4446765f53fa9789
MD5 c981587a76e317d37c72f0a8ee69c3c3
BLAKE2b-256 3e2567048003deac289ccd79e624c1eb95a2f46e86d853f00b2fe8768d5cd664

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 868fbef29142e48ce7757a2d7a656ae9f6619d763af33c1248faea3deb79f6ec
MD5 998aed9450a386da042f581a3e068481
BLAKE2b-256 052a8eb15d216d969bfb7c3c38cd2c79796c2d146fa80654a8575f4bb6bbc0ae

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 178e7893b34b9746c3946aabf9abef71116abdf46d332db4f7ab83c61bd36a32
MD5 aa24ff53f942e5fb80a540c657d2d6a5
BLAKE2b-256 16559e3999a46b36cab19aeba9a9b94d4a6f1ef2777eb3cfbb7134d0275d055e

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d22f7d657953391748a82095215a9feb1f3aaf50b717629555e042c967e05434
MD5 3836c36480a3b6604d0dda3969885f3f
BLAKE2b-256 3bfb481bf67782cf7507fc41ed42960b729e88666c8b945ce75018c5c20878a7

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d91d3ec1349f1fa458dfa584dca1d1489872de0b1c1a64126d9eea4b2224bdf5
MD5 e0f2418657509f85caf7aa16ea06e53a
BLAKE2b-256 ceb0721444f1b60059655429dd21cb273b1dea5e6117e9f1c55dc866b2a00c12

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eafb302ae9061466b674c62cb971f15a56eb75cbee031ba182960f42269e219b
MD5 e771e42a9624f757fa0e43c8822c944d
BLAKE2b-256 a01f30713a1216836e02ff936bb830f36087b6df5a6214d9b52b6803825e69b3

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2067ed1061f92498ca2c2ce15c0119940dc7e69f74e4c1d643870ac53e3df142
MD5 416494a3ddd294e8f42298b6808f9c3c
BLAKE2b-256 ffda2ed610e48565605d392a1df569b436e4ab4c92bb51b1296e55aceb96e1e4

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 309f689dee6ded2a4160616bbc457a15762016a5d184cc7505f62f5caaa14fab
MD5 9e84d2c1444fe18ea4dc33b4797072e0
BLAKE2b-256 ca72cb85e8a5c65d4714efa76d546bbc87fcf7774d8bf27253ad0230e6247fda

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c70c1a8187055ae787fdc1e3eced021d097fad0db6246bea5bf02e87a465fbfd
MD5 54c4a38514252b47ee1785f514fd173d
BLAKE2b-256 68aa3ac33750f5bb26fcf9ca10b966efa8aaf927f9ffe2e7b14e4d9fabf7e72c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e02c41eef40074bd204fb90049c274cdcf0cfde2f2e629104aaec64e6558d80
MD5 86feb003366072884746916e763ecce5
BLAKE2b-256 8fcfb482ac3a1548d9d58b289913b23748d8befda2cf28425230988fc675fcca

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: envsub-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c76cba5eaf72f809d308eb329dfd8efdc667571647ff7c3700f4bf644dffb94
MD5 925446bc6196a2445962881b26c00d38
BLAKE2b-256 cc18c0ec155fac107b803c070813d5803e3fa19d20f065341701ddae33c4bbb4

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: envsub-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 123.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for envsub-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4540667d219c838f77c5e3917e6372dc53989b3de25e1c4257c023d0eb12451e
MD5 e9ddce245d93987c4a095195290d4e6b
BLAKE2b-256 41f62253e3f34d9664df04acb2c629e9b0c8b6e658f1e16915e560aa2e7090e1

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2c453e48ba512dd38b1e1beae1664f901ae7a7fd062a84d491c933cdef91ff95
MD5 41cf2da033ca59d4ea10b02eccf8a3d3
BLAKE2b-256 fa19b017826c79e02458b5a93f5883d663c1ddfafab8d8954a4df78d6154512f

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 378620c1b23091fa70767a9a20dc21a33c442dc03ad7881fa514363d286ab45a
MD5 0d5cee89d018228e7675374b0034fe28
BLAKE2b-256 3054c01fc08dfa0aec39b9bee9b468c05f5f31762328b5f63defe991b86d743e

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 000fd8dc7f6ad2215b380fffeee83b3039966b269edbd0eae937dc14f347a208
MD5 ccf04665cb1c89fc6bdecaeed9e7ce16
BLAKE2b-256 56e007fec630ffffcd4483b24f28d439dbcb150a02a3bf5ae7403773c0a1ef6c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2386a384b08958fa9f2bf1db69d6b29171c42432034b6fd6fe3d87e41742ee0c
MD5 515676d11c166df446c5c3138eed0d02
BLAKE2b-256 02a303e92de012d58d3e3a3a3b3f055f80cf34f32f2dea0a6fe5ca5ca7bfb4c0

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 deb7f8c8c58c8288ead9d1412e4df72453bd6c391ad0c330a2ef791cbcdbcd79
MD5 22a782322ea08c97633a5802a77121d7
BLAKE2b-256 19d01df87885442db6ca849a374f2ba6da30d7fcedf20233024caf8941bfde42

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad454d11da02d335591cb589fa2d9ab6b1dc2ccb75f173bf0014a81c7a835e25
MD5 b7f9f4a8f1c38653d8b57e99de005b6c
BLAKE2b-256 23d19022448ae77baa678e1353ece9b832cd34858d1384d71d1e74ddd471fe77

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e51625491502d9cd0e6988aaec99d2adbbfe798f617b50127ebb3cd9dc0f08be
MD5 179cf89729b87c2903f594b61046e83b
BLAKE2b-256 ca931360da08796914e1f3eec2bcf3e8889d776be83f4e490672bee52dd17b09

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cf26aef02746cfeec80606df4147ab0555dd7f2abc7798534f7b98d13d00d04
MD5 5415106b0a9e3d6490b26e8e7ec47402
BLAKE2b-256 d24a41f5ecc2289af82b29c9b48eeebb497d2a2d84d26e7aedbd848f1cdb31bf

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf61bdfe03a8d5d85d504108d0f5356e3170500869ea36f2218625b1c633858a
MD5 f20e4a1a722305545397eaeb031ecc1a
BLAKE2b-256 ff83e9fbd6f05b9d674b22707ac61f0d7152d07b72fb4c0f97e459a04704af9b

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51f3f50226aefb047631c123377847535e6ce15e1d2c618540fc8c27892b9284
MD5 dadab19b24c6091a6fdd0a939d5db0f2
BLAKE2b-256 8023ac025aa1eb400d5d8fee89cc78eded0a0eb66daa4f6f0285519b9511826d

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ba1e6765d25104b16d1491b827dc52c97986e19e6650e1702b58d02611eac5a
MD5 f5387c7169448b9b2a300621b1cf1e68
BLAKE2b-256 0b2315cf53dfd77da71488ef2e3d9a14a67938f9658bc6194616db49bec45589

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 aa2b27dec2ec92580248833134445ae3abd1ce972b0de92f3ff13e4a5496d094
MD5 e3310bb6b9918bc2ea3be923b524cc40
BLAKE2b-256 e11c06d6638dc758fe4bcb7c4ee46be74eb1582245fbd2cbc1de517f4b57c0a5

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 629cb6c58f6a41957792719c011a2cc112e11b7441240e9ca46a775f92a810ce
MD5 33b429e7a2084a6d738d4ada91f9bdee
BLAKE2b-256 142cc5302f3c7f157bb88f7886a4a47f73bbab3b1e653e71fb61a80dd7529321

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78eca30eb5092f3f708327fb455d6dc3b5252e09f8f309ccd349ce872da5a0f0
MD5 5fe7517bf919125df8bc9209af564e34
BLAKE2b-256 b60c3b17e55df95c2cb0c1d9c68347b7a10ecddf200b0cb7b1cb93d400de2fa9

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bee4cc0ecb5213b9855eae115bf9bc138a54dba91bd16059242e23e1c0b508c1
MD5 01cdc5be6366a1d95a9edf9309d85b08
BLAKE2b-256 f614e32ec2ec5fb8ecc678d9c24832055e0494582e7093beb771209eb8997989

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e877aba5d023b9942823b1d82e8b161ec3c5524c0a211ef121e8a72950eb8610
MD5 3f374496a6645cd7d108115002ac536f
BLAKE2b-256 95f8144d712c62a88eaeedbcf09b50c2a34d8536f3119a4df3da8eeed1e2b921

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4a7aa68d699597a4362dc7d0eb2a8dea81d88bc6198c2240d63dddb35d15ecc
MD5 069575b20948017f40c67fdd65fad283
BLAKE2b-256 4e8b40fedfcb50b778be36d3fc09edcb9ee94453911afa6326dad31f68e0768c

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c1ba61d1cbeb2c100d2cd6e190f61e557b5e01719590425dfc78da2d98cbd4d
MD5 f08669a2045b578eac2cc729db1a38d1
BLAKE2b-256 1afe4c9eca333f0396cc34db36d364926977eb243046b3bf6f54af3fdefccd2e

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b376058a5b6223522a5f9e7844e906418e061c43cb0fb2f15d77342ed5ba738f
MD5 89110082f44aa8d1e29d744a9734d27c
BLAKE2b-256 a3e035e0b6a32cd6a5d6b7a4bb84e6b60abcaffb9ddb23f4124939061d4ab1d5

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8201f21edc80894d23c96694aabae337f192c8979d6a7c680165584e9ffed742
MD5 4bf681c9197dc4b1172a6973f61155d8
BLAKE2b-256 7d835d3d945c0ec5761e1a7ecf78639aa9d74d85d4f8cb8fcd12374998da1be5

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 792737048b41a2339e72203475628bafaae775e5f7c97537fc237609823d20c1
MD5 5fa22d124806f8b618a69cb26a101572
BLAKE2b-256 bad3253e8ce0e2e86a274e446ed7d1d1e41e70fbc9488423fdc259f5389500b6

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5d22b785c79665b2e008998305a09ce802b344e44176fe1c4485eb480e489899
MD5 85f959ac7fee06c201c7fe6bb2ea3160
BLAKE2b-256 10abea585b2be7c592e978c9ed63557d687d99952a8c44f39bf293cd99b46f0a

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cbee3802f2a814557f4b8b294fa416c754ee1596321827227e8b78a0f3c7f882
MD5 ceae327f793300ffca459fd91846a53c
BLAKE2b-256 a2dd605c777b1b7af57c38943e2a8b2c76a3c01b3f91259dba996d28d233b422

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c18c032dd918d0de25e37825363bfdaa69cd1d883395491ab92adabbd28d68e9
MD5 6720ac60bf2861c675bfaa5b4dfeab16
BLAKE2b-256 45837936e47cb421943ecdd8b6d1491cede50451a5f8b15c040684951505d1c8

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 649208cf4d2bfbcb03869d12cab389c574186ef87da0bdf906ecb48375784157
MD5 3db1feedcffa0809f93a5de1f0dba8d9
BLAKE2b-256 7d294ede45a5a5924f9b64cd42efa228e2727e28dfc2561394ffebffd9b037ed

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f05df249d06544dc59b45d0550975341ab1fd0673c26f0bb72f1fe8131e8aaf0
MD5 60f80f236eb75f879824cd2cb836eea3
BLAKE2b-256 62a1e41bf9366765c9edc4eb4f39983dd9178bfec1a78dad5d04b0f5265ff653

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62a6f2c863610b9b5cec01b5077ec5eabc3d1f09f1a9c452e5bbd27c321de79f
MD5 7975e3b05bc264a4805c4e49326efc2c
BLAKE2b-256 c6a3fe164a91ec2bdf2d085a20f7e39334025b58e68c2aac76da338bda81ecb5

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76fc18f7bac62ae40a71940f9c0bd3cf14f9e654116477c04652f67b64d0c6b0
MD5 20bb2a5a62ad5f8f2db61892461c4274
BLAKE2b-256 7ff1b396ca273c16e0c6db7a4c9f1e580cfbb3c4e1550cb46a9b4545b044824f

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bf060ca674d31875f4d88090be47f75365e5408059bceff65d8ac152cd91730
MD5 567d925b1a60150eddecaa4bd6871c24
BLAKE2b-256 3d67f400c91b942246f8f8a929fe97d650923614ec2dd8e0920bcdeada73f77b

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 804eb374bac6fc41606c895c2c1c8e1db95ef1b6c8aa35174797f82883e689cc
MD5 af3ccbdef35cbdaf09475dbd862c0204
BLAKE2b-256 92f8ba099dd437ceeb22689145eef1334bd5c41feb5161cd26bf78f7c727af66

See more details on using hashes here.

File details

Details for the file envsub-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for envsub-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73c618dd5e840d3359fcd982a723884dbb12997ada1bd04eaba3ae62c062ed34
MD5 9b86c0ee3e4a64510c36663bc3978f8a
BLAKE2b-256 450655fc9cb41dcace910ef383596e14e7f2b7ee7ea6333628fb90496842d631

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