Name | watchfiles JSON |
Version |
0.24.0
JSON |
| download |
home_page | https://github.com/samuelcolvin/watchfiles |
Summary | Simple, modern and high performance file watching and code reload in python. |
upload_time | 2024-08-28 16:21:37 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# watchfiles
[![CI](https://github.com/samuelcolvin/watchfiles/workflows/ci/badge.svg?event=push)](https://github.com/samuelcolvin/watchfiles/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)
[![Coverage](https://codecov.io/gh/samuelcolvin/watchfiles/branch/main/graph/badge.svg)](https://codecov.io/gh/samuelcolvin/watchfiles)
[![pypi](https://img.shields.io/pypi/v/watchfiles.svg)](https://pypi.python.org/pypi/watchfiles)
[![CondaForge](https://img.shields.io/conda/v/conda-forge/watchfiles.svg)](https://anaconda.org/conda-forge/watchfiles)
[![license](https://img.shields.io/github/license/samuelcolvin/watchfiles.svg)](https://github.com/samuelcolvin/watchfiles/blob/main/LICENSE)
Simple, modern and high performance file watching and code reload in python.
---
**Documentation**: [watchfiles.helpmanual.io](https://watchfiles.helpmanual.io)
**Source Code**: [github.com/samuelcolvin/watchfiles](https://github.com/samuelcolvin/watchfiles)
---
Underlying file system notifications are handled by the [Notify](https://github.com/notify-rs/notify) rust library.
This package was previously named "watchgod",
see [the migration guide](https://watchfiles.helpmanual.io/migrating/) for more information.
## Installation
**watchfiles** requires Python 3.8 - 3.13.
```bash
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
```py
from watchfiles import watch
for changes in watch('./path/to/dir'):
print(changes)
```
See [`watch` docs](https://watchfiles.helpmanual.io/api/watch/#watchfiles.watch) for more details.
### `awatch` Usage
```py
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](https://watchfiles.helpmanual.io/api/watch/#watchfiles.awatch) for more details.
### `run_process` Usage
```py
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](https://watchfiles.helpmanual.io/api/run_process/#watchfiles.run_process) for more details.
### `arun_process` Usage
```py
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](https://watchfiles.helpmanual.io/api/run_process/#watchfiles.arun_process) 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](https://watchfiles.helpmanual.io/cli/).
Or run
```bash
watchfiles --help
```
Raw data
{
"_id": null,
"home_page": "https://github.com/samuelcolvin/watchfiles",
"name": "watchfiles",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Samuel Colvin <s@muelcolvin.com>",
"download_url": "https://files.pythonhosted.org/packages/c8/27/2ba23c8cc85796e2d41976439b08d52f691655fdb9401362099502d1f0cf/watchfiles-0.24.0.tar.gz",
"platform": null,
"description": "# watchfiles\n\n[![CI](https://github.com/samuelcolvin/watchfiles/workflows/ci/badge.svg?event=push)](https://github.com/samuelcolvin/watchfiles/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[![Coverage](https://codecov.io/gh/samuelcolvin/watchfiles/branch/main/graph/badge.svg)](https://codecov.io/gh/samuelcolvin/watchfiles)\n[![pypi](https://img.shields.io/pypi/v/watchfiles.svg)](https://pypi.python.org/pypi/watchfiles)\n[![CondaForge](https://img.shields.io/conda/v/conda-forge/watchfiles.svg)](https://anaconda.org/conda-forge/watchfiles)\n[![license](https://img.shields.io/github/license/samuelcolvin/watchfiles.svg)](https://github.com/samuelcolvin/watchfiles/blob/main/LICENSE)\n\nSimple, modern and high performance file watching and code reload in python.\n\n---\n\n**Documentation**: [watchfiles.helpmanual.io](https://watchfiles.helpmanual.io)\n\n**Source Code**: [github.com/samuelcolvin/watchfiles](https://github.com/samuelcolvin/watchfiles)\n\n---\n\nUnderlying file system notifications are handled by the [Notify](https://github.com/notify-rs/notify) rust library.\n\nThis package was previously named \"watchgod\",\nsee [the migration guide](https://watchfiles.helpmanual.io/migrating/) for more information.\n\n## Installation\n\n**watchfiles** requires Python 3.8 - 3.13.\n\n```bash\npip install watchfiles\n```\n\nBinaries are available for:\n\n* **Linux**: `x86_64`, `aarch64`, `i686`, `armv7l`, `musl-x86_64` & `musl-aarch64`\n* **MacOS**: `x86_64` & `arm64`\n* **Windows**: `amd64` & `win32`\n\nOtherwise, you can install from source which requires Rust stable to be installed.\n\n## Usage\n\nHere are some examples of what **watchfiles** can do:\n\n### `watch` Usage\n\n```py\nfrom watchfiles import watch\n\nfor changes in watch('./path/to/dir'):\n print(changes)\n```\nSee [`watch` docs](https://watchfiles.helpmanual.io/api/watch/#watchfiles.watch) for more details.\n\n### `awatch` Usage\n\n```py\nimport asyncio\nfrom watchfiles import awatch\n\nasync def main():\n async for changes in awatch('/path/to/dir'):\n print(changes)\n\nasyncio.run(main())\n```\nSee [`awatch` docs](https://watchfiles.helpmanual.io/api/watch/#watchfiles.awatch) for more details.\n\n### `run_process` Usage\n\n```py\nfrom watchfiles import run_process\n\ndef foobar(a, b, c):\n ...\n\nif __name__ == '__main__':\n run_process('./path/to/dir', target=foobar, args=(1, 2, 3))\n```\nSee [`run_process` docs](https://watchfiles.helpmanual.io/api/run_process/#watchfiles.run_process) for more details.\n\n### `arun_process` Usage\n\n```py\nimport asyncio\nfrom watchfiles import arun_process\n\ndef foobar(a, b, c):\n ...\n\nasync def main():\n await arun_process('./path/to/dir', target=foobar, args=(1, 2, 3))\n\nif __name__ == '__main__':\n asyncio.run(main())\n```\nSee [`arun_process` docs](https://watchfiles.helpmanual.io/api/run_process/#watchfiles.arun_process) for more details.\n\n## CLI\n\n**watchfiles** also comes with a CLI for running and reloading code. To run `some command` when files in `src` change:\n\n```\nwatchfiles \"some command\" src\n```\n\nFor more information, see [the CLI docs](https://watchfiles.helpmanual.io/cli/).\n\nOr run\n\n```bash\nwatchfiles --help\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Simple, modern and high performance file watching and code reload in python.",
"version": "0.24.0",
"project_urls": {
"Changelog": "https://github.com/samuelcolvin/watchfiles/releases",
"Documentation": "https://watchfiles.helpmanual.io",
"Funding": "https://github.com/sponsors/samuelcolvin",
"Homepage": "https://github.com/samuelcolvin/watchfiles",
"Source": "https://github.com/samuelcolvin/watchfiles"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "89a1631c12626378b9f1538664aa221feb5c60dfafbd7f60b451f8d0bdbcdedd",
"md5": "eff4f68931c811555aaa2796de2e23b0",
"sha256": "083dc77dbdeef09fa44bb0f4d1df571d2e12d8a8f985dccde71ac3ac9ac067a0"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "eff4f68931c811555aaa2796de2e23b0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 375096,
"upload_time": "2024-08-28T16:19:47",
"upload_time_iso_8601": "2024-08-28T16:19:47.704092Z",
"url": "https://files.pythonhosted.org/packages/89/a1/631c12626378b9f1538664aa221feb5c60dfafbd7f60b451f8d0bdbcdedd/watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f75cf27c979c8a10aaa2822286c1bffdce3db731cd1aa4224b9f86623e94bbfe",
"md5": "9515273471d05f12d4fc8a12cac3ad13",
"sha256": "e94e98c7cb94cfa6e071d401ea3342767f28eb5a06a58fafdc0d2a4974f4f35c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9515273471d05f12d4fc8a12cac3ad13",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 367425,
"upload_time": "2024-08-28T16:19:49",
"upload_time_iso_8601": "2024-08-28T16:19:49.660035Z",
"url": "https://files.pythonhosted.org/packages/f7/5c/f27c979c8a10aaa2822286c1bffdce3db731cd1aa4224b9f86623e94bbfe/watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "740d1889e5649885484d29f6c792ef274454d0a26b20d6ed5fdba5409335ccb6",
"md5": "e7a6d663b53fc4c616628fdc458b6bef",
"sha256": "82ae557a8c037c42a6ef26c494d0631cacca040934b101d001100ed93d43f361"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e7a6d663b53fc4c616628fdc458b6bef",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 437705,
"upload_time": "2024-08-28T16:19:51",
"upload_time_iso_8601": "2024-08-28T16:19:51.068785Z",
"url": "https://files.pythonhosted.org/packages/74/0d/1889e5649885484d29f6c792ef274454d0a26b20d6ed5fdba5409335ccb6/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "858a01d9a22e839f0d1d547af11b1fcac6ba6f889513f1b2e6f221d9d60d9585",
"md5": "e601f22e3a7c5fd3a0fb478b80505aa0",
"sha256": "acbfa31e315a8f14fe33e3542cbcafc55703b8f5dcbb7c1eecd30f141df50db3"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e601f22e3a7c5fd3a0fb478b80505aa0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 433636,
"upload_time": "2024-08-28T16:19:52",
"upload_time_iso_8601": "2024-08-28T16:19:52.799387Z",
"url": "https://files.pythonhosted.org/packages/85/8a/01d9a22e839f0d1d547af11b1fcac6ba6f889513f1b2e6f221d9d60d9585/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6232a93db78d340c7ef86cde469deb20e36c6b2a873edee81f610e94bbba4e06",
"md5": "eafa3ceae90d6ddfd30c174dbb5af3ab",
"sha256": "b74fdffce9dfcf2dc296dec8743e5b0332d15df19ae464f0e249aa871fc1c571"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eafa3ceae90d6ddfd30c174dbb5af3ab",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 451069,
"upload_time": "2024-08-28T16:19:54",
"upload_time_iso_8601": "2024-08-28T16:19:54.111351Z",
"url": "https://files.pythonhosted.org/packages/62/32/a93db78d340c7ef86cde469deb20e36c6b2a873edee81f610e94bbba4e06/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99c2e9e2754fae3c2721c9a7736f92dab73723f1968ed72535fff29e70776008",
"md5": "28e17d7d193229c3165fe0039e00eeec",
"sha256": "449f43f49c8ddca87c6b3980c9284cab6bd1f5c9d9a2b00012adaaccd5e7decd"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "28e17d7d193229c3165fe0039e00eeec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 469306,
"upload_time": "2024-08-28T16:19:55",
"upload_time_iso_8601": "2024-08-28T16:19:55.616082Z",
"url": "https://files.pythonhosted.org/packages/99/c2/e9e2754fae3c2721c9a7736f92dab73723f1968ed72535fff29e70776008/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c45f317d9e3affb06c3c27c478de99f7110143e87f0f001f0f72e18d0e1ddce",
"md5": "e8863dff8e860b6a1a3622414993fe68",
"sha256": "4abf4ad269856618f82dee296ac66b0cd1d71450fc3c98532d93798e73399b7a"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e8863dff8e860b6a1a3622414993fe68",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 476187,
"upload_time": "2024-08-28T16:19:56",
"upload_time_iso_8601": "2024-08-28T16:19:56.915151Z",
"url": "https://files.pythonhosted.org/packages/4c/45/f317d9e3affb06c3c27c478de99f7110143e87f0f001f0f72e18d0e1ddce/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acd3f1f37248abe0114916921e638f71c7d21fe77e3f2f61750e8057d0b68ef2",
"md5": "9b439a156251ddef68aec0ddac9da07f",
"sha256": "9f895d785eb6164678ff4bb5cc60c5996b3ee6df3edb28dcdeba86a13ea0465e"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9b439a156251ddef68aec0ddac9da07f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 425743,
"upload_time": "2024-08-28T16:19:57",
"upload_time_iso_8601": "2024-08-28T16:19:57.957991Z",
"url": "https://files.pythonhosted.org/packages/ac/d3/f1f37248abe0114916921e638f71c7d21fe77e3f2f61750e8057d0b68ef2/watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2be8c7037ea38d838fd81a59cd25761f106ee3ef2cfd3261787bee0c68908171",
"md5": "d6699f639aead343096886c91cf6acf8",
"sha256": "7ae3e208b31be8ce7f4c2c0034f33406dd24fbce3467f77223d10cd86778471c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d6699f639aead343096886c91cf6acf8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 612327,
"upload_time": "2024-08-28T16:19:59",
"upload_time_iso_8601": "2024-08-28T16:19:59.400444Z",
"url": "https://files.pythonhosted.org/packages/2b/e8/c7037ea38d838fd81a59cd25761f106ee3ef2cfd3261787bee0c68908171/watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0c50e6e228aafe01a7995fbfd2a4edb221bb11a2744803b65a5663fb85e5063",
"md5": "5992fe650d343f5e8df8e06c90d8f69b",
"sha256": "2efec17819b0046dde35d13fb8ac7a3ad877af41ae4640f4109d9154ed30a188"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5992fe650d343f5e8df8e06c90d8f69b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 595096,
"upload_time": "2024-08-28T16:20:01",
"upload_time_iso_8601": "2024-08-28T16:20:01.003133Z",
"url": "https://files.pythonhosted.org/packages/a0/c5/0e6e228aafe01a7995fbfd2a4edb221bb11a2744803b65a5663fb85e5063/watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63d54780e8bf3de3b4b46e7428a29654f7dc041cad6b19fd86d083e4b6f64bbe",
"md5": "4a14c7bb67bdeba65e48059174db674c",
"sha256": "6bdcfa3cd6fdbdd1a068a52820f46a815401cbc2cb187dd006cb076675e7b735"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "4a14c7bb67bdeba65e48059174db674c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 264149,
"upload_time": "2024-08-28T16:20:02",
"upload_time_iso_8601": "2024-08-28T16:20:02.833441Z",
"url": "https://files.pythonhosted.org/packages/63/d5/4780e8bf3de3b4b46e7428a29654f7dc041cad6b19fd86d083e4b6f64bbe/watchfiles-0.24.0-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe1b5148898ba55fc9c111a2a4a5fb67ad3fa7eb2b3d7f0618241ed88749313d",
"md5": "572e848eb72fadd2af23c9d6416a3223",
"sha256": "54ca90a9ae6597ae6dc00e7ed0a040ef723f84ec517d3e7ce13e63e4bc82fa04"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "572e848eb72fadd2af23c9d6416a3223",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 277542,
"upload_time": "2024-08-28T16:20:03",
"upload_time_iso_8601": "2024-08-28T16:20:03.876347Z",
"url": "https://files.pythonhosted.org/packages/fe/1b/5148898ba55fc9c111a2a4a5fb67ad3fa7eb2b3d7f0618241ed88749313d/watchfiles-0.24.0-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8502366ae902cd81ca5befcd1854b5c7477b378f68861597cef854bd6dc69fbe",
"md5": "87b005ac90be2fecbc2e2912155d011a",
"sha256": "bdcd5538e27f188dd3c804b4a8d5f52a7fc7f87e7fd6b374b8e36a4ca03db428"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "87b005ac90be2fecbc2e2912155d011a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 375579,
"upload_time": "2024-08-28T16:20:04",
"upload_time_iso_8601": "2024-08-28T16:20:04.865554Z",
"url": "https://files.pythonhosted.org/packages/85/02/366ae902cd81ca5befcd1854b5c7477b378f68861597cef854bd6dc69fbe/watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc67d8c9d256791fe312fea118a8a051411337c948101a24586e2df237507976",
"md5": "61d7e450f5caac45e2762db1dc08054a",
"sha256": "2dadf8a8014fde6addfd3c379e6ed1a981c8f0a48292d662e27cabfe4239c83c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "61d7e450f5caac45e2762db1dc08054a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 367726,
"upload_time": "2024-08-28T16:20:06",
"upload_time_iso_8601": "2024-08-28T16:20:06.111288Z",
"url": "https://files.pythonhosted.org/packages/bc/67/d8c9d256791fe312fea118a8a051411337c948101a24586e2df237507976/watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1dca8427b21ef46386adf824a9fec4be9d16a475b850616cfd98cf09a97a2ef",
"md5": "f0ada418cc6aa8ef9f9f71c6334d2c9b",
"sha256": "6509ed3f467b79d95fc62a98229f79b1a60d1b93f101e1c61d10c95a46a84f43"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f0ada418cc6aa8ef9f9f71c6334d2c9b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 437735,
"upload_time": "2024-08-28T16:20:07",
"upload_time_iso_8601": "2024-08-28T16:20:07.547962Z",
"url": "https://files.pythonhosted.org/packages/b1/dc/a8427b21ef46386adf824a9fec4be9d16a475b850616cfd98cf09a97a2ef/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a210b20bef581a9fbfef290a822c8be645432ceb05fb0741bf3c032e0d90d9a",
"md5": "222d222b059cc029322aa35d665cbaba",
"sha256": "8360f7314a070c30e4c976b183d1d8d1585a4a50c5cb603f431cebcbb4f66327"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "222d222b059cc029322aa35d665cbaba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 433644,
"upload_time": "2024-08-28T16:20:09",
"upload_time_iso_8601": "2024-08-28T16:20:09.150678Z",
"url": "https://files.pythonhosted.org/packages/3a/21/0b20bef581a9fbfef290a822c8be645432ceb05fb0741bf3c032e0d90d9a/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ce8d5e5f71cc443c85a72e70b24269a30e529227986096abe091040d6358ea9",
"md5": "272da972bf979ef65094bd1a93ea3e4c",
"sha256": "316449aefacf40147a9efaf3bd7c9bdd35aaba9ac5d708bd1eb5763c9a02bef5"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "272da972bf979ef65094bd1a93ea3e4c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 450928,
"upload_time": "2024-08-28T16:20:11",
"upload_time_iso_8601": "2024-08-28T16:20:11.152154Z",
"url": "https://files.pythonhosted.org/packages/1c/e8/d5e5f71cc443c85a72e70b24269a30e529227986096abe091040d6358ea9/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61eebf17f5a370c2fcff49e1fec987a6a43fd798d8427ea754ce45b38f9e117a",
"md5": "677aef72c5e9f5637a19a5cc7a689c3e",
"sha256": "73bde715f940bea845a95247ea3e5eb17769ba1010efdc938ffcb967c634fa61"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "677aef72c5e9f5637a19a5cc7a689c3e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 469072,
"upload_time": "2024-08-28T16:20:12",
"upload_time_iso_8601": "2024-08-28T16:20:12.345775Z",
"url": "https://files.pythonhosted.org/packages/61/ee/bf17f5a370c2fcff49e1fec987a6a43fd798d8427ea754ce45b38f9e117a/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a33403b66d425986de3fc6077e74a74c78da298f8cb598887f664a4485e55543",
"md5": "0a93e4507cc6bc6cb6670800b0a9b382",
"sha256": "3770e260b18e7f4e576edca4c0a639f704088602e0bc921c5c2e721e3acb8d15"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0a93e4507cc6bc6cb6670800b0a9b382",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 475517,
"upload_time": "2024-08-28T16:20:13",
"upload_time_iso_8601": "2024-08-28T16:20:13.555837Z",
"url": "https://files.pythonhosted.org/packages/a3/34/03b66d425986de3fc6077e74a74c78da298f8cb598887f664a4485e55543/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70eb82f089c4f44b3171ad87a1b433abb4696f18eb67292909630d886e073abe",
"md5": "e9c2a801e707d69596fe682e954a60d0",
"sha256": "aa0fd7248cf533c259e59dc593a60973a73e881162b1a2f73360547132742823"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e9c2a801e707d69596fe682e954a60d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 425480,
"upload_time": "2024-08-28T16:20:15",
"upload_time_iso_8601": "2024-08-28T16:20:15.037822Z",
"url": "https://files.pythonhosted.org/packages/70/eb/82f089c4f44b3171ad87a1b433abb4696f18eb67292909630d886e073abe/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "532020509c8f5291e14e8a13104b1808cd7cf5c44acd5feaecb427a49d387774",
"md5": "6815bf545a5c539bc4b5a62f58ae27f7",
"sha256": "d7a2e3b7f5703ffbd500dabdefcbc9eafeff4b9444bbdd5d83d79eedf8428fab"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6815bf545a5c539bc4b5a62f58ae27f7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 612322,
"upload_time": "2024-08-28T16:20:16",
"upload_time_iso_8601": "2024-08-28T16:20:16.095827Z",
"url": "https://files.pythonhosted.org/packages/53/20/20509c8f5291e14e8a13104b1808cd7cf5c44acd5feaecb427a49d387774/watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df2b5f65014a8cecc0a120f5587722068a975a692cadbe9fe4ea56b3d8e43f14",
"md5": "d106bfb4a486de5721884cdbff8af4f0",
"sha256": "d831ee0a50946d24a53821819b2327d5751b0c938b12c0653ea5be7dea9c82ec"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d106bfb4a486de5721884cdbff8af4f0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 595094,
"upload_time": "2024-08-28T16:20:17",
"upload_time_iso_8601": "2024-08-28T16:20:17.395418Z",
"url": "https://files.pythonhosted.org/packages/df/2b/5f65014a8cecc0a120f5587722068a975a692cadbe9fe4ea56b3d8e43f14/watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1898006d8043a82c0a09d282d669c88e587b3a05cabdd7f4900e402250a249ac",
"md5": "ac2b2c27f1222c90c82a10b29ba05b33",
"sha256": "49d617df841a63b4445790a254013aea2120357ccacbed00253f9c2b5dc24e2d"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "ac2b2c27f1222c90c82a10b29ba05b33",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 264191,
"upload_time": "2024-08-28T16:20:18",
"upload_time_iso_8601": "2024-08-28T16:20:18.472232Z",
"url": "https://files.pythonhosted.org/packages/18/98/006d8043a82c0a09d282d669c88e587b3a05cabdd7f4900e402250a249ac/watchfiles-0.24.0-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a8bbadd9247d6ec25f5f634a9b3d0d92e39c045824ec7e8afcedca8ee52c1e2",
"md5": "051509fcbb7dee5abccf7b2b286434a6",
"sha256": "d3dcb774e3568477275cc76554b5a565024b8ba3a0322f77c246bc7111c5bb9c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "051509fcbb7dee5abccf7b2b286434a6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 277527,
"upload_time": "2024-08-28T16:20:20",
"upload_time_iso_8601": "2024-08-28T16:20:20.096236Z",
"url": "https://files.pythonhosted.org/packages/8a/8b/badd9247d6ec25f5f634a9b3d0d92e39c045824ec7e8afcedca8ee52c1e2/watchfiles-0.24.0-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af1935c957c84ee69d904299a38bae3614f7cede45f07f174f6d5a2f4dbd6033",
"md5": "53bf11ce5652421aa14bf1f7aa492340",
"sha256": "9301c689051a4857d5b10777da23fafb8e8e921bcf3abe6448a058d27fb67633"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp311-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "53bf11ce5652421aa14bf1f7aa492340",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 266253,
"upload_time": "2024-08-28T16:20:21",
"upload_time_iso_8601": "2024-08-28T16:20:21.381103Z",
"url": "https://files.pythonhosted.org/packages/af/19/35c957c84ee69d904299a38bae3614f7cede45f07f174f6d5a2f4dbd6033/watchfiles-0.24.0-cp311-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "358292a7bb6dc82d183e304a5f84ae5437b59ee72d48cee805a9adda2488b237",
"md5": "8516ab10aec74f4e119d74a23b4d640d",
"sha256": "7211b463695d1e995ca3feb38b69227e46dbd03947172585ecb0588f19b0d87a"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "8516ab10aec74f4e119d74a23b4d640d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 374137,
"upload_time": "2024-08-28T16:20:23",
"upload_time_iso_8601": "2024-08-28T16:20:23.055600Z",
"url": "https://files.pythonhosted.org/packages/35/82/92a7bb6dc82d183e304a5f84ae5437b59ee72d48cee805a9adda2488b237/watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "879149e9a497ddaf4da5e3802d51ed67ff33024597c28f652b8ab1e7c0f5718b",
"md5": "c98167e0ea04fdcf0d2a1b45e6f1ad06",
"sha256": "4b8693502d1967b00f2fb82fc1e744df128ba22f530e15b763c8d82baee15370"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c98167e0ea04fdcf0d2a1b45e6f1ad06",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 367733,
"upload_time": "2024-08-28T16:20:24",
"upload_time_iso_8601": "2024-08-28T16:20:24.543098Z",
"url": "https://files.pythonhosted.org/packages/87/91/49e9a497ddaf4da5e3802d51ed67ff33024597c28f652b8ab1e7c0f5718b/watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0dd890eb950ab4998effea2df4cf3a705dc594f6bc501c5a353073aa990be965",
"md5": "1c010a3abd87e0df793bc4ecd8f8d9b7",
"sha256": "cdab9555053399318b953a1fe1f586e945bc8d635ce9d05e617fd9fe3a4687d6"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1c010a3abd87e0df793bc4ecd8f8d9b7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 437322,
"upload_time": "2024-08-28T16:20:25",
"upload_time_iso_8601": "2024-08-28T16:20:25.572683Z",
"url": "https://files.pythonhosted.org/packages/0d/d8/90eb950ab4998effea2df4cf3a705dc594f6bc501c5a353073aa990be965/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ca2300b22e7bc2a222dd91fce121cefa7b49aa0d26a627b2777e7bdfcf1110b",
"md5": "023cec39dfae45298eb5a34aadf125d4",
"sha256": "34e19e56d68b0dad5cff62273107cf5d9fbaf9d75c46277aa5d803b3ef8a9e9b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "023cec39dfae45298eb5a34aadf125d4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 433409,
"upload_time": "2024-08-28T16:20:26",
"upload_time_iso_8601": "2024-08-28T16:20:26.628569Z",
"url": "https://files.pythonhosted.org/packages/6c/a2/300b22e7bc2a222dd91fce121cefa7b49aa0d26a627b2777e7bdfcf1110b/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "994427d7708a43538ed6c26708bcccdde757da8b7efb93f4871d4cc39cffa1cc",
"md5": "57557b52a7703c4dcab9d115f6f6a7a5",
"sha256": "41face41f036fee09eba33a5b53a73e9a43d5cb2c53dad8e61fa6c9f91b5a51e"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "57557b52a7703c4dcab9d115f6f6a7a5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 452142,
"upload_time": "2024-08-28T16:20:28",
"upload_time_iso_8601": "2024-08-28T16:20:28.003317Z",
"url": "https://files.pythonhosted.org/packages/99/44/27d7708a43538ed6c26708bcccdde757da8b7efb93f4871d4cc39cffa1cc/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0ecc4e04f755be003129a2c5f3520d2c47026f00da5ecb9ef1e4f9449637571",
"md5": "2887fb585f8be14ab7dc90f9be743114",
"sha256": "5148c2f1ea043db13ce9b0c28456e18ecc8f14f41325aa624314095b6aa2e9ea"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2887fb585f8be14ab7dc90f9be743114",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 469414,
"upload_time": "2024-08-28T16:20:29",
"upload_time_iso_8601": "2024-08-28T16:20:29.550849Z",
"url": "https://files.pythonhosted.org/packages/b0/ec/c4e04f755be003129a2c5f3520d2c47026f00da5ecb9ef1e4f9449637571/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c54ecdd7de3e7ac6432b0abf282ec4c1a1a2ec62dfe423cf269b86861667752d",
"md5": "3ede152fd665fd721a435319e1872afb",
"sha256": "7e4bd963a935aaf40b625c2499f3f4f6bbd0c3776f6d3bc7c853d04824ff1c9f"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3ede152fd665fd721a435319e1872afb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 472962,
"upload_time": "2024-08-28T16:20:31",
"upload_time_iso_8601": "2024-08-28T16:20:31.314989Z",
"url": "https://files.pythonhosted.org/packages/c5/4e/cdd7de3e7ac6432b0abf282ec4c1a1a2ec62dfe423cf269b86861667752d/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2769e1da9d34da7fc59db358424f5d89a56aaafe09f6961b64e36457a80a7194",
"md5": "2852e64c619e03fcfe75161402abbbb1",
"sha256": "c79d7719d027b7a42817c5d96461a99b6a49979c143839fc37aa5748c322f234"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2852e64c619e03fcfe75161402abbbb1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 425705,
"upload_time": "2024-08-28T16:20:32",
"upload_time_iso_8601": "2024-08-28T16:20:32.427448Z",
"url": "https://files.pythonhosted.org/packages/27/69/e1da9d34da7fc59db358424f5d89a56aaafe09f6961b64e36457a80a7194/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8c124d0f7357be89be4a43e0a656259676ea3d7a074901f47022f32e2957798",
"md5": "6afd8261f8119aabfa4428c3534f163c",
"sha256": "32aa53a9a63b7f01ed32e316e354e81e9da0e6267435c7243bf8ae0f10b428ef"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6afd8261f8119aabfa4428c3534f163c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 612851,
"upload_time": "2024-08-28T16:20:33",
"upload_time_iso_8601": "2024-08-28T16:20:33.527291Z",
"url": "https://files.pythonhosted.org/packages/e8/c1/24d0f7357be89be4a43e0a656259676ea3d7a074901f47022f32e2957798/watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7af175ba9b268dec56f821639c9893b506c69fd999fe6a2e2c51de420eb2f01",
"md5": "b0a38882fe21d41f77da39f09d74c3c4",
"sha256": "ce72dba6a20e39a0c628258b5c308779b8697f7676c254a845715e2a1039b968"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b0a38882fe21d41f77da39f09d74c3c4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 594868,
"upload_time": "2024-08-28T16:20:34",
"upload_time_iso_8601": "2024-08-28T16:20:34.639563Z",
"url": "https://files.pythonhosted.org/packages/c7/af/175ba9b268dec56f821639c9893b506c69fd999fe6a2e2c51de420eb2f01/watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44811f701323a9f70805bc81c74c990137123344a80ea23ab9504a99492907f8",
"md5": "94a4131c195f36e5049cb4ed250f876a",
"sha256": "d9018153cf57fc302a2a34cb7564870b859ed9a732d16b41a9b5cb2ebed2d444"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "94a4131c195f36e5049cb4ed250f876a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 264109,
"upload_time": "2024-08-28T16:20:35",
"upload_time_iso_8601": "2024-08-28T16:20:35.692795Z",
"url": "https://files.pythonhosted.org/packages/44/81/1f701323a9f70805bc81c74c990137123344a80ea23ab9504a99492907f8/watchfiles-0.24.0-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b40b32cde5bc2ebd9f351be326837c61bdeb05ad652b793f25c91cac0b48a60b",
"md5": "c244e8f39674e44f031f19d341278693",
"sha256": "551ec3ee2a3ac9cbcf48a4ec76e42c2ef938a7e905a35b42a1267fa4b1645896"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "c244e8f39674e44f031f19d341278693",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 277055,
"upload_time": "2024-08-28T16:20:36",
"upload_time_iso_8601": "2024-08-28T16:20:36.849832Z",
"url": "https://files.pythonhosted.org/packages/b4/0b/32cde5bc2ebd9f351be326837c61bdeb05ad652b793f25c91cac0b48a60b/watchfiles-0.24.0-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b81daade76ce33d21dbec7a15afd7479de8db786e5f7b7d249263b4ea174e08",
"md5": "7a3dc20c1add2a401d8f522cfcac1d00",
"sha256": "b52a65e4ea43c6d149c5f8ddb0bef8d4a1e779b77591a458a893eb416624a418"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp312-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "7a3dc20c1add2a401d8f522cfcac1d00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 266169,
"upload_time": "2024-08-28T16:20:38",
"upload_time_iso_8601": "2024-08-28T16:20:38.149944Z",
"url": "https://files.pythonhosted.org/packages/4b/81/daade76ce33d21dbec7a15afd7479de8db786e5f7b7d249263b4ea174e08/watchfiles-0.24.0-cp312-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30dc6e9f5447ae14f645532468a84323a942996d74d5e817837a5c8ce9d16c69",
"md5": "3f34bec5dc3913071798e528f0765bc5",
"sha256": "3d2e3ab79a1771c530233cadfd277fcc762656d50836c77abb2e5e72b88e3a48"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3f34bec5dc3913071798e528f0765bc5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 373764,
"upload_time": "2024-08-28T16:20:39",
"upload_time_iso_8601": "2024-08-28T16:20:39.263471Z",
"url": "https://files.pythonhosted.org/packages/30/dc/6e9f5447ae14f645532468a84323a942996d74d5e817837a5c8ce9d16c69/watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79c0c3a9929c372816c7fc87d8149bd722608ea58dc0986d3ef7564c79ad7112",
"md5": "caac271471258d6969f616d4bac79125",
"sha256": "327763da824817b38ad125dcd97595f942d720d32d879f6c4ddf843e3da3fe90"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "caac271471258d6969f616d4bac79125",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 367873,
"upload_time": "2024-08-28T16:20:40",
"upload_time_iso_8601": "2024-08-28T16:20:40.399460Z",
"url": "https://files.pythonhosted.org/packages/79/c0/c3a9929c372816c7fc87d8149bd722608ea58dc0986d3ef7564c79ad7112/watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e11ff9a4445a7cfc1c98caf99042df38964af12eed47d496dd5d0d90417349f",
"md5": "b041893a5ee05692e79af648b8d4ac93",
"sha256": "bd82010f8ab451dabe36054a1622870166a67cf3fce894f68895db6f74bbdc94"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b041893a5ee05692e79af648b8d4ac93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 438381,
"upload_time": "2024-08-28T16:20:41",
"upload_time_iso_8601": "2024-08-28T16:20:41.371770Z",
"url": "https://files.pythonhosted.org/packages/2e/11/ff9a4445a7cfc1c98caf99042df38964af12eed47d496dd5d0d90417349f/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48a3763ba18c98211d7bb6c0f417b2d7946d346cdc359d585cc28a17b48e964b",
"md5": "407cdb6480cb0a0331beac3a61818fb1",
"sha256": "d64ba08db72e5dfd5c33be1e1e687d5e4fcce09219e8aee893a4862034081d4e"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "407cdb6480cb0a0331beac3a61818fb1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 432809,
"upload_time": "2024-08-28T16:20:42",
"upload_time_iso_8601": "2024-08-28T16:20:42.504184Z",
"url": "https://files.pythonhosted.org/packages/48/a3/763ba18c98211d7bb6c0f417b2d7946d346cdc359d585cc28a17b48e964b/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "304c616c111b9d40eea2547489abaf4ffc84511e86888a166d3a4522c2ba44b5",
"md5": "f543d5f3d4277ab42bc77f78c9eaf2fa",
"sha256": "1cf1f6dd7825053f3d98f6d33f6464ebdd9ee95acd74ba2c34e183086900a827"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f543d5f3d4277ab42bc77f78c9eaf2fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 451801,
"upload_time": "2024-08-28T16:20:43",
"upload_time_iso_8601": "2024-08-28T16:20:43.696950Z",
"url": "https://files.pythonhosted.org/packages/30/4c/616c111b9d40eea2547489abaf4ffc84511e86888a166d3a4522c2ba44b5/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6bed7da83307863a422abbfeb12903a76e43200c90ebe5d6afd6a59d158edea",
"md5": "2c32f747a552d3ff7b26da57ebdad1b6",
"sha256": "43e3e37c15a8b6fe00c1bce2473cfa8eb3484bbeecf3aefbf259227e487a03df"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2c32f747a552d3ff7b26da57ebdad1b6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 468886,
"upload_time": "2024-08-28T16:20:44",
"upload_time_iso_8601": "2024-08-28T16:20:44.847011Z",
"url": "https://files.pythonhosted.org/packages/b6/be/d7da83307863a422abbfeb12903a76e43200c90ebe5d6afd6a59d158edea/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dd33dfe131ee59d5e90b932cf56aba5c996309d94dafe3d02d204364c23461c",
"md5": "d5cc8c802e30a1193d0bd57244aefd61",
"sha256": "88bcd4d0fe1d8ff43675360a72def210ebad3f3f72cabfeac08d825d2639b4ab"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d5cc8c802e30a1193d0bd57244aefd61",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 472973,
"upload_time": "2024-08-28T16:20:45",
"upload_time_iso_8601": "2024-08-28T16:20:45.991718Z",
"url": "https://files.pythonhosted.org/packages/1d/d3/3dfe131ee59d5e90b932cf56aba5c996309d94dafe3d02d204364c23461c/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "426c279288cc5653a289290d183b60a6d80e05f439d5bfdfaf2d113738d0f932",
"md5": "3e8d79734b722e7e1108f6fc70221b0f",
"sha256": "999928c6434372fde16c8f27143d3e97201160b48a614071261701615a2a156f"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3e8d79734b722e7e1108f6fc70221b0f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 425282,
"upload_time": "2024-08-28T16:20:47",
"upload_time_iso_8601": "2024-08-28T16:20:47.579708Z",
"url": "https://files.pythonhosted.org/packages/42/6c/279288cc5653a289290d183b60a6d80e05f439d5bfdfaf2d113738d0f932/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6d758afe5e85217e845edf26d8780c2d2d2ae77675eeb8d1b8b8121d799ce52",
"md5": "0429abea8700d4c612943ff5a83eadc2",
"sha256": "30bbd525c3262fd9f4b1865cb8d88e21161366561cd7c9e1194819e0a33ea86b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0429abea8700d4c612943ff5a83eadc2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 612540,
"upload_time": "2024-08-28T16:20:48",
"upload_time_iso_8601": "2024-08-28T16:20:48.915356Z",
"url": "https://files.pythonhosted.org/packages/d6/d7/58afe5e85217e845edf26d8780c2d2d2ae77675eeb8d1b8b8121d799ce52/watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6dd5b96eeb9fe3fda137200dd2f31553670cbc731b1e13164fd69b49870b76ec",
"md5": "60995c813cf33b5f911f79e539f4a122",
"sha256": "edf71b01dec9f766fb285b73930f95f730bb0943500ba0566ae234b5c1618c18"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "60995c813cf33b5f911f79e539f4a122",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 593625,
"upload_time": "2024-08-28T16:20:50",
"upload_time_iso_8601": "2024-08-28T16:20:50.543701Z",
"url": "https://files.pythonhosted.org/packages/6d/d5/b96eeb9fe3fda137200dd2f31553670cbc731b1e13164fd69b49870b76ec/watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1e5c326fe52ee0054107267608d8cea275e80be4455b6079491dfd9da29f46f",
"md5": "0a94a8661e25fec2a939e2e163f06d96",
"sha256": "f4c96283fca3ee09fb044f02156d9570d156698bc3734252175a38f0e8975f07"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-none-win32.whl",
"has_sig": false,
"md5_digest": "0a94a8661e25fec2a939e2e163f06d96",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 263899,
"upload_time": "2024-08-28T16:20:51",
"upload_time_iso_8601": "2024-08-28T16:20:51.759506Z",
"url": "https://files.pythonhosted.org/packages/c1/e5/c326fe52ee0054107267608d8cea275e80be4455b6079491dfd9da29f46f/watchfiles-0.24.0-cp313-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a68b8a7755c5e7221bb35fe4af2dc44db9174f90ebf0344fd5e9b1e8b42d381e",
"md5": "f7d1d5a11787b7e14e3382eaa36a5b70",
"sha256": "a974231b4fdd1bb7f62064a0565a6b107d27d21d9acb50c484d2cdba515b9366"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "f7d1d5a11787b7e14e3382eaa36a5b70",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 276622,
"upload_time": "2024-08-28T16:20:52",
"upload_time_iso_8601": "2024-08-28T16:20:52.820133Z",
"url": "https://files.pythonhosted.org/packages/a6/8b/8a7755c5e7221bb35fe4af2dc44db9174f90ebf0344fd5e9b1e8b42d381e/watchfiles-0.24.0-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "171cc0b5f4347011b60e2dbde671a5050944f3aaf0eb2ffc0fb5c7adf2516229",
"md5": "1ca0be755fd4ddd9887d88dd6fa0e220",
"sha256": "ee82c98bed9d97cd2f53bdb035e619309a098ea53ce525833e26b93f673bc318"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1ca0be755fd4ddd9887d88dd6fa0e220",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 375982,
"upload_time": "2024-08-28T16:20:53",
"upload_time_iso_8601": "2024-08-28T16:20:53.905532Z",
"url": "https://files.pythonhosted.org/packages/17/1c/c0b5f4347011b60e2dbde671a5050944f3aaf0eb2ffc0fb5c7adf2516229/watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5b2d417b982be5ace395f1aad32cd8e0dcf194e431dfbfeee88941b6da6735a",
"md5": "4fe805e3db7b3bd979c755f26999b850",
"sha256": "fd92bbaa2ecdb7864b7600dcdb6f2f1db6e0346ed425fbd01085be04c63f0b05"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4fe805e3db7b3bd979c755f26999b850",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 369757,
"upload_time": "2024-08-28T16:20:54",
"upload_time_iso_8601": "2024-08-28T16:20:54.964530Z",
"url": "https://files.pythonhosted.org/packages/c5/b2/d417b982be5ace395f1aad32cd8e0dcf194e431dfbfeee88941b6da6735a/watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6827f3a1147af79085da95a879d7e6f953380da17a90b50d990749ae287550ca",
"md5": "c94b251a0a9bd7bd2f50fec5c9e13ffc",
"sha256": "f83df90191d67af5a831da3a33dd7628b02a95450e168785586ed51e6d28943c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c94b251a0a9bd7bd2f50fec5c9e13ffc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 439397,
"upload_time": "2024-08-28T16:20:56",
"upload_time_iso_8601": "2024-08-28T16:20:56.676008Z",
"url": "https://files.pythonhosted.org/packages/68/27/f3a1147af79085da95a879d7e6f953380da17a90b50d990749ae287550ca/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31de4a677766880efee555cc56a4c6bf6993a7748901243cd2511419acc37a6c",
"md5": "857c32c01faf93d01aa50d59e9785419",
"sha256": "fca9433a45f18b7c779d2bae7beeec4f740d28b788b117a48368d95a3233ed83"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "857c32c01faf93d01aa50d59e9785419",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 433878,
"upload_time": "2024-08-28T16:20:58",
"upload_time_iso_8601": "2024-08-28T16:20:58.053304Z",
"url": "https://files.pythonhosted.org/packages/31/de/4a677766880efee555cc56a4c6bf6993a7748901243cd2511419acc37a6c/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f47f30fbf661dea01cf3d5ab4962ee4b52854b9fbbd7fe4918bc60c212bb5b60",
"md5": "0d83b181c150bcb4b9f67cbbcc6b913e",
"sha256": "b995bfa6bf01a9e09b884077a6d37070464b529d8682d7691c2d3b540d357a0c"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0d83b181c150bcb4b9f67cbbcc6b913e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 451495,
"upload_time": "2024-08-28T16:20:59",
"upload_time_iso_8601": "2024-08-28T16:20:59.892168Z",
"url": "https://files.pythonhosted.org/packages/f4/7f/30fbf661dea01cf3d5ab4962ee4b52854b9fbbd7fe4918bc60c212bb5b60/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c865cda4b9ed13087d57f78ed386c4bdc2369c114dd871a32fa6e2419f6e81b8",
"md5": "24cfc24a1d3a5091f3c38f3f304c6b29",
"sha256": "ed9aba6e01ff6f2e8285e5aa4154e2970068fe0fc0998c4380d0e6278222269b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "24cfc24a1d3a5091f3c38f3f304c6b29",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 470115,
"upload_time": "2024-08-28T16:21:01",
"upload_time_iso_8601": "2024-08-28T16:21:01.647865Z",
"url": "https://files.pythonhosted.org/packages/c8/65/cda4b9ed13087d57f78ed386c4bdc2369c114dd871a32fa6e2419f6e81b8/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c729b2ba3bb3a7233fb3d21900cd3f9005cfaa53884f496239541ec885b9861",
"md5": "f9e51725d2c15ce09e7069dd17923715",
"sha256": "e5171ef898299c657685306d8e1478a45e9303ddcd8ac5fed5bd52ad4ae0b69b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f9e51725d2c15ce09e7069dd17923715",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 476814,
"upload_time": "2024-08-28T16:21:03",
"upload_time_iso_8601": "2024-08-28T16:21:03.114632Z",
"url": "https://files.pythonhosted.org/packages/4c/72/9b2ba3bb3a7233fb3d21900cd3f9005cfaa53884f496239541ec885b9861/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d7890a881916a4a3bafd5e82202d51406444d3720cfc03b326427a8e455d89d",
"md5": "ea091af8aaa210679cddacf7bdb2f08c",
"sha256": "4933a508d2f78099162da473841c652ad0de892719043d3f07cc83b33dfd9d91"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ea091af8aaa210679cddacf7bdb2f08c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 426747,
"upload_time": "2024-08-28T16:21:04",
"upload_time_iso_8601": "2024-08-28T16:21:04.424460Z",
"url": "https://files.pythonhosted.org/packages/3d/78/90a881916a4a3bafd5e82202d51406444d3720cfc03b326427a8e455d89d/watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56525a2c6e0694013a53f596d4a66642de48dc1a53a635ad61bc6504abf5c87c",
"md5": "61cae344bd097409a6eb9272ece2cc01",
"sha256": "95cf3b95ea665ab03f5a54765fa41abf0529dbaf372c3b83d91ad2cfa695779b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "61cae344bd097409a6eb9272ece2cc01",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 613135,
"upload_time": "2024-08-28T16:21:05",
"upload_time_iso_8601": "2024-08-28T16:21:05.576482Z",
"url": "https://files.pythonhosted.org/packages/56/52/5a2c6e0694013a53f596d4a66642de48dc1a53a635ad61bc6504abf5c87c/watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcdc8f177e6074e756d961d5dcb5ef65528b02ab09028d0380db4579a30af78f",
"md5": "29ff40bdc08f94715ebf2b1fa75d1383",
"sha256": "01def80eb62bd5db99a798d5e1f5f940ca0a05986dcfae21d833af7a46f7ee22"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "29ff40bdc08f94715ebf2b1fa75d1383",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 596318,
"upload_time": "2024-08-28T16:21:07",
"upload_time_iso_8601": "2024-08-28T16:21:07.128741Z",
"url": "https://files.pythonhosted.org/packages/fc/dc/8f177e6074e756d961d5dcb5ef65528b02ab09028d0380db4579a30af78f/watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e616d89e06188ed6672dc69eeef7af2ea158328bd59d45032a94daaaed2a6516",
"md5": "ce0f5fa183bc62739a5c7ddac6c76467",
"sha256": "4d28cea3c976499475f5b7a2fec6b3a36208656963c1a856d328aeae056fc5c1"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "ce0f5fa183bc62739a5c7ddac6c76467",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 264384,
"upload_time": "2024-08-28T16:21:08",
"upload_time_iso_8601": "2024-08-28T16:21:08.530696Z",
"url": "https://files.pythonhosted.org/packages/e6/16/d89e06188ed6672dc69eeef7af2ea158328bd59d45032a94daaaed2a6516/watchfiles-0.24.0-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6cc2f2f27fc403193bedaaae5485cd04fd31064f5cdec885162bd0e390be68a",
"md5": "1b3deab9ae888430ab7c651b7348d39b",
"sha256": "21ab23fdc1208086d99ad3f69c231ba265628014d4aed31d4e8746bd59e88cd1"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "1b3deab9ae888430ab7c651b7348d39b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 277740,
"upload_time": "2024-08-28T16:21:09",
"upload_time_iso_8601": "2024-08-28T16:21:09.597840Z",
"url": "https://files.pythonhosted.org/packages/e6/cc/2f2f27fc403193bedaaae5485cd04fd31064f5cdec885162bd0e390be68a/watchfiles-0.24.0-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "939015b3b1cc19799c217e4369ca15dbf9ba1d0f821d61b27173a54800002478",
"md5": "13e91ee7a093a0fde5a99404b1d805ae",
"sha256": "b665caeeda58625c3946ad7308fbd88a086ee51ccb706307e5b1fa91556ac886"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "13e91ee7a093a0fde5a99404b1d805ae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 375920,
"upload_time": "2024-08-28T16:21:10",
"upload_time_iso_8601": "2024-08-28T16:21:10.670344Z",
"url": "https://files.pythonhosted.org/packages/93/90/15b3b1cc19799c217e4369ca15dbf9ba1d0f821d61b27173a54800002478/watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74e2ec7766a5b20ba5e37397ef8d32ff39a90daf7e4677410efe077c386338b6",
"md5": "0d60beaa0cdcdf0beb7d592a80f614e4",
"sha256": "5c51749f3e4e269231510da426ce4a44beb98db2dce9097225c338f815b05d4f"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0d60beaa0cdcdf0beb7d592a80f614e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 369382,
"upload_time": "2024-08-28T16:21:11",
"upload_time_iso_8601": "2024-08-28T16:21:11.747941Z",
"url": "https://files.pythonhosted.org/packages/74/e2/ec7766a5b20ba5e37397ef8d32ff39a90daf7e4677410efe077c386338b6/watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a282915b3a3295292f860181dc9c7d922834ac7265c8915052d396d40ccf4617",
"md5": "379c99f2629f05ad563a92d23f3d07a7",
"sha256": "82b2509f08761f29a0fdad35f7e1638b8ab1adfa2666d41b794090361fb8b855"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "379c99f2629f05ad563a92d23f3d07a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 438556,
"upload_time": "2024-08-28T16:21:12",
"upload_time_iso_8601": "2024-08-28T16:21:12.900577Z",
"url": "https://files.pythonhosted.org/packages/a2/82/915b3a3295292f860181dc9c7d922834ac7265c8915052d396d40ccf4617/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b76750eab8e7baecedca05e712b9571ac5eb240e494e8d4c78b359da2939619",
"md5": "0b65c7aa58555063a9f672c455963616",
"sha256": "9a60e2bf9dc6afe7f743e7c9b149d1fdd6dbf35153c78fe3a14ae1a9aee3d98b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0b65c7aa58555063a9f672c455963616",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 433677,
"upload_time": "2024-08-28T16:21:14",
"upload_time_iso_8601": "2024-08-28T16:21:14.079602Z",
"url": "https://files.pythonhosted.org/packages/9b/76/750eab8e7baecedca05e712b9571ac5eb240e494e8d4c78b359da2939619/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a697c55142bafcdad9fec58433b7c1f162b59c48f0a3732a9441252147b13c7",
"md5": "6d6c49123ed8d08ebf856bdba1b5af55",
"sha256": "f7d9b87c4c55e3ea8881dfcbf6d61ea6775fffed1fedffaa60bd047d3c08c430"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6d6c49123ed8d08ebf856bdba1b5af55",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 451845,
"upload_time": "2024-08-28T16:21:15",
"upload_time_iso_8601": "2024-08-28T16:21:15.807456Z",
"url": "https://files.pythonhosted.org/packages/1a/69/7c55142bafcdad9fec58433b7c1f162b59c48f0a3732a9441252147b13c7/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7a6124b0043a8936adf96fffa1d73217b205cc254b4a5a313b0a6ea33a44b7b",
"md5": "0cffb9dca1611dab8925bbb04a5dcbb8",
"sha256": "78470906a6be5199524641f538bd2c56bb809cd4bf29a566a75051610bc982c3"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0cffb9dca1611dab8925bbb04a5dcbb8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 469931,
"upload_time": "2024-08-28T16:21:17",
"upload_time_iso_8601": "2024-08-28T16:21:17.003408Z",
"url": "https://files.pythonhosted.org/packages/d7/a6/124b0043a8936adf96fffa1d73217b205cc254b4a5a313b0a6ea33a44b7b/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a1429ffa6c7a695fb46a7ff835a5524976dbc07577215647fb35a61ea099c75",
"md5": "238e295ed4e691c43933722f77937739",
"sha256": "07cdef0c84c03375f4e24642ef8d8178e533596b229d32d2bbd69e5128ede02a"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "238e295ed4e691c43933722f77937739",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 476577,
"upload_time": "2024-08-28T16:21:18",
"upload_time_iso_8601": "2024-08-28T16:21:18.195911Z",
"url": "https://files.pythonhosted.org/packages/7a/14/29ffa6c7a695fb46a7ff835a5524976dbc07577215647fb35a61ea099c75/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d8bfea47dd852c644bd933108877293d0a1c56953c584e8b971530a9042c153",
"md5": "1f092bb130036d708f454addabe9fb12",
"sha256": "d337193bbf3e45171c8025e291530fb7548a93c45253897cd764a6a71c937ed9"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1f092bb130036d708f454addabe9fb12",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 426432,
"upload_time": "2024-08-28T16:21:19",
"upload_time_iso_8601": "2024-08-28T16:21:19.349718Z",
"url": "https://files.pythonhosted.org/packages/9d/8b/fea47dd852c644bd933108877293d0a1c56953c584e8b971530a9042c153/watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e11cfa073f1d9fa18867c2b4220ba445044fd48101ac481f8cbfea1c208ea88",
"md5": "7970136d8e08ede88cf754e647be75a6",
"sha256": "ec39698c45b11d9694a1b635a70946a5bad066b593af863460a8e600f0dff1ca"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7970136d8e08ede88cf754e647be75a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 613173,
"upload_time": "2024-08-28T16:21:20",
"upload_time_iso_8601": "2024-08-28T16:21:20.626315Z",
"url": "https://files.pythonhosted.org/packages/0e/11/cfa073f1d9fa18867c2b4220ba445044fd48101ac481f8cbfea1c208ea88/watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "774405c8959304f96fbcd68b6c131c59df7bd3d7f0c2a7410324b7f63b1f9fe6",
"md5": "7488f5c0ef7661cba4ccccf2ea67ac61",
"sha256": "2e28d91ef48eab0afb939fa446d8ebe77e2f7593f5f463fd2bb2b14132f95b6e"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7488f5c0ef7661cba4ccccf2ea67ac61",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 596184,
"upload_time": "2024-08-28T16:21:21",
"upload_time_iso_8601": "2024-08-28T16:21:21.840469Z",
"url": "https://files.pythonhosted.org/packages/77/44/05c8959304f96fbcd68b6c131c59df7bd3d7f0c2a7410324b7f63b1f9fe6/watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b85033ecdb5eccb77770d6f24f9fa055067ffa962313a1383645afc711a3cd8",
"md5": "19c49e383e1982c5eab240857ff091c0",
"sha256": "7138eff8baa883aeaa074359daabb8b6c1e73ffe69d5accdc907d62e50b1c0da"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "19c49e383e1982c5eab240857ff091c0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 264345,
"upload_time": "2024-08-28T16:21:23",
"upload_time_iso_8601": "2024-08-28T16:21:23.743088Z",
"url": "https://files.pythonhosted.org/packages/9b/85/033ecdb5eccb77770d6f24f9fa055067ffa962313a1383645afc711a3cd8/watchfiles-0.24.0-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "166e5ded97365346eceaf7fa32d4e2d16f4f97b11d648026b2903c2528c544f8",
"md5": "285913de13f98f3753a0c1414ca955a7",
"sha256": "b3ef2c69c655db63deb96b3c3e587084612f9b1fa983df5e0c3379d41307467f"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "285913de13f98f3753a0c1414ca955a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 277760,
"upload_time": "2024-08-28T16:21:25",
"upload_time_iso_8601": "2024-08-28T16:21:25.578682Z",
"url": "https://files.pythonhosted.org/packages/16/6e/5ded97365346eceaf7fa32d4e2d16f4f97b11d648026b2903c2528c544f8/watchfiles-0.24.0-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df941ad200e937ec91b2a9d6b39ae1cf9c2b1a9cc88d5ceb43aa5c6962eb3c11",
"md5": "30394d79d5c6f8ed0709edfe35ce14ae",
"sha256": "632676574429bee8c26be8af52af20e0c718cc7f5f67f3fb658c71928ccd4f7f"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "30394d79d5c6f8ed0709edfe35ce14ae",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 376986,
"upload_time": "2024-08-28T16:21:26",
"upload_time_iso_8601": "2024-08-28T16:21:26.895202Z",
"url": "https://files.pythonhosted.org/packages/df/94/1ad200e937ec91b2a9d6b39ae1cf9c2b1a9cc88d5ceb43aa5c6962eb3c11/watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eefdd9e020d687ccf90fe95efc513fbb39a8049cf5a3ff51f53c59fcf4c47a5d",
"md5": "b03e39cdf9aa181da31afa42fbb2bef9",
"sha256": "a2a9891723a735d3e2540651184be6fd5b96880c08ffe1a98bae5017e65b544b"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b03e39cdf9aa181da31afa42fbb2bef9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 369445,
"upload_time": "2024-08-28T16:21:28",
"upload_time_iso_8601": "2024-08-28T16:21:28.157699Z",
"url": "https://files.pythonhosted.org/packages/ee/fd/d9e020d687ccf90fe95efc513fbb39a8049cf5a3ff51f53c59fcf4c47a5d/watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43cbc0279b35053555d10ef03559c5aebfcb0c703d9c70a7b4e532df74b9b0e8",
"md5": "20e7b758644e56a60c9216c8f980c9cd",
"sha256": "4a7fa2bc0efef3e209a8199fd111b8969fe9db9c711acc46636686331eda7dd4"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "20e7b758644e56a60c9216c8f980c9cd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 439383,
"upload_time": "2024-08-28T16:21:29",
"upload_time_iso_8601": "2024-08-28T16:21:29.515357Z",
"url": "https://files.pythonhosted.org/packages/43/cb/c0279b35053555d10ef03559c5aebfcb0c703d9c70a7b4e532df74b9b0e8/watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8bc408b3c2cda45db5169148a981c2100c744a4a222fa7ae7644937c0c002069",
"md5": "f301962b54b7a91858c43ad14bd628db",
"sha256": "01550ccf1d0aed6ea375ef259706af76ad009ef5b0203a3a4cce0f6024f9b68a"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f301962b54b7a91858c43ad14bd628db",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 426804,
"upload_time": "2024-08-28T16:21:30",
"upload_time_iso_8601": "2024-08-28T16:21:30.687970Z",
"url": "https://files.pythonhosted.org/packages/8b/c4/08b3c2cda45db5169148a981c2100c744a4a222fa7ae7644937c0c002069/watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02819c9a1e6a83d3c320d2f89eca2b71854ae727eca8ab298ad5da00e36c69e2",
"md5": "afffec26951cf13b95e4ba64224dea4e",
"sha256": "96619302d4374de5e2345b2b622dc481257a99431277662c30f606f3e22f42be"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "afffec26951cf13b95e4ba64224dea4e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 377076,
"upload_time": "2024-08-28T16:21:32",
"upload_time_iso_8601": "2024-08-28T16:21:32.090911Z",
"url": "https://files.pythonhosted.org/packages/02/81/9c9a1e6a83d3c320d2f89eca2b71854ae727eca8ab298ad5da00e36c69e2/watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1059ef4158f15c417a420d907a6eb887c81953565d0268262195766a844a6d9",
"md5": "7b91665f96a81249049830d7ded832b7",
"sha256": "85d5f0c7771dcc7a26c7a27145059b6bb0ce06e4e751ed76cdf123d7039b60b5"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7b91665f96a81249049830d7ded832b7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 371717,
"upload_time": "2024-08-28T16:21:33",
"upload_time_iso_8601": "2024-08-28T16:21:33.677856Z",
"url": "https://files.pythonhosted.org/packages/f1/05/9ef4158f15c417a420d907a6eb887c81953565d0268262195766a844a6d9/watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "811b8d036da7a9e4d490385b6979804229fb7ac9b591e4d84f159edf2b3f7cc2",
"md5": "18e64c6d92f04755bd5aeab9965d2f3d",
"sha256": "951088d12d339690a92cef2ec5d3cfd957692834c72ffd570ea76a6790222777"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "18e64c6d92f04755bd5aeab9965d2f3d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 440973,
"upload_time": "2024-08-28T16:21:34",
"upload_time_iso_8601": "2024-08-28T16:21:34.885514Z",
"url": "https://files.pythonhosted.org/packages/81/1b/8d036da7a9e4d490385b6979804229fb7ac9b591e4d84f159edf2b3f7cc2/watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbfc885015d4a17ada85508e406c10d638808e7bfbb5622a2e342c868ede18c0",
"md5": "fe2b9f728018e0d7069bd54b1ed6efec",
"sha256": "49fb58bcaa343fedc6a9e91f90195b20ccb3135447dc9e4e2570c3a39565853e"
},
"downloads": -1,
"filename": "watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fe2b9f728018e0d7069bd54b1ed6efec",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 428343,
"upload_time": "2024-08-28T16:21:36",
"upload_time_iso_8601": "2024-08-28T16:21:36.140165Z",
"url": "https://files.pythonhosted.org/packages/fb/fc/885015d4a17ada85508e406c10d638808e7bfbb5622a2e342c868ede18c0/watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8272ba23c8cc85796e2d41976439b08d52f691655fdb9401362099502d1f0cf",
"md5": "0c5d177e411a5f50ab4160a676dc1528",
"sha256": "afb72325b74fa7a428c009c1b8be4b4d7c2afedafb2982827ef2156646df2fe1"
},
"downloads": -1,
"filename": "watchfiles-0.24.0.tar.gz",
"has_sig": false,
"md5_digest": "0c5d177e411a5f50ab4160a676dc1528",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 37870,
"upload_time": "2024-08-28T16:21:37",
"upload_time_iso_8601": "2024-08-28T16:21:37.420300Z",
"url": "https://files.pythonhosted.org/packages/c8/27/2ba23c8cc85796e2d41976439b08d52f691655fdb9401362099502d1f0cf/watchfiles-0.24.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-28 16:21:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "samuelcolvin",
"github_project": "watchfiles",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "watchfiles"
}