Skip to main content

A text preprocessing tool with environment variable substitution.

Project description

envsub

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.1.16.tar.gz (18.2 kB view details)

Uploaded Source

Built Distributions

envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (428.2 kB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (526.4 kB view details)

Uploaded PyPy musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (444.4 kB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (274.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

envsub-0.1.16-pp310-pypy310_pp73-macosx_11_0_arm64.whl (226.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

envsub-0.1.16-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (230.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (428.2 kB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (526.8 kB view details)

Uploaded PyPy musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (444.8 kB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (274.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

envsub-0.1.16-pp39-pypy39_pp73-macosx_11_0_arm64.whl (226.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

envsub-0.1.16-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (230.4 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

envsub-0.1.16-cp313-none-win_amd64.whl (128.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

envsub-0.1.16-cp313-none-win32.whl (120.5 kB view details)

Uploaded CPython 3.13 Windows x86

envsub-0.1.16-cp313-cp313-musllinux_1_1_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

envsub-0.1.16-cp313-cp313-musllinux_1_1_armv7l.whl (524.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-cp313-cp313-musllinux_1_1_aarch64.whl (443.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

envsub-0.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

envsub-0.1.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (297.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

envsub-0.1.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

envsub-0.1.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

envsub-0.1.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (257.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

envsub-0.1.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (272.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

envsub-0.1.16-cp313-cp313-macosx_10_12_x86_64.whl (228.8 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

envsub-0.1.16-cp312-none-win_amd64.whl (129.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

envsub-0.1.16-cp312-none-win32.whl (120.6 kB view details)

Uploaded CPython 3.12 Windows x86

envsub-0.1.16-cp312-cp312-musllinux_1_1_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

envsub-0.1.16-cp312-cp312-musllinux_1_1_armv7l.whl (525.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-cp312-cp312-musllinux_1_1_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

envsub-0.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

envsub-0.1.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (297.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

envsub-0.1.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

envsub-0.1.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

envsub-0.1.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

envsub-0.1.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (272.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

envsub-0.1.16-cp312-cp312-macosx_10_12_x86_64.whl (228.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

envsub-0.1.16-cp311-none-win_amd64.whl (129.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

envsub-0.1.16-cp311-none-win32.whl (121.1 kB view details)

Uploaded CPython 3.11 Windows x86

envsub-0.1.16-cp311-cp311-musllinux_1_1_x86_64.whl (427.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

envsub-0.1.16-cp311-cp311-musllinux_1_1_armv7l.whl (526.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-cp311-cp311-musllinux_1_1_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

envsub-0.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

envsub-0.1.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

envsub-0.1.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

envsub-0.1.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

envsub-0.1.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

envsub-0.1.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (273.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

envsub-0.1.16-cp311-cp311-macosx_10_12_x86_64.whl (229.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

envsub-0.1.16-cp310-cp310-musllinux_1_1_x86_64.whl (427.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

envsub-0.1.16-cp310-cp310-musllinux_1_1_armv7l.whl (526.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-cp310-cp310-musllinux_1_1_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

envsub-0.1.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

envsub-0.1.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

envsub-0.1.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

envsub-0.1.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

envsub-0.1.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

envsub-0.1.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (273.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

envsub-0.1.16-cp310-cp310-macosx_10_12_x86_64.whl (229.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

envsub-0.1.16-cp39-cp39-musllinux_1_1_x86_64.whl (428.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

envsub-0.1.16-cp39-cp39-musllinux_1_1_armv7l.whl (526.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARMv7l

envsub-0.1.16-cp39-cp39-musllinux_1_1_aarch64.whl (444.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

envsub-0.1.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

envsub-0.1.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

envsub-0.1.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (298.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

envsub-0.1.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

envsub-0.1.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

envsub-0.1.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (274.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

envsub-0.1.16-cp39-cp39-macosx_11_0_arm64.whl (226.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

envsub-0.1.16-cp39-cp39-macosx_10_12_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: envsub-0.1.16.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16.tar.gz
Algorithm Hash digest
SHA256 6d9884de6eaa44c3778d58fb8e3243955ec3d194a2e1d0901a6da4213ce7ee7c
MD5 65892c28e2c2a22e72a62edaeb8d695b
BLAKE2b-256 8d7795791218c9848e0e0df56d5c2722cd700f31e186cc363ffe4220d7e1ecf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6083c4b98c515f632e087035a8c447cecddb921cbe8c38377edf1089bcda7c23
MD5 25f893ad3bc1468d9800cd6ed9814fc4
BLAKE2b-256 598955ef029b4bde149a891ad411fbb79d7a4d5a31621b337da13836ee349118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a611c4a506acbb6da93a87947fcb9d5724b84444c44a9dce5440dec279db90bb
MD5 8d077d57933e75c047689a568ca0be9e
BLAKE2b-256 fb3bd758de6124cba1a1695a015c373813aa3949d50035df2c0993bcc74837cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4259befc52781e1ca83a5f415cd9fef6933b8307002261b85920dbb07d327ba9
MD5 fab0606b119b7661af2c615ab0817898
BLAKE2b-256 04e54b41ae3f7b8d180d5df8f3b40df078f74044cd8075c16b626d987ef50ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d65f5c733db5a1376b3c8332be2923b59d86bb836dd3339596645289da35d5d7
MD5 d8be47a60f0cc6519b960a9280ce490b
BLAKE2b-256 0df1c815a85adcf5a357113365c943b897f8c5089840635f33e69b0fe0ea8175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cd8887d5c22cb2823871ba99663943c804d1b20d6407804d553182abb5d54e1
MD5 28d410c97d36297acaea8f33502f7c4b
BLAKE2b-256 df0d6f555ab140b08e09b10b75610b4ad11d3e53fefd28011a00cb0c4b7f0cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46dc5f8cbae1f0f1d88936e0ed3795242640f2fb584beee7413f8cbb05cef177
MD5 a95057869ee587bb4030d84b1997b821
BLAKE2b-256 61b6f6200926716bae0b303f46c54c97c202fef8880da1877419dd9cb0742260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b255566c1f13fe2fe66a3d38ad29b11f33f6ac493bb67dcdd5422c4bd34432
MD5 11e7bc655cee78b031b8b8cda6883fa6
BLAKE2b-256 c3da458051335a56e279df1a68e1a4840b3dcc41ca0652211b908fb37621c526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef1d30ac9a1f4da0fec065885a132ba6d188c096d534c158b9ac810b57aac25a
MD5 397e450f9c9c25429b7617e525c24dda
BLAKE2b-256 0f94adb06a4fa71d077f3399966b53823014c348fa74233d90949238d28f4f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95bce407f2d8254a46bb06a35a017ee7cc26b0e1dc7e9af71db721bcd9c57151
MD5 af4e95e5fa2b7d5df782927bc4e207b9
BLAKE2b-256 64363a78b2e7ad737e431c42356a64c6f1c74ec2b1ead5a3442cb328ee0d2d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 32f402f250faef7bcb5330e447e42f1b2c66cd6a03da5854f30f37b8e6671d7e
MD5 2a3445c31dbd852446f7eb1049867f2a
BLAKE2b-256 bda22cd405fc72d18d2985d184eaa9bad30f8ba031739a6f4657d29ec0e39a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c22c20b294cbd01a4a622f6cb0662db463eb4c4ac62758a4964e9fbde26a9f9b
MD5 21611034952d467803ae5c4905249d96
BLAKE2b-256 795eccb65ccdeafe39a903b7e64076a68eab7b1edc292c9340ffcfb81efd8a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ae2c92fd400b4a042d3442014a739eece0e2ed5d8f07784f288456cb770ddd
MD5 3ffa2e92af835529c3006cee8a39a3e7
BLAKE2b-256 939dbc50705e785d70dfaa52e0a8812a1cd5b141fba5708e0181d4c9733f2372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58304e8414b7d513b9a598271463844e8d4bd8c7ec91f80ef2a2e098fbc4892f
MD5 72474e87b1b61827265e237a9e86cabe
BLAKE2b-256 f10d3a56c1140308a84e5875226f380eade9228ce761ae2ac59397da6b6a4e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e93d581120a1ab82f00a0b5ae4417c1468904c3597d7f7e90d8256cf95cc984d
MD5 4c35f75464cd61ee08550882b03366da
BLAKE2b-256 d00fbff484cc0427fa392ee9b1cb57887566e9f08fe80b69bf95b0e2ec38f78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a6c33e15e880d13607819d955ae3633eb594a99ae614c22bfb8ff5082df753e
MD5 13d5437517d7962bcb17d864d2f4edcd
BLAKE2b-256 3d1ad5cd7d50b341aba2c44e3f8ad87a2fc4855a48e916ff9f47fa3a980bde83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 477c1f52fcec08a88d44d883c4609a82e53e30d209da4037c28df7b979fc3e07
MD5 e1fc5615a92d9ac553c63e6ea4b897ca
BLAKE2b-256 cddb97a074b3687369c3af92e621f01a4dceec1561fdf6f11216a6f23f052293

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp313-none-win_amd64.whl.

File metadata

  • Download URL: envsub-0.1.16-cp313-none-win_amd64.whl
  • Upload date:
  • Size: 128.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 83e8ed39d7a63bce4e323b0946e49175bc1057545b37bbf6827646e9f4e9021a
MD5 67af63caa49d7ac95e711dbece5bfef0
BLAKE2b-256 6763c4c2bd6d8394758e107beaf03574148f55be3fa7721576f26b6ae5fdd190

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp313-none-win32.whl.

File metadata

  • Download URL: envsub-0.1.16-cp313-none-win32.whl
  • Upload date:
  • Size: 120.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp313-none-win32.whl
Algorithm Hash digest
SHA256 8eaff43747695fda2ac9bfce9a3374a877008c8ab88d277f99b2e0e78b625aab
MD5 b9a1daecb5b5b9259d3a3d9f6c29d194
BLAKE2b-256 b44ae1df38dbf9189ca4429918418e325d1a0d653a13a973405b5ebacd06438f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b38a264a68716153442fb3003ce62a3553e1697edad92bf0da22dba6b8bf009
MD5 1ad11c51963b4ec4962f660c3aa4d88e
BLAKE2b-256 0173faf43adff01ee662f64dc2f3e0c73bda8d94582dfad3ffe5951c578db74a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 82f5a7c812e456a857584a6964a3e54bbd3a1556fae7b201a947c0ff1acf5670
MD5 0b75d8b3b902fa3db1757d021da10153
BLAKE2b-256 8db8ad6e53246d728395f4534a6f82751369d1830072f5e94b3e9b857c33bcd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ec137f8c472b3f722afc67258dae677705524469d6188f3ae4ab1b8ba1bba87
MD5 bfe4d2e181bfde9f19c99c468e093677
BLAKE2b-256 6c43348ab367b64e15e6483044e84af67227946244a231e1a716f6891cd8029b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd96eab8c6bf59d452f042bc6293ce8bf5b1f67e901a71ab3a6add295715f696
MD5 9cd0173129ea1d752d7d4a41c9b2f54a
BLAKE2b-256 69ff2988ab9d8a8ac2e301d9c867c65b423a3c8bb65d2e8becc8464ccebca26a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b7e5b1a78847433a4f1d13e81b2a4a679b00a2f0c1e2c828f92d5b227db3a90
MD5 c6c26ed0c0fbf43d0e64459ca6b6b7a2
BLAKE2b-256 9862ac29265ff87179ecbfae8dd7d036959d704a77013fe29d3dfc8c82e37997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9751235b7a21b656cbfede2d264804cbba190133ddaf7086e20a943f70bb009b
MD5 8d72551e0b5a42bf6febe234288a04a2
BLAKE2b-256 7bf645bacd93c8ed699b3bc81f4d998eb8b29e04a0e15b1341a3f1eb6716cc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 866d9c2991fe873bbfa45e7aaccd6c0e868cad23c6c62ebccfa3b0b51a43a543
MD5 ddb6eb2d359a73b6f342e7313b955c2b
BLAKE2b-256 a273691543ec043b42bb2fb6ff02b18f8a31ee08553de84ecd30a1d67fdbebe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80abe91071e60c7d36262bfe9a8051bb7adf7e5c6c72766576a7d94ff5ce37be
MD5 5a33901a81b6e6af9f00aa1ee0b6457b
BLAKE2b-256 18d7cf28a36d88f8511a1636c051f48216ae6a8f3b50b674d53cfdaf667b2834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 016009a4e08746556d6bda4a3fce1751d67b2c20dcfa41efa4d1aecc755cadfc
MD5 748d403f4a758a4c0809c4a58900cf18
BLAKE2b-256 f74a71f45f5a42702207b4b11465e7add7ecd6c87ec4799c9e3886d36521cbb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e12d391aac8019311b45dbbfe41ff1b8cb4d32d848005603cce3dc4bf466542
MD5 0223b1bb2b4aea7470d6942db97e73fa
BLAKE2b-256 0b2e2818f713c0aa6270d26afea7f028060327662bdc84c7a1c91ac99ce42c91

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp312-none-win_amd64.whl.

File metadata

  • Download URL: envsub-0.1.16-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 129.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 20bded21ed13d3dae75987b15f9bd41e97fa7ba64a7cd8099bba766fdfaeb721
MD5 e6c3c206d40fc28bda6f5783465e3e85
BLAKE2b-256 32f3a020c9091b53d1fd594953241d39fc8b2fb3671db6c55c672019f6320621

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp312-none-win32.whl.

File metadata

  • Download URL: envsub-0.1.16-cp312-none-win32.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp312-none-win32.whl
Algorithm Hash digest
SHA256 132976142d6f701353b824e081eab33d0e819dde9b9f0f84079c865eb4b7eb73
MD5 cbd697fa4bc4c04d0fa98f8d4fe48ce2
BLAKE2b-256 1a0aaf5aed3fc399283674a82761a2bc5b7d246163221124c13bf9c717f191ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6bc46e8e3e42afea68acefadfffcce2a989102e1336bb3094abbad2f54db1c26
MD5 9fd7d4e955a11084dadf076d554606cd
BLAKE2b-256 663cd4e07c8a04dfb02b49dd600779a6719e93c40cd3b71a3f9e24ccc62f1815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 92f335562e2fac15535e373cc3efe47b18960694b7de3470fff1e0d7919a76ff
MD5 23580b9aeead8bc7204317d06758d087
BLAKE2b-256 53f2c0f8945b960ff64bdd3515a74b43bc6a0eb5ac93dfc35b023338e815eed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0353de985f6a01a97011a44a06609305dec79b0bcbf86d9357cbb8b087660e67
MD5 a330bdaea42aaf9745fbf8af701002c9
BLAKE2b-256 578744ab55e7a2aa765bf4505273bbeb9a98a8d03b8ba7305e117036850638f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a5e57c66f460783c36d94274e5b7ec119b7b34d12575e662f742085833cb97
MD5 41922d5ddf55d7f078d0e1a36f68bf16
BLAKE2b-256 d01616b657913fbca4b4aba20f6f70ff9263f9d2f4c668ea4105d8419201214a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3e59e7d7ba54a80988c0352d40bb61b1c5931e27720c0868b378903eb55ee6a
MD5 fca3bf7738c673c139ff10ec688f50f3
BLAKE2b-256 8e505e855e286878df900caef36e4cd47457b239b506444c64ae483b4866b3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c01217e4c69ec0fa7c1d08659a2080109ad684f22aaa1dc6dca5d3f0ac794319
MD5 998324587ff0779ca4b76b03db79c03a
BLAKE2b-256 3acb7ff8050015c449eab887b99b8ac2d10e6ea2145c44276d8d6100503b60da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dd0cda7f7443e5260d7b0f1363ef4aafe3b61cb25fcfc882b68ca1b541ee9d1
MD5 79872e6e100af55481f58d8bd13896fd
BLAKE2b-256 8164c39525168c7bb28b7c5a5515636a95c8683736c17d97073d0269871fd934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf89849087bced9c8613801dd44bac363b7b5b2e61cbd0aa75a14d33f373ea76
MD5 05f4636124ca3a7cf90d9c87a60c8209
BLAKE2b-256 0522f70e1f75715a50c80d03e2d8d775d5acd2a9cc7ff6b3c74a8067d76c1b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c592c72c144da38e0d9b05a7f9a73ee7ae3b84be4c188dbf0fda9cd17dc8aa7a
MD5 a50348a5063c6cfb0e1fbcf6aabd3d72
BLAKE2b-256 f9256d7acd8062442f3eb51462f18b03fdc62926be0720b004f2ff553eec3bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4697ad26da99070d3e6cb2c43cb95c813186e04fdcf6ed97e67837b2c273a0b1
MD5 e30f718abb81e41ceac19c96a346256d
BLAKE2b-256 76e0942b6846765ae80c13f3684f2686282787f5c5bf898152b9acffbce22fe9

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp311-none-win_amd64.whl.

File metadata

  • Download URL: envsub-0.1.16-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 129.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 440036852e53f06c47d65a3b46e6e389694783ee9737d1f5e31975b1dbfca163
MD5 74ff952ee9a87d15ffd170fd8744e5dd
BLAKE2b-256 0d604e59afb76824feb0e897de1cb66a0b60d712f923e944770c3cef9faf736c

See more details on using hashes here.

File details

Details for the file envsub-0.1.16-cp311-none-win32.whl.

File metadata

  • Download URL: envsub-0.1.16-cp311-none-win32.whl
  • Upload date:
  • Size: 121.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for envsub-0.1.16-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e651e7081c9f76c28139de62b2a3f436a99a23b7b3f3152ba77a2941606b0aa1
MD5 72274533ef85d718c49850e8d1fecf82
BLAKE2b-256 b1cfc56c3a8595ef731159e7d197f0aa3bb8ef8fe5c9f803c58c4238e971a70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 99fe1522c3be585ed00cb0b62ce52179e41376261dbfceb6b735d82551552a40
MD5 e5dbebd4b2441c0305d690cb4b3d49fe
BLAKE2b-256 de44212ca556e3c479e682c5536b24fe95f17adcc92d5fb0822f8b884056e2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 dcb8bdafc62ac9cadbc21709284cd1197407a3a61b41a3f2206183b75443e9d9
MD5 def5af9dc8513533905eb4b9f6b9f648
BLAKE2b-256 6b8879ece4957179f89a1ab50b38d7726958499fc872a6d234193b6b37d2eab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 240bc266e57f7f725cfc26685dcdc1cac17174cc88b7f039f088f08683d137b4
MD5 f1d6783e1cf06414ac66c6cac2c7f2f2
BLAKE2b-256 7e8d5b4e5b8bb281686013c2bc715fdab24c7d54cc2193a29386c87442b4eae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5c877afb5dbb0ec8e68907c9b2727d4cf132472ea5b79b414dffdaaf349c127
MD5 f11cc70518f0e40e8872e2941d8d0fc7
BLAKE2b-256 ed3ce80dc7dc1488c18b26f75b6e2a55fcbb9968832b3dcbf9cd4ed44cce6b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8da4bd453727ff03526a7533a77749b800799474e5657c70d1f68d299884e9f
MD5 b053b254f15c217f2e27a2156114fe76
BLAKE2b-256 8f0bcd3f6ab3fc04b8ad906c3c4e71609123117a8a208a3f171ddd676204af78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1001e3330aa5386bc2049ac345dd7dbc8ac23e668a4adebc47a7d7827bb4f9c6
MD5 dd2f92279917093375a083186c78e35f
BLAKE2b-256 8854490b46a3e552023f6b3dcb6f8337e8140a014a540cb4e48435e22efdaa54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26a53624169c5331ad2474e7219a2730d99445109f75ab8078731339dc74b2db
MD5 7a4155a03838a108d355f886bcb3be54
BLAKE2b-256 8aeae6df27a8007a42aa46c301b900b6eacc59305ca4f4e96143a4c552068083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19ed343912898b7bb70cbaedfdd2bf7ed75ca7a44c2656320574d9d8a2208790
MD5 e00b577993a07f3eb13317b67cc7e6f9
BLAKE2b-256 75584d976b1eb01b28d2dbff5b0b8e932004f47d73379e7cbd054e6142958a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7d753aacc2399a4908d5e2f106f8ab15baf12be28a3e84d51aa0e9267b5f2cf
MD5 94b030a8e814c23087c4a400c9c1d0c4
BLAKE2b-256 6cb8efb432f8fe90e5584f4088752d9906cf8c7bfbd40c93e98519a89b1659d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4511422e6a501c82f2d1ac7db97c3acb0d77feaf9dc6ab0427963ddb19224a27
MD5 fc755c178b999642041c112c5cf3c03d
BLAKE2b-256 9acb052e6e113d0cbcd16ded7e74259663eb30dbf10de149cb23405d0483f9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 20949aa757588582533ed34d56b3cd1f9514b48afb983433470765a3be8e0ee0
MD5 ea9270ebaf12dd959627bd9c1e88b7f1
BLAKE2b-256 5f24add1a6737688e88f1f6a2db5df0936329e2672296fb235dcfa13c2c60ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 79129be552d757ef6c676a2c7a8aa34116b1146c6f6e4a9af97705263d44682e
MD5 e580d3ca245e22a53bfcd9fc0d5e7050
BLAKE2b-256 01ad1c65b2b0d5c57f58e1bc6584f782eb2eb13e7ec9871e5e2623e6e3b3a179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 505fbd627c33418be6826329ff95ddbccaee62eb0c8f5e92ce31821de7e97a13
MD5 f6cbca26a29af955cf9a54611c9d9679
BLAKE2b-256 b1e9c9dd7d657afa5c828ff2335a3919316fc0e66d2f7ab3598b7908d8ac658c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac638c8a72bc7393b2cb15a174aaa012b35c2522e31b269192354e6a0a584d09
MD5 971eba6238fcf59c478b085c449db5f4
BLAKE2b-256 c9d8fa63b719b1e976f8d314a5c9b31151d17119df62073604ff97476f5da4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1ba66d71346b583ed070ef145a72ee57b95df319db03ef02e90b51a3bf6de8e
MD5 d341a699352d978b767ab73e121c829e
BLAKE2b-256 82ed2d80778ee02d823d2e6dba8a8adb4883b7df50e78bafdce34d3f47fb4aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fb9a54a62c7657b702d76c68f6a5e46a137497cae4bf66c544449a44ef0918f
MD5 2a0e14c103a285b8dba4781119568e56
BLAKE2b-256 6a4ed5ba0ae5105351fc6e1b9f8ac5ef8a98b8e071d34eac680ad6f9d1dba8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 feafd4910d18b67c48ff91c8b7ad1ba77750cc49212c7c9fb0246636f950ee73
MD5 2b77ff1bf08d4971d42d1439ca889d29
BLAKE2b-256 94c0216b88a7d23f29eca56b2ec1cee47f72b0b4ae42a022e2156ce60b934158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9839f8e6ada59627c11f362a64ed2f8a5ab98828f20e266703ea5e3cffdfb625
MD5 fed0a5f1b1df1fd869de70ff79b6beff
BLAKE2b-256 8647ccb484785810dcd617f76961a2d80d9aeeb1c0cc80e093ef192b4bb8ce31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5b1c274b316991d1c34f65d9df30d9c72059e3692e0198b3bea39bfc09fc385
MD5 817f6e62fc05ba4cc3f5098eee1f7140
BLAKE2b-256 a4efea70f3244466357fbfcd37126e5a709ededa1b6863d3e806ed3d8bded1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bf6c603a8a63b1ba17fbf8fa877e2f5be819352dacb315184055fbd823c9a02
MD5 0b94dd8cfc1f95420a70aabe33a2c0c7
BLAKE2b-256 8a122dcbf0933bd156b913b77eaa7fc05fc3be3e0f97a14048b4cede0073978f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9ce55f71deabfa326c858db7df89e68d314360fc4f1d3fd70d18912acde28ce
MD5 72363b0cc32e276f44463542dbfdfb7f
BLAKE2b-256 9f9e89ef89e5b4de773826eca59b8b6bd605588145e926052d463cd65e24e9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 486f6d58d76dd34adf9dbbb569a6f311032983179d8926abfa05fe652d629188
MD5 4b57a903e7cfdda5a6b880d6cfcc955a
BLAKE2b-256 7df760fa1f9df126b5454e9b4286482a89a24c5f468d93984dc3e36cc4b94661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1436616225425849dc3b9581ef66cff31baced3ddf15e84be538ea2219f75b60
MD5 9b888b6a4266f0a6fa2c07564d91ca99
BLAKE2b-256 2109e54d7522578c27079ad8220418513e61fd3abf1dad602f933ddeb75589d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3922a856b088619c14cf6e0987dd74e7edb5b93f15d9462e43f8bfc3a8db6ff
MD5 50b0add1a8909e698ddff85fe12da93e
BLAKE2b-256 fc4de05057a79f5a8e75f3ca8b31a5a7dbecfe811ad5aa26be2c0a0e0be2176e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee8d54c1b6700757fcbac3746604ff1c0d9a3a2d5a085f9186e8cd498000445
MD5 76f776777d7d7d091d84c2e724ede013
BLAKE2b-256 bbac6e023bf3ff6d6843675b19714db25b5e29c59730a46ace07ce3b648a0a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 021aeb5381b6698ed3efe7f1a9368f7eba7b9c5c0e1453254b8f735ce65cfb95
MD5 da900af5cfd4a3b8d4f4cb8ff41370ea
BLAKE2b-256 86dd273662a0a393a5f4d2fdeca83dd57aa219fd2ca0303edb3d6bd7bf0741a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f39bf7d4e45651a0a593173487bb4e446aea5a21c8708fa85f4a0cdb82a3f435
MD5 29afc367ad719917e93a4d6783dab013
BLAKE2b-256 79e092d0ff0806b53a7e930f4a18d9cd19d51c048192a3eb9781d63f11b1e5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bca7e29196d85da32cf4ad9ecf212b6ea677c4cdbb23785ee77ea5dc6f047670
MD5 e6b3fff5653c8f6578c904244c14e6b1
BLAKE2b-256 e1d1395cd149aa4b06f7b8ee3eaaec2f309d4725fbb5572078e3d033b8ebcaf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a4395f7872ac042074c1ba176dac6270e2dae73d3ac359fe1dd1a061e8e2572
MD5 4e48bcec1aa7bab2336375afec2d8dc5
BLAKE2b-256 f9bbd40178ca665c804816a1ce680bc26a2736c4ef9357d77215b782544afb18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21f36091ba23ee45bb3f590b0a21ac2d480cd12cbef9204f31a9b766407d5824
MD5 92bc7aa41c217cafd43491e0be8a3cd1
BLAKE2b-256 b37b5909ff6efcb6bcadca503734c913a84a26b34a49b0e24732bae7864b35c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for envsub-0.1.16-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d941d285ac67492bca5c1cdfe0883fbfafbba10888ce35601c6d727de4952f9f
MD5 ef1e21ac81297369025132086d0952b7
BLAKE2b-256 50a2835b494b13e703974878544b31943beba502ac12b7476b7757da619fe9b1

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