Skip to main content

Simple, modern and high performance file watching and code reload in python.

Project description

watchfiles

CI Coverage pypi CondaForge license

Simple, modern and high performance file watching and code reload in python.


Documentation: watchfiles.helpmanual.io

Source Code: github.com/samuelcolvin/watchfiles


Underlying file system notifications are handled by the Notify rust library.

This package was previously named "watchgod", see the migration guide for more information.

Installation

watchfiles requires Python 3.8 - 3.13.

pip install watchfiles

Binaries are available for:

  • Linux: x86_64, aarch64, i686, armv7l, musl-x86_64 & musl-aarch64
  • MacOS: x86_64 & arm64
  • Windows: amd64 & win32

Otherwise, you can install from source which requires Rust stable to be installed.

Usage

Here are some examples of what watchfiles can do:

watch Usage

from watchfiles import watch

for changes in watch('./path/to/dir'):
    print(changes)

See watch docs for more details.

awatch Usage

import asyncio
from watchfiles import awatch

async def main():
    async for changes in awatch('/path/to/dir'):
        print(changes)

asyncio.run(main())

See awatch docs for more details.

run_process Usage

from watchfiles import run_process

def foobar(a, b, c):
    ...

if __name__ == '__main__':
    run_process('./path/to/dir', target=foobar, args=(1, 2, 3))

See run_process docs for more details.

arun_process Usage

import asyncio
from watchfiles import arun_process

def foobar(a, b, c):
    ...

async def main():
    await arun_process('./path/to/dir', target=foobar, args=(1, 2, 3))

if __name__ == '__main__':
    asyncio.run(main())

See arun_process docs for more details.

CLI

watchfiles also comes with a CLI for running and reloading code. To run some command when files in src change:

watchfiles "some command" src

For more information, see the CLI docs.

Or run

watchfiles --help

Download files

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

Source Distribution

watchfiles-0.24.0.tar.gz (37.9 kB view details)

Uploaded Source

Built Distributions

watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (369.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (377.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (428.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (371.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (377.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

watchfiles-0.24.0-cp313-none-win_amd64.whl (276.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

watchfiles-0.24.0-cp313-none-win32.whl (263.9 kB view details)

Uploaded CPython 3.13 Windows x86

watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl (593.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (468.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (451.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl (367.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl (373.8 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

watchfiles-0.24.0-cp312-none-win_arm64.whl (266.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

watchfiles-0.24.0-cp312-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

watchfiles-0.24.0-cp312-none-win32.whl (264.1 kB view details)

Uploaded CPython 3.12 Windows x86

watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl (594.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl (612.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (469.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (452.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl (367.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

watchfiles-0.24.0-cp311-none-win_arm64.whl (266.3 kB view details)

Uploaded CPython 3.11 Windows ARM64

watchfiles-0.24.0-cp311-none-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

watchfiles-0.24.0-cp311-none-win32.whl (264.2 kB view details)

Uploaded CPython 3.11 Windows x86

watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (469.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (450.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl (367.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl (375.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

watchfiles-0.24.0-cp310-none-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

watchfiles-0.24.0-cp310-none-win32.whl (264.1 kB view details)

Uploaded CPython 3.10 Windows x86

watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (469.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (451.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl (367.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl (375.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

watchfiles-0.24.0-cp39-none-win_amd64.whl (277.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

watchfiles-0.24.0-cp39-none-win32.whl (264.3 kB view details)

Uploaded CPython 3.9 Windows x86

watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl (596.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl (613.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (469.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (451.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl (369.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl (375.9 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

watchfiles-0.24.0-cp38-none-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

watchfiles-0.24.0-cp38-none-win32.whl (264.4 kB view details)

Uploaded CPython 3.8 Windows x86

watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl (596.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl (613.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (451.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl (369.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl (376.0 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file watchfiles-0.24.0.tar.gz.

File metadata

  • Download URL: watchfiles-0.24.0.tar.gz
  • Upload date:
  • Size: 37.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0.tar.gz
Algorithm Hash digest
SHA256 afb72325b74fa7a428c009c1b8be4b4d7c2afedafb2982827ef2156646df2fe1
MD5 0c5d177e411a5f50ab4160a676dc1528
BLAKE2b-256 c8272ba23c8cc85796e2d41976439b08d52f691655fdb9401362099502d1f0cf

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01550ccf1d0aed6ea375ef259706af76ad009ef5b0203a3a4cce0f6024f9b68a
MD5 f301962b54b7a91858c43ad14bd628db
BLAKE2b-256 8bc408b3c2cda45db5169148a981c2100c744a4a222fa7ae7644937c0c002069

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a7fa2bc0efef3e209a8199fd111b8969fe9db9c711acc46636686331eda7dd4
MD5 20e7b758644e56a60c9216c8f980c9cd
BLAKE2b-256 43cbc0279b35053555d10ef03559c5aebfcb0c703d9c70a7b4e532df74b9b0e8

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2a9891723a735d3e2540651184be6fd5b96880c08ffe1a98bae5017e65b544b
MD5 b03e39cdf9aa181da31afa42fbb2bef9
BLAKE2b-256 eefdd9e020d687ccf90fe95efc513fbb39a8049cf5a3ff51f53c59fcf4c47a5d

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 632676574429bee8c26be8af52af20e0c718cc7f5f67f3fb658c71928ccd4f7f
MD5 30394d79d5c6f8ed0709edfe35ce14ae
BLAKE2b-256 df941ad200e937ec91b2a9d6b39ae1cf9c2b1a9cc88d5ceb43aa5c6962eb3c11

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49fb58bcaa343fedc6a9e91f90195b20ccb3135447dc9e4e2570c3a39565853e
MD5 fe2b9f728018e0d7069bd54b1ed6efec
BLAKE2b-256 fbfc885015d4a17ada85508e406c10d638808e7bfbb5622a2e342c868ede18c0

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 951088d12d339690a92cef2ec5d3cfd957692834c72ffd570ea76a6790222777
MD5 18e64c6d92f04755bd5aeab9965d2f3d
BLAKE2b-256 811b8d036da7a9e4d490385b6979804229fb7ac9b591e4d84f159edf2b3f7cc2

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d5f0c7771dcc7a26c7a27145059b6bb0ce06e4e751ed76cdf123d7039b60b5
MD5 7b91665f96a81249049830d7ded832b7
BLAKE2b-256 f1059ef4158f15c417a420d907a6eb887c81953565d0268262195766a844a6d9

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96619302d4374de5e2345b2b622dc481257a99431277662c30f606f3e22f42be
MD5 afffec26951cf13b95e4ba64224dea4e
BLAKE2b-256 02819c9a1e6a83d3c320d2f89eca2b71854ae727eca8ab298ad5da00e36c69e2

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 a974231b4fdd1bb7f62064a0565a6b107d27d21d9acb50c484d2cdba515b9366
MD5 f7d1d5a11787b7e14e3382eaa36a5b70
BLAKE2b-256 a68b8a7755c5e7221bb35fe4af2dc44db9174f90ebf0344fd5e9b1e8b42d381e

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp313-none-win32.whl
  • Upload date:
  • Size: 263.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 f4c96283fca3ee09fb044f02156d9570d156698bc3734252175a38f0e8975f07
MD5 0a94a8661e25fec2a939e2e163f06d96
BLAKE2b-256 c1e5c326fe52ee0054107267608d8cea275e80be4455b6079491dfd9da29f46f

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edf71b01dec9f766fb285b73930f95f730bb0943500ba0566ae234b5c1618c18
MD5 60995c813cf33b5f911f79e539f4a122
BLAKE2b-256 6dd5b96eeb9fe3fda137200dd2f31553670cbc731b1e13164fd69b49870b76ec

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 30bbd525c3262fd9f4b1865cb8d88e21161366561cd7c9e1194819e0a33ea86b
MD5 0429abea8700d4c612943ff5a83eadc2
BLAKE2b-256 d6d758afe5e85217e845edf26d8780c2d2d2ae77675eeb8d1b8b8121d799ce52

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 999928c6434372fde16c8f27143d3e97201160b48a614071261701615a2a156f
MD5 3e8d79734b722e7e1108f6fc70221b0f
BLAKE2b-256 426c279288cc5653a289290d183b60a6d80e05f439d5bfdfaf2d113738d0f932

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88bcd4d0fe1d8ff43675360a72def210ebad3f3f72cabfeac08d825d2639b4ab
MD5 d5cc8c802e30a1193d0bd57244aefd61
BLAKE2b-256 1dd33dfe131ee59d5e90b932cf56aba5c996309d94dafe3d02d204364c23461c

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43e3e37c15a8b6fe00c1bce2473cfa8eb3484bbeecf3aefbf259227e487a03df
MD5 2c32f747a552d3ff7b26da57ebdad1b6
BLAKE2b-256 b6bed7da83307863a422abbfeb12903a76e43200c90ebe5d6afd6a59d158edea

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1cf1f6dd7825053f3d98f6d33f6464ebdd9ee95acd74ba2c34e183086900a827
MD5 f543d5f3d4277ab42bc77f78c9eaf2fa
BLAKE2b-256 304c616c111b9d40eea2547489abaf4ffc84511e86888a166d3a4522c2ba44b5

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d64ba08db72e5dfd5c33be1e1e687d5e4fcce09219e8aee893a4862034081d4e
MD5 407cdb6480cb0a0331beac3a61818fb1
BLAKE2b-256 48a3763ba18c98211d7bb6c0f417b2d7946d346cdc359d585cc28a17b48e964b

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd82010f8ab451dabe36054a1622870166a67cf3fce894f68895db6f74bbdc94
MD5 b041893a5ee05692e79af648b8d4ac93
BLAKE2b-256 2e11ff9a4445a7cfc1c98caf99042df38964af12eed47d496dd5d0d90417349f

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 327763da824817b38ad125dcd97595f942d720d32d879f6c4ddf843e3da3fe90
MD5 caac271471258d6969f616d4bac79125
BLAKE2b-256 79c0c3a9929c372816c7fc87d8149bd722608ea58dc0986d3ef7564c79ad7112

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d2e3ab79a1771c530233cadfd277fcc762656d50836c77abb2e5e72b88e3a48
MD5 3f34bec5dc3913071798e528f0765bc5
BLAKE2b-256 30dc6e9f5447ae14f645532468a84323a942996d74d5e817837a5c8ce9d16c69

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 b52a65e4ea43c6d149c5f8ddb0bef8d4a1e779b77591a458a893eb416624a418
MD5 7a3dc20c1add2a401d8f522cfcac1d00
BLAKE2b-256 4b81daade76ce33d21dbec7a15afd7479de8db786e5f7b7d249263b4ea174e08

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 551ec3ee2a3ac9cbcf48a4ec76e42c2ef938a7e905a35b42a1267fa4b1645896
MD5 c244e8f39674e44f031f19d341278693
BLAKE2b-256 b40b32cde5bc2ebd9f351be326837c61bdeb05ad652b793f25c91cac0b48a60b

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp312-none-win32.whl
  • Upload date:
  • Size: 264.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d9018153cf57fc302a2a34cb7564870b859ed9a732d16b41a9b5cb2ebed2d444
MD5 94a4131c195f36e5049cb4ed250f876a
BLAKE2b-256 44811f701323a9f70805bc81c74c990137123344a80ea23ab9504a99492907f8

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce72dba6a20e39a0c628258b5c308779b8697f7676c254a845715e2a1039b968
MD5 b0a38882fe21d41f77da39f09d74c3c4
BLAKE2b-256 c7af175ba9b268dec56f821639c9893b506c69fd999fe6a2e2c51de420eb2f01

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32aa53a9a63b7f01ed32e316e354e81e9da0e6267435c7243bf8ae0f10b428ef
MD5 6afd8261f8119aabfa4428c3534f163c
BLAKE2b-256 e8c124d0f7357be89be4a43e0a656259676ea3d7a074901f47022f32e2957798

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c79d7719d027b7a42817c5d96461a99b6a49979c143839fc37aa5748c322f234
MD5 2852e64c619e03fcfe75161402abbbb1
BLAKE2b-256 2769e1da9d34da7fc59db358424f5d89a56aaafe09f6961b64e36457a80a7194

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e4bd963a935aaf40b625c2499f3f4f6bbd0c3776f6d3bc7c853d04824ff1c9f
MD5 3ede152fd665fd721a435319e1872afb
BLAKE2b-256 c54ecdd7de3e7ac6432b0abf282ec4c1a1a2ec62dfe423cf269b86861667752d

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5148c2f1ea043db13ce9b0c28456e18ecc8f14f41325aa624314095b6aa2e9ea
MD5 2887fb585f8be14ab7dc90f9be743114
BLAKE2b-256 b0ecc4e04f755be003129a2c5f3520d2c47026f00da5ecb9ef1e4f9449637571

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41face41f036fee09eba33a5b53a73e9a43d5cb2c53dad8e61fa6c9f91b5a51e
MD5 57557b52a7703c4dcab9d115f6f6a7a5
BLAKE2b-256 994427d7708a43538ed6c26708bcccdde757da8b7efb93f4871d4cc39cffa1cc

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34e19e56d68b0dad5cff62273107cf5d9fbaf9d75c46277aa5d803b3ef8a9e9b
MD5 023cec39dfae45298eb5a34aadf125d4
BLAKE2b-256 6ca2300b22e7bc2a222dd91fce121cefa7b49aa0d26a627b2777e7bdfcf1110b

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdab9555053399318b953a1fe1f586e945bc8d635ce9d05e617fd9fe3a4687d6
MD5 1c010a3abd87e0df793bc4ecd8f8d9b7
BLAKE2b-256 0dd890eb950ab4998effea2df4cf3a705dc594f6bc501c5a353073aa990be965

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b8693502d1967b00f2fb82fc1e744df128ba22f530e15b763c8d82baee15370
MD5 c98167e0ea04fdcf0d2a1b45e6f1ad06
BLAKE2b-256 879149e9a497ddaf4da5e3802d51ed67ff33024597c28f652b8ab1e7c0f5718b

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7211b463695d1e995ca3feb38b69227e46dbd03947172585ecb0588f19b0d87a
MD5 8516ab10aec74f4e119d74a23b4d640d
BLAKE2b-256 358292a7bb6dc82d183e304a5f84ae5437b59ee72d48cee805a9adda2488b237

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 9301c689051a4857d5b10777da23fafb8e8e921bcf3abe6448a058d27fb67633
MD5 53bf11ce5652421aa14bf1f7aa492340
BLAKE2b-256 af1935c957c84ee69d904299a38bae3614f7cede45f07f174f6d5a2f4dbd6033

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3dcb774e3568477275cc76554b5a565024b8ba3a0322f77c246bc7111c5bb9c
MD5 051509fcbb7dee5abccf7b2b286434a6
BLAKE2b-256 8a8bbadd9247d6ec25f5f634a9b3d0d92e39c045824ec7e8afcedca8ee52c1e2

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp311-none-win32.whl
  • Upload date:
  • Size: 264.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 49d617df841a63b4445790a254013aea2120357ccacbed00253f9c2b5dc24e2d
MD5 ac2b2c27f1222c90c82a10b29ba05b33
BLAKE2b-256 1898006d8043a82c0a09d282d669c88e587b3a05cabdd7f4900e402250a249ac

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d831ee0a50946d24a53821819b2327d5751b0c938b12c0653ea5be7dea9c82ec
MD5 d106bfb4a486de5721884cdbff8af4f0
BLAKE2b-256 df2b5f65014a8cecc0a120f5587722068a975a692cadbe9fe4ea56b3d8e43f14

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7a2e3b7f5703ffbd500dabdefcbc9eafeff4b9444bbdd5d83d79eedf8428fab
MD5 6815bf545a5c539bc4b5a62f58ae27f7
BLAKE2b-256 532020509c8f5291e14e8a13104b1808cd7cf5c44acd5feaecb427a49d387774

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa0fd7248cf533c259e59dc593a60973a73e881162b1a2f73360547132742823
MD5 e9c2a801e707d69596fe682e954a60d0
BLAKE2b-256 70eb82f089c4f44b3171ad87a1b433abb4696f18eb67292909630d886e073abe

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3770e260b18e7f4e576edca4c0a639f704088602e0bc921c5c2e721e3acb8d15
MD5 0a93e4507cc6bc6cb6670800b0a9b382
BLAKE2b-256 a33403b66d425986de3fc6077e74a74c78da298f8cb598887f664a4485e55543

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73bde715f940bea845a95247ea3e5eb17769ba1010efdc938ffcb967c634fa61
MD5 677aef72c5e9f5637a19a5cc7a689c3e
BLAKE2b-256 61eebf17f5a370c2fcff49e1fec987a6a43fd798d8427ea754ce45b38f9e117a

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 316449aefacf40147a9efaf3bd7c9bdd35aaba9ac5d708bd1eb5763c9a02bef5
MD5 272da972bf979ef65094bd1a93ea3e4c
BLAKE2b-256 1ce8d5e5f71cc443c85a72e70b24269a30e529227986096abe091040d6358ea9

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8360f7314a070c30e4c976b183d1d8d1585a4a50c5cb603f431cebcbb4f66327
MD5 222d222b059cc029322aa35d665cbaba
BLAKE2b-256 3a210b20bef581a9fbfef290a822c8be645432ceb05fb0741bf3c032e0d90d9a

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6509ed3f467b79d95fc62a98229f79b1a60d1b93f101e1c61d10c95a46a84f43
MD5 f0ada418cc6aa8ef9f9f71c6334d2c9b
BLAKE2b-256 b1dca8427b21ef46386adf824a9fec4be9d16a475b850616cfd98cf09a97a2ef

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dadf8a8014fde6addfd3c379e6ed1a981c8f0a48292d662e27cabfe4239c83c
MD5 61d7e450f5caac45e2762db1dc08054a
BLAKE2b-256 bc67d8c9d256791fe312fea118a8a051411337c948101a24586e2df237507976

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdcd5538e27f188dd3c804b4a8d5f52a7fc7f87e7fd6b374b8e36a4ca03db428
MD5 87b005ac90be2fecbc2e2912155d011a
BLAKE2b-256 8502366ae902cd81ca5befcd1854b5c7477b378f68861597cef854bd6dc69fbe

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 54ca90a9ae6597ae6dc00e7ed0a040ef723f84ec517d3e7ce13e63e4bc82fa04
MD5 572e848eb72fadd2af23c9d6416a3223
BLAKE2b-256 fe1b5148898ba55fc9c111a2a4a5fb67ad3fa7eb2b3d7f0618241ed88749313d

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp310-none-win32.whl
  • Upload date:
  • Size: 264.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6bdcfa3cd6fdbdd1a068a52820f46a815401cbc2cb187dd006cb076675e7b735
MD5 4a14c7bb67bdeba65e48059174db674c
BLAKE2b-256 63d54780e8bf3de3b4b46e7428a29654f7dc041cad6b19fd86d083e4b6f64bbe

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2efec17819b0046dde35d13fb8ac7a3ad877af41ae4640f4109d9154ed30a188
MD5 5992fe650d343f5e8df8e06c90d8f69b
BLAKE2b-256 a0c50e6e228aafe01a7995fbfd2a4edb221bb11a2744803b65a5663fb85e5063

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ae3e208b31be8ce7f4c2c0034f33406dd24fbce3467f77223d10cd86778471c
MD5 d6699f639aead343096886c91cf6acf8
BLAKE2b-256 2be8c7037ea38d838fd81a59cd25761f106ee3ef2cfd3261787bee0c68908171

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f895d785eb6164678ff4bb5cc60c5996b3ee6df3edb28dcdeba86a13ea0465e
MD5 9b439a156251ddef68aec0ddac9da07f
BLAKE2b-256 acd3f1f37248abe0114916921e638f71c7d21fe77e3f2f61750e8057d0b68ef2

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4abf4ad269856618f82dee296ac66b0cd1d71450fc3c98532d93798e73399b7a
MD5 e8863dff8e860b6a1a3622414993fe68
BLAKE2b-256 4c45f317d9e3affb06c3c27c478de99f7110143e87f0f001f0f72e18d0e1ddce

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 449f43f49c8ddca87c6b3980c9284cab6bd1f5c9d9a2b00012adaaccd5e7decd
MD5 28e17d7d193229c3165fe0039e00eeec
BLAKE2b-256 99c2e9e2754fae3c2721c9a7736f92dab73723f1968ed72535fff29e70776008

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b74fdffce9dfcf2dc296dec8743e5b0332d15df19ae464f0e249aa871fc1c571
MD5 eafa3ceae90d6ddfd30c174dbb5af3ab
BLAKE2b-256 6232a93db78d340c7ef86cde469deb20e36c6b2a873edee81f610e94bbba4e06

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acbfa31e315a8f14fe33e3542cbcafc55703b8f5dcbb7c1eecd30f141df50db3
MD5 e601f22e3a7c5fd3a0fb478b80505aa0
BLAKE2b-256 858a01d9a22e839f0d1d547af11b1fcac6ba6f889513f1b2e6f221d9d60d9585

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82ae557a8c037c42a6ef26c494d0631cacca040934b101d001100ed93d43f361
MD5 e7a6d663b53fc4c616628fdc458b6bef
BLAKE2b-256 740d1889e5649885484d29f6c792ef274454d0a26b20d6ed5fdba5409335ccb6

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e94e98c7cb94cfa6e071d401ea3342767f28eb5a06a58fafdc0d2a4974f4f35c
MD5 9515273471d05f12d4fc8a12cac3ad13
BLAKE2b-256 f75cf27c979c8a10aaa2822286c1bffdce3db731cd1aa4224b9f86623e94bbfe

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 083dc77dbdeef09fa44bb0f4d1df571d2e12d8a8f985dccde71ac3ac9ac067a0
MD5 eff4f68931c811555aaa2796de2e23b0
BLAKE2b-256 89a1631c12626378b9f1538664aa221feb5c60dfafbd7f60b451f8d0bdbcdedd

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b3ef2c69c655db63deb96b3c3e587084612f9b1fa983df5e0c3379d41307467f
MD5 285913de13f98f3753a0c1414ca955a7
BLAKE2b-256 166e5ded97365346eceaf7fa32d4e2d16f4f97b11d648026b2903c2528c544f8

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp39-none-win32.whl
  • Upload date:
  • Size: 264.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 7138eff8baa883aeaa074359daabb8b6c1e73ffe69d5accdc907d62e50b1c0da
MD5 19c49e383e1982c5eab240857ff091c0
BLAKE2b-256 9b85033ecdb5eccb77770d6f24f9fa055067ffa962313a1383645afc711a3cd8

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e28d91ef48eab0afb939fa446d8ebe77e2f7593f5f463fd2bb2b14132f95b6e
MD5 7488f5c0ef7661cba4ccccf2ea67ac61
BLAKE2b-256 774405c8959304f96fbcd68b6c131c59df7bd3d7f0c2a7410324b7f63b1f9fe6

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ec39698c45b11d9694a1b635a70946a5bad066b593af863460a8e600f0dff1ca
MD5 7970136d8e08ede88cf754e647be75a6
BLAKE2b-256 0e11cfa073f1d9fa18867c2b4220ba445044fd48101ac481f8cbfea1c208ea88

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d337193bbf3e45171c8025e291530fb7548a93c45253897cd764a6a71c937ed9
MD5 1f092bb130036d708f454addabe9fb12
BLAKE2b-256 9d8bfea47dd852c644bd933108877293d0a1c56953c584e8b971530a9042c153

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07cdef0c84c03375f4e24642ef8d8178e533596b229d32d2bbd69e5128ede02a
MD5 238e295ed4e691c43933722f77937739
BLAKE2b-256 7a1429ffa6c7a695fb46a7ff835a5524976dbc07577215647fb35a61ea099c75

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78470906a6be5199524641f538bd2c56bb809cd4bf29a566a75051610bc982c3
MD5 0cffb9dca1611dab8925bbb04a5dcbb8
BLAKE2b-256 d7a6124b0043a8936adf96fffa1d73217b205cc254b4a5a313b0a6ea33a44b7b

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7d9b87c4c55e3ea8881dfcbf6d61ea6775fffed1fedffaa60bd047d3c08c430
MD5 6d6c49123ed8d08ebf856bdba1b5af55
BLAKE2b-256 1a697c55142bafcdad9fec58433b7c1f162b59c48f0a3732a9441252147b13c7

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a60e2bf9dc6afe7f743e7c9b149d1fdd6dbf35153c78fe3a14ae1a9aee3d98b
MD5 0b65c7aa58555063a9f672c455963616
BLAKE2b-256 9b76750eab8e7baecedca05e712b9571ac5eb240e494e8d4c78b359da2939619

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82b2509f08761f29a0fdad35f7e1638b8ab1adfa2666d41b794090361fb8b855
MD5 379c99f2629f05ad563a92d23f3d07a7
BLAKE2b-256 a282915b3a3295292f860181dc9c7d922834ac7265c8915052d396d40ccf4617

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c51749f3e4e269231510da426ce4a44beb98db2dce9097225c338f815b05d4f
MD5 0d60beaa0cdcdf0beb7d592a80f614e4
BLAKE2b-256 74e2ec7766a5b20ba5e37397ef8d32ff39a90daf7e4677410efe077c386338b6

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b665caeeda58625c3946ad7308fbd88a086ee51ccb706307e5b1fa91556ac886
MD5 13e91ee7a093a0fde5a99404b1d805ae
BLAKE2b-256 939015b3b1cc19799c217e4369ca15dbf9ba1d0f821d61b27173a54800002478

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 21ab23fdc1208086d99ad3f69c231ba265628014d4aed31d4e8746bd59e88cd1
MD5 1b3deab9ae888430ab7c651b7348d39b
BLAKE2b-256 e6cc2f2f27fc403193bedaaae5485cd04fd31064f5cdec885162bd0e390be68a

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-none-win32.whl.

File metadata

  • Download URL: watchfiles-0.24.0-cp38-none-win32.whl
  • Upload date:
  • Size: 264.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for watchfiles-0.24.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4d28cea3c976499475f5b7a2fec6b3a36208656963c1a856d328aeae056fc5c1
MD5 ce0f5fa183bc62739a5c7ddac6c76467
BLAKE2b-256 e616d89e06188ed6672dc69eeef7af2ea158328bd59d45032a94daaaed2a6516

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 01def80eb62bd5db99a798d5e1f5f940ca0a05986dcfae21d833af7a46f7ee22
MD5 29ff40bdc08f94715ebf2b1fa75d1383
BLAKE2b-256 fcdc8f177e6074e756d961d5dcb5ef65528b02ab09028d0380db4579a30af78f

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 95cf3b95ea665ab03f5a54765fa41abf0529dbaf372c3b83d91ad2cfa695779b
MD5 61cae344bd097409a6eb9272ece2cc01
BLAKE2b-256 56525a2c6e0694013a53f596d4a66642de48dc1a53a635ad61bc6504abf5c87c

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4933a508d2f78099162da473841c652ad0de892719043d3f07cc83b33dfd9d91
MD5 ea091af8aaa210679cddacf7bdb2f08c
BLAKE2b-256 3d7890a881916a4a3bafd5e82202d51406444d3720cfc03b326427a8e455d89d

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5171ef898299c657685306d8e1478a45e9303ddcd8ac5fed5bd52ad4ae0b69b
MD5 f9e51725d2c15ce09e7069dd17923715
BLAKE2b-256 4c729b2ba3bb3a7233fb3d21900cd3f9005cfaa53884f496239541ec885b9861

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed9aba6e01ff6f2e8285e5aa4154e2970068fe0fc0998c4380d0e6278222269b
MD5 24cfc24a1d3a5091f3c38f3f304c6b29
BLAKE2b-256 c865cda4b9ed13087d57f78ed386c4bdc2369c114dd871a32fa6e2419f6e81b8

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b995bfa6bf01a9e09b884077a6d37070464b529d8682d7691c2d3b540d357a0c
MD5 0d83b181c150bcb4b9f67cbbcc6b913e
BLAKE2b-256 f47f30fbf661dea01cf3d5ab4962ee4b52854b9fbbd7fe4918bc60c212bb5b60

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fca9433a45f18b7c779d2bae7beeec4f740d28b788b117a48368d95a3233ed83
MD5 857c32c01faf93d01aa50d59e9785419
BLAKE2b-256 31de4a677766880efee555cc56a4c6bf6993a7748901243cd2511419acc37a6c

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f83df90191d67af5a831da3a33dd7628b02a95450e168785586ed51e6d28943c
MD5 c94b251a0a9bd7bd2f50fec5c9e13ffc
BLAKE2b-256 6827f3a1147af79085da95a879d7e6f953380da17a90b50d990749ae287550ca

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd92bbaa2ecdb7864b7600dcdb6f2f1db6e0346ed425fbd01085be04c63f0b05
MD5 4fe805e3db7b3bd979c755f26999b850
BLAKE2b-256 c5b2d417b982be5ace395f1aad32cd8e0dcf194e431dfbfeee88941b6da6735a

See more details on using hashes here.

Provenance

File details

Details for the file watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee82c98bed9d97cd2f53bdb035e619309a098ea53ce525833e26b93f673bc318
MD5 1ca0be755fd4ddd9887d88dd6fa0e220
BLAKE2b-256 171cc0b5f4347011b60e2dbde671a5050944f3aaf0eb2ffc0fb5c7adf2516229

See more details on using hashes here.

Provenance

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