avdeepfake1m


Nameavdeepfake1m JSON
Version 0.0.0 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-10-12 16:14:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords pytorch ai
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AV-Deepfake1M

<div align="center">
    <img src="assets/teaser.png">
    <p></p>
</div>

<div align="center">
    <a href="https://github.com/ControlNet/AV-Deepfake1M/issues">
        <img src="https://img.shields.io/github/issues/ControlNet/AV-Deepfake1M?style=flat-square">
    </a>
    <a href="https://github.com/ControlNet/AV-Deepfake1M/network/members">
        <img src="https://img.shields.io/github/forks/ControlNet/AV-Deepfake1M?style=flat-square">
    </a>
    <a href="https://github.com/ControlNet/AV-Deepfake1M/stargazers">
        <img src="https://img.shields.io/github/stars/ControlNet/AV-Deepfake1M?style=flat-square">
    </a>
    <a href="https://github.com/ControlNet/AV-Deepfake1M/blob/master/LICENSE">
        <img src="https://img.shields.io/badge/license-CC%20BY--NC%204.0-97ca00?style=flat-square">
    </a>
    <a href="https://arxiv.org/abs/2311.15308">
        <img src="https://img.shields.io/badge/arXiv-2311.15308-b31b1b.svg?style=flat-square">
    </a>
</div>

This is the official repository for the paper 
[AV-Deepfake1M: A Large-Scale LLM-Driven Audio-Visual Deepfake Dataset](http://arxiv.org/abs/2311.15308).

## Abstract
The detection and localization of highly realistic deepfake audio-visual content are challenging even for the most 
advanced state-of-the-art methods. While most of the research efforts in this domain are focused on detecting 
high-quality deepfake images and videos, only a few works address the problem of the localization of small segments of 
audio-visual manipulations embedded in real videos. In this research, we emulate the process of such content generation 
and propose the AV-Deepfake1M dataset. The dataset contains content-driven (i) video manipulations, 
(ii) audio manipulations, and (iii) audio-visual manipulations for more than 2K subjects resulting in a total of more 
than 1M videos. The paper provides a thorough description of the proposed data generation pipeline accompanied by a 
rigorous analysis of the quality of the generated data. The comprehensive benchmark of the proposed dataset utilizing 
state-of-the-art deepfake detection and localization methods indicates a significant drop in performance compared to 
previous datasets. The proposed dataset will play a vital role in building the next-generation deepfake localization 
methods.

## Dataset

### Download

We're hosting [1M-Deepfakes Detection Challenge](https://deepfakes1m.github.io/) at ACM MM 2024.

### Baseline Benchmark

| Method                     | AP@0.5 | AP@0.75 | AP@0.9 | AP@0.95 | AR@50 | AR@20 | AR@10 | AR@5  |
|----------------------------|--------|---------|--------|---------|-------|-------|-------|-------|
| PyAnnote                   | 00.03  | 00.00   | 00.00  | 00.00   | 00.67 | 00.67 | 00.67 | 00.67 |
| Meso4                      | 09.86  | 06.05   | 02.22  | 00.59   | 38.92 | 38.81 | 36.47 | 26.91 |
| MesoInception4             | 08.50  | 05.16   | 01.89  | 00.50   | 39.27 | 39.00 | 35.78 | 24.59 |
| EfficientViT               | 14.71  | 02.42   | 00.13  | 00.01   | 27.04 | 26.43 | 23.90 | 20.31 |
| TriDet + VideoMAEv2        | 21.67  | 05.83   | 00.54  | 00.06   | 20.27 | 20.12 | 19.50 | 18.18 |
| TriDet + InternVideo       | 29.66  | 09.02   | 00.79  | 00.09   | 24.08 | 23.96 | 23.50 | 22.55 |
| ActionFormer + VideoMAEv2  | 20.24  | 05.73   | 00.57  | 00.07   | 19.97 | 19.81 | 19.11 | 17.80 |
| ActionFormer + InternVideo | 36.08  | 12.01   | 01.23  | 00.16   | 27.11 | 27.00 | 26.60 | 25.80 |
| BA-TFD                     | 37.37  | 06.34   | 00.19  | 00.02   | 45.55 | 35.95 | 30.66 | 26.82 |
| BA-TFD+                    | 44.42  | 13.64   | 00.48  | 00.03   | 48.86 | 40.37 | 34.67 | 29.88 |
| UMMAFormer                 | 51.64  | 28.07   | 07.65  | 01.58   | 44.07 | 43.45 | 42.09 | 40.27 |


### Metadata Structure

The metadata is a json file for each subset (train, val), which is a list of dictionaries. The fields in the dictionary are as follows.
- file: the path to the video file.
- original: if the current video is fake, the path to the original video; otherwise, the original path in VoxCeleb2.
- split: the name of the current subset.
- modify_type: the type of modifications in different modalities, which can be ["real", "visual_modified", "audio_modified", "both_modified"]. We evaluate the deepfake detection performance based on this field.
- audio_model: the audio generation model used for generating this video.
- fake_segments: the timestamps of the fake segments. We evaluate the temporal localization performance based on this field.
- audio_fake_segments: the timestamps of the fake segments in audio modality.
- visual_fake_segments: the timestamps of the fake segments in visual modality.
- video_frames: the number of frames in the video.
- audio_frames: the number of frames in the audio.

## SDK

We provide a Python library `avdeepfake1m` to load the dataset and evaluation.

### Installation

```bash
pip install avdeepfake1m
```

### Usage

Prepare the dataset as follows.

```
|- train_metadata.json
|- train_metadata
|  |- ...
|- train
|  |- ...
|- val_metadata.json
|- val_metadata
|  |- ...
|- val
|  |- ...
|- test_files.txt
|- test
```

Load the dataset.

```python
from avdeepfake1m.loader import AVDeepfake1mDataModule

# access to Lightning DataModule
dm = AVDeepfake1mDataModule("/path/to/dataset")
```

Evaluate the predictions. Firstly prepare the predictions as described in the [details](https://deepfakes1m.github.io/details). Then run the following code.

```python
from avdeepfake1m.evaluation import ap_ar_1d, auc
print(ap_ar_1d("<PREDICTION_JSON>", "<METADATA_JSON>", "file", "fake_segments", 1, [0.5, 0.75, 0.9, 0.95], [50, 30, 20, 10, 5], [0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95]))
print(auc("<PREDICTION_TXT>", "<METADATA_JSON>"))
```

## License

The dataset is under the [EULA](eula.pdf). You need to agree and sign the EULA to access the dataset.

The other parts of this project is under the CC BY-NC 4.0 license. See [LICENSE](LICENSE) for details.

## References

If you find this work useful in your research, please cite it.

```bibtex
@article{cai2023avdeepfake1m,
  title = {AV-Deepfake1M: A Large-Scale LLM-Driven Audio-Visual Deepfake Dataset},
  action = {Cai, Zhixi and Ghosh, Shreya and Adatia, Aman Pankaj and Hayat, Munawar and Dhall, Abhinav and Stefanov, Kalin},
  journal = {arXiv preprint arXiv:2311.15308},
  year = {2023},
}
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "avdeepfake1m",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "pytorch, AI",
    "author": null,
    "author_email": "ControlNet <smczx@hotmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cd/8e/7e57daebea78d05e1fe58ae1b326e73d2a9fb9a93a91d4574728365a5499/avdeepfake1m-0.0.0.tar.gz",
    "platform": null,
    "description": "# AV-Deepfake1M\n\n<div align=\"center\">\n    <img src=\"assets/teaser.png\">\n    <p></p>\n</div>\n\n<div align=\"center\">\n    <a href=\"https://github.com/ControlNet/AV-Deepfake1M/issues\">\n        <img src=\"https://img.shields.io/github/issues/ControlNet/AV-Deepfake1M?style=flat-square\">\n    </a>\n    <a href=\"https://github.com/ControlNet/AV-Deepfake1M/network/members\">\n        <img src=\"https://img.shields.io/github/forks/ControlNet/AV-Deepfake1M?style=flat-square\">\n    </a>\n    <a href=\"https://github.com/ControlNet/AV-Deepfake1M/stargazers\">\n        <img src=\"https://img.shields.io/github/stars/ControlNet/AV-Deepfake1M?style=flat-square\">\n    </a>\n    <a href=\"https://github.com/ControlNet/AV-Deepfake1M/blob/master/LICENSE\">\n        <img src=\"https://img.shields.io/badge/license-CC%20BY--NC%204.0-97ca00?style=flat-square\">\n    </a>\n    <a href=\"https://arxiv.org/abs/2311.15308\">\n        <img src=\"https://img.shields.io/badge/arXiv-2311.15308-b31b1b.svg?style=flat-square\">\n    </a>\n</div>\n\nThis is the official repository for the paper \n[AV-Deepfake1M: A Large-Scale LLM-Driven Audio-Visual Deepfake Dataset](http://arxiv.org/abs/2311.15308).\n\n## Abstract\nThe detection and localization of highly realistic deepfake audio-visual content are challenging even for the most \nadvanced state-of-the-art methods. While most of the research efforts in this domain are focused on detecting \nhigh-quality deepfake images and videos, only a few works address the problem of the localization of small segments of \naudio-visual manipulations embedded in real videos. In this research, we emulate the process of such content generation \nand propose the AV-Deepfake1M dataset. The dataset contains content-driven (i) video manipulations, \n(ii) audio manipulations, and (iii) audio-visual manipulations for more than 2K subjects resulting in a total of more \nthan 1M videos. The paper provides a thorough description of the proposed data generation pipeline accompanied by a \nrigorous analysis of the quality of the generated data. The comprehensive benchmark of the proposed dataset utilizing \nstate-of-the-art deepfake detection and localization methods indicates a significant drop in performance compared to \nprevious datasets. The proposed dataset will play a vital role in building the next-generation deepfake localization \nmethods.\n\n## Dataset\n\n### Download\n\nWe're hosting [1M-Deepfakes Detection Challenge](https://deepfakes1m.github.io/) at ACM MM 2024.\n\n### Baseline Benchmark\n\n| Method                     | AP@0.5 | AP@0.75 | AP@0.9 | AP@0.95 | AR@50 | AR@20 | AR@10 | AR@5  |\n|----------------------------|--------|---------|--------|---------|-------|-------|-------|-------|\n| PyAnnote                   | 00.03  | 00.00   | 00.00  | 00.00   | 00.67 | 00.67 | 00.67 | 00.67 |\n| Meso4                      | 09.86  | 06.05   | 02.22  | 00.59   | 38.92 | 38.81 | 36.47 | 26.91 |\n| MesoInception4             | 08.50  | 05.16   | 01.89  | 00.50   | 39.27 | 39.00 | 35.78 | 24.59 |\n| EfficientViT               | 14.71  | 02.42   | 00.13  | 00.01   | 27.04 | 26.43 | 23.90 | 20.31 |\n| TriDet + VideoMAEv2        | 21.67  | 05.83   | 00.54  | 00.06   | 20.27 | 20.12 | 19.50 | 18.18 |\n| TriDet + InternVideo       | 29.66  | 09.02   | 00.79  | 00.09   | 24.08 | 23.96 | 23.50 | 22.55 |\n| ActionFormer + VideoMAEv2  | 20.24  | 05.73   | 00.57  | 00.07   | 19.97 | 19.81 | 19.11 | 17.80 |\n| ActionFormer + InternVideo | 36.08  | 12.01   | 01.23  | 00.16   | 27.11 | 27.00 | 26.60 | 25.80 |\n| BA-TFD                     | 37.37  | 06.34   | 00.19  | 00.02   | 45.55 | 35.95 | 30.66 | 26.82 |\n| BA-TFD+                    | 44.42  | 13.64   | 00.48  | 00.03   | 48.86 | 40.37 | 34.67 | 29.88 |\n| UMMAFormer                 | 51.64  | 28.07   | 07.65  | 01.58   | 44.07 | 43.45 | 42.09 | 40.27 |\n\n\n### Metadata Structure\n\nThe metadata is a json file for each subset (train, val), which is a list of dictionaries. The fields in the dictionary are as follows.\n- file: the path to the video file.\n- original: if the current video is fake, the path to the original video; otherwise, the original path in VoxCeleb2.\n- split: the name of the current subset.\n- modify_type: the type of modifications in different modalities, which can be [\"real\", \"visual_modified\", \"audio_modified\", \"both_modified\"]. We evaluate the deepfake detection performance based on this field.\n- audio_model: the audio generation model used for generating this video.\n- fake_segments: the timestamps of the fake segments. We evaluate the temporal localization performance based on this field.\n- audio_fake_segments: the timestamps of the fake segments in audio modality.\n- visual_fake_segments: the timestamps of the fake segments in visual modality.\n- video_frames: the number of frames in the video.\n- audio_frames: the number of frames in the audio.\n\n## SDK\n\nWe provide a Python library `avdeepfake1m` to load the dataset and evaluation.\n\n### Installation\n\n```bash\npip install avdeepfake1m\n```\n\n### Usage\n\nPrepare the dataset as follows.\n\n```\n|- train_metadata.json\n|- train_metadata\n|  |- ...\n|- train\n|  |- ...\n|- val_metadata.json\n|- val_metadata\n|  |- ...\n|- val\n|  |- ...\n|- test_files.txt\n|- test\n```\n\nLoad the dataset.\n\n```python\nfrom avdeepfake1m.loader import AVDeepfake1mDataModule\n\n# access to Lightning DataModule\ndm = AVDeepfake1mDataModule(\"/path/to/dataset\")\n```\n\nEvaluate the predictions. Firstly prepare the predictions as described in the [details](https://deepfakes1m.github.io/details). Then run the following code.\n\n```python\nfrom avdeepfake1m.evaluation import ap_ar_1d, auc\nprint(ap_ar_1d(\"<PREDICTION_JSON>\", \"<METADATA_JSON>\", \"file\", \"fake_segments\", 1, [0.5, 0.75, 0.9, 0.95], [50, 30, 20, 10, 5], [0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95]))\nprint(auc(\"<PREDICTION_TXT>\", \"<METADATA_JSON>\"))\n```\n\n## License\n\nThe dataset is under the [EULA](eula.pdf). You need to agree and sign the EULA to access the dataset.\n\nThe other parts of this project is under the CC BY-NC 4.0 license. See [LICENSE](LICENSE) for details.\n\n## References\n\nIf you find this work useful in your research, please cite it.\n\n```bibtex\n@article{cai2023avdeepfake1m,\n  title = {AV-Deepfake1M: A Large-Scale LLM-Driven Audio-Visual Deepfake Dataset},\n  action = {Cai, Zhixi and Ghosh, Shreya and Adatia, Aman Pankaj and Hayat, Munawar and Dhall, Abhinav and Stefanov, Kalin},\n  journal = {arXiv preprint arXiv:2311.15308},\n  year = {2023},\n}\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "0.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/ControlNet/AV-Deepfake1M/issues",
        "Homepage": "https://github.com/ControlNet/AV-Deepfake1M",
        "Source Code": "https://github.com/ControlNet/AV-Deepfake1M"
    },
    "split_keywords": [
        "pytorch",
        " ai"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "474991aca4a14b9b138426c6deaa441f46e2d11ca58778a760de1360b170cd68",
                "md5": "f2e3946c0b3ca63009b93f335db29961",
                "sha256": "e9857c7dec8758a0d5a4a02fb53f400ab42decd03f881935924a3f75f6d2b9ad"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2e3946c0b3ca63009b93f335db29961",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 402424,
            "upload_time": "2024-10-12T16:13:47",
            "upload_time_iso_8601": "2024-10-12T16:13:47.634800Z",
            "url": "https://files.pythonhosted.org/packages/47/49/91aca4a14b9b138426c6deaa441f46e2d11ca58778a760de1360b170cd68/avdeepfake1m-0.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420c0d11cc7b5316ef1f04a5322df50c763d10e770e468dcfd3e891aa5828803",
                "md5": "cc6ba0974e227b9a30939c44964e73b9",
                "sha256": "436213f8cfa339c2e06d356fc76f86014db0f683801a81cb381a89954f9ad970"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc6ba0974e227b9a30939c44964e73b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 446881,
            "upload_time": "2024-10-12T16:12:35",
            "upload_time_iso_8601": "2024-10-12T16:12:35.127603Z",
            "url": "https://files.pythonhosted.org/packages/42/0c/0d11cc7b5316ef1f04a5322df50c763d10e770e468dcfd3e891aa5828803/avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89c60523da642d456fb2b3364394c27ce5122daf4e5cf0d4fccb8dbae6c29b67",
                "md5": "79642c9065bac111b1e59448e07c64d5",
                "sha256": "4cdd4cb8e445cfc478a936e6e0fcc03a5e2dff664f4800d334586e308274e137"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "79642c9065bac111b1e59448e07c64d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 450803,
            "upload_time": "2024-10-12T16:12:52",
            "upload_time_iso_8601": "2024-10-12T16:12:52.115594Z",
            "url": "https://files.pythonhosted.org/packages/89/c6/0523da642d456fb2b3364394c27ce5122daf4e5cf0d4fccb8dbae6c29b67/avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b53a6bab32021126333dc99dd496ac739d65ad285e22a8bca593fddd08f8f52e",
                "md5": "59d3e5995d0444acb223483f549f3304",
                "sha256": "2b71510edd2cb3a92170659d21120fe48894c5d420a3034c374e6b7bbc8a8263"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "59d3e5995d0444acb223483f549f3304",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 535125,
            "upload_time": "2024-10-12T16:13:06",
            "upload_time_iso_8601": "2024-10-12T16:13:06.684158Z",
            "url": "https://files.pythonhosted.org/packages/b5/3a/6bab32021126333dc99dd496ac739d65ad285e22a8bca593fddd08f8f52e/avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f32767498b4040ab8e2208e7f28393b5edc824c7a5b3c1578ecee24123b11ed",
                "md5": "90ba65b67c50c36122cd3ceaa77d0b11",
                "sha256": "20b74e3a45d44365192c39094b1fd159bbe803654642d0690b2a0252a618b61f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "90ba65b67c50c36122cd3ceaa77d0b11",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 535854,
            "upload_time": "2024-10-12T16:13:21",
            "upload_time_iso_8601": "2024-10-12T16:13:21.733929Z",
            "url": "https://files.pythonhosted.org/packages/5f/32/767498b4040ab8e2208e7f28393b5edc824c7a5b3c1578ecee24123b11ed/avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6da15c8f14233b0140b5f3ebd74735124e702dc93459e15d2fb5f988beb5902e",
                "md5": "335733c6bb2696d5a560fe91aad5d4a3",
                "sha256": "7243b3d91519bac00ff098de3fd4d627596a2dac4053cc498525457db2b037c9"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "335733c6bb2696d5a560fe91aad5d4a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 485637,
            "upload_time": "2024-10-12T16:13:36",
            "upload_time_iso_8601": "2024-10-12T16:13:36.836961Z",
            "url": "https://files.pythonhosted.org/packages/6d/a1/5c8f14233b0140b5f3ebd74735124e702dc93459e15d2fb5f988beb5902e/avdeepfake1m-0.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7e2a7954bcd35c9ec4504a950e7eaf0f9fec86b79c7931f6d93067ab1367f59",
                "md5": "e32c1cac2c567115e70c334c160c96e3",
                "sha256": "d3fc48bf1d73d4032d37c4eff416a23f8274065a0be72fbc292b2873ca23b3fb"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e32c1cac2c567115e70c334c160c96e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 624316,
            "upload_time": "2024-10-12T16:13:56",
            "upload_time_iso_8601": "2024-10-12T16:13:56.765284Z",
            "url": "https://files.pythonhosted.org/packages/e7/e2/a7954bcd35c9ec4504a950e7eaf0f9fec86b79c7931f6d93067ab1367f59/avdeepfake1m-0.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03e4e46993094afdda6ab4d6ff46025bd45caae1a7a4ee0787737b2f621fd607",
                "md5": "4f12d10a0c344aa1cb4ef1c843630c10",
                "sha256": "197e95be45c2e947b542e875bbc07d065e8d255eaec5fed5c216897d6371c807"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f12d10a0c344aa1cb4ef1c843630c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 642412,
            "upload_time": "2024-10-12T16:14:09",
            "upload_time_iso_8601": "2024-10-12T16:14:09.563414Z",
            "url": "https://files.pythonhosted.org/packages/03/e4/e46993094afdda6ab4d6ff46025bd45caae1a7a4ee0787737b2f621fd607/avdeepfake1m-0.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "835d418ae44e3eaed242e2e05b579f560188e0a5ae975d00f5cd51d25804e772",
                "md5": "6d2a6b636042d49569a6bba22eca8e74",
                "sha256": "9c5d7f8c69b21cef12291813a13b12c5695787ab460d1ff04297cef359480c3b"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d2a6b636042d49569a6bba22eca8e74",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 312144,
            "upload_time": "2024-10-12T16:14:24",
            "upload_time_iso_8601": "2024-10-12T16:14:24.772160Z",
            "url": "https://files.pythonhosted.org/packages/83/5d/418ae44e3eaed242e2e05b579f560188e0a5ae975d00f5cd51d25804e772/avdeepfake1m-0.0.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32e86248b1d2ebe815da4e6fd945a4ea261fcbe058937709e3539634da6ddf23",
                "md5": "a6312e96e08436260f56a2a3e6f5e50e",
                "sha256": "739b784977285c534a2702f642eef51d834bf70b164d48a5fe6b2f0864270bff"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6312e96e08436260f56a2a3e6f5e50e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 429766,
            "upload_time": "2024-10-12T16:13:53",
            "upload_time_iso_8601": "2024-10-12T16:13:53.533580Z",
            "url": "https://files.pythonhosted.org/packages/32/e8/6248b1d2ebe815da4e6fd945a4ea261fcbe058937709e3539634da6ddf23/avdeepfake1m-0.0.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbfbd0bb2e52c17516a846cc8b64b6bfa8448b4d4eb93afa159610c5fa097ac2",
                "md5": "190931d2e3b99dbc34fa55111bc6f8cd",
                "sha256": "2845fcbbee4c3814af0f103358e1029314ee309ff45506cc0c5f9278ebf527f7"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "190931d2e3b99dbc34fa55111bc6f8cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 402322,
            "upload_time": "2024-10-12T16:13:49",
            "upload_time_iso_8601": "2024-10-12T16:13:49.273061Z",
            "url": "https://files.pythonhosted.org/packages/fb/fb/d0bb2e52c17516a846cc8b64b6bfa8448b4d4eb93afa159610c5fa097ac2/avdeepfake1m-0.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85b3a192e130b316589896856b9dedaa3ba6319fb546fe796b78d39172391ff1",
                "md5": "770a967dd08f8d00f8a98e0c17efcb60",
                "sha256": "af5f428e180a18f0823aa05915db1ca1eb44417bb8cf84354c3219112c90d2e9"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "770a967dd08f8d00f8a98e0c17efcb60",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 446788,
            "upload_time": "2024-10-12T16:12:37",
            "upload_time_iso_8601": "2024-10-12T16:12:37.296163Z",
            "url": "https://files.pythonhosted.org/packages/85/b3/a192e130b316589896856b9dedaa3ba6319fb546fe796b78d39172391ff1/avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "210f49fe06f2cb704d3d8957f8aa7ff3c094f3f9088f4e07197719e736beb437",
                "md5": "b0d324580bdb442649c128c47eec25c6",
                "sha256": "9317895eaaac83da321e3b35d0b933375f6f5572456160332ac739ff95ec1b91"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0d324580bdb442649c128c47eec25c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 450728,
            "upload_time": "2024-10-12T16:12:53",
            "upload_time_iso_8601": "2024-10-12T16:12:53.713255Z",
            "url": "https://files.pythonhosted.org/packages/21/0f/49fe06f2cb704d3d8957f8aa7ff3c094f3f9088f4e07197719e736beb437/avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2198fbdcf6ef923334caeb031c690448e9e7b6dbdccc0b32cbb0b9fd18260812",
                "md5": "ed3c11dbb130f5316629fe00bddaec7c",
                "sha256": "56e32f7161840d5e0b070804f2f1fbcceb2afa993ff0fd50bbe1b6ce31761ca6"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ed3c11dbb130f5316629fe00bddaec7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 535199,
            "upload_time": "2024-10-12T16:13:08",
            "upload_time_iso_8601": "2024-10-12T16:13:08.608734Z",
            "url": "https://files.pythonhosted.org/packages/21/98/fbdcf6ef923334caeb031c690448e9e7b6dbdccc0b32cbb0b9fd18260812/avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15cb55ac569245bca55741cc505fb4975c0bf22c2eed48712ae1c0127e3a7cc2",
                "md5": "263c6716a61c7aae33745e0cba5886c8",
                "sha256": "617c9e3e8fe7407461cfc6c0b59617cdcea11ba52b23e21bee57df61f12ffce7"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "263c6716a61c7aae33745e0cba5886c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 535726,
            "upload_time": "2024-10-12T16:13:23",
            "upload_time_iso_8601": "2024-10-12T16:13:23.327448Z",
            "url": "https://files.pythonhosted.org/packages/15/cb/55ac569245bca55741cc505fb4975c0bf22c2eed48712ae1c0127e3a7cc2/avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bf35d83f95b5ccf86e5bb7ed8c8993fe42fe883f01a4807676c3648d79aca84",
                "md5": "c293e94e10a26c0e4b367e62afb19cf4",
                "sha256": "ef06ae9abfbec14b6a192adbafebe7fa071975317affdf9adfb5ed6efcd63657"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c293e94e10a26c0e4b367e62afb19cf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 485604,
            "upload_time": "2024-10-12T16:13:38",
            "upload_time_iso_8601": "2024-10-12T16:13:38.053493Z",
            "url": "https://files.pythonhosted.org/packages/3b/f3/5d83f95b5ccf86e5bb7ed8c8993fe42fe883f01a4807676c3648d79aca84/avdeepfake1m-0.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57a4acf0ccf3821fc850c4d9a05632477ccac3a10f2f8d068821c832a380a195",
                "md5": "b518f6afa10e71e31c0bf02e59a459c2",
                "sha256": "e00f81305b25854e5d46849db594bb188483dca07fdf4ef9cfa4bf71c9ab1ee4"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b518f6afa10e71e31c0bf02e59a459c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 624233,
            "upload_time": "2024-10-12T16:13:58",
            "upload_time_iso_8601": "2024-10-12T16:13:58.031755Z",
            "url": "https://files.pythonhosted.org/packages/57/a4/acf0ccf3821fc850c4d9a05632477ccac3a10f2f8d068821c832a380a195/avdeepfake1m-0.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd17491d43928c1d77cb49e3b6a9b15589b41ae6052ebe926aaeae99605bf66b",
                "md5": "6347c93ff03d8829a9bf082de617942e",
                "sha256": "d02e45d8523af67d422cd0504c198e5358987e4c345d7887602e80a343d9e30e"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6347c93ff03d8829a9bf082de617942e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 642264,
            "upload_time": "2024-10-12T16:14:10",
            "upload_time_iso_8601": "2024-10-12T16:14:10.999369Z",
            "url": "https://files.pythonhosted.org/packages/cd/17/491d43928c1d77cb49e3b6a9b15589b41ae6052ebe926aaeae99605bf66b/avdeepfake1m-0.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b3b62a2933805b7452d73a7ece95bf7c4d974689a58a40703c49babf53042d3",
                "md5": "7401566dbdaae024364fb9afb31abb50",
                "sha256": "3f70387e38374b5ac7011079c296d4adcc56ffc1c72128a39855c8f5817177d1"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7401566dbdaae024364fb9afb31abb50",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 312168,
            "upload_time": "2024-10-12T16:14:26",
            "upload_time_iso_8601": "2024-10-12T16:14:26.374074Z",
            "url": "https://files.pythonhosted.org/packages/6b/3b/62a2933805b7452d73a7ece95bf7c4d974689a58a40703c49babf53042d3/avdeepfake1m-0.0.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccafaa80dff4b3930d213ef8c21dcc4128233d20d11ec5f304499297bf5a817f",
                "md5": "52e388379c6ad05a7a9c59bdf22b600d",
                "sha256": "9992e05518474856e8b80d40dca53ea27f477509236546ced2dec35d35f9e276"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52e388379c6ad05a7a9c59bdf22b600d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 428892,
            "upload_time": "2024-10-12T16:13:54",
            "upload_time_iso_8601": "2024-10-12T16:13:54.978247Z",
            "url": "https://files.pythonhosted.org/packages/cc/af/aa80dff4b3930d213ef8c21dcc4128233d20d11ec5f304499297bf5a817f/avdeepfake1m-0.0.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7fef6208bf244344a939058cb998930507e0b5f139ef8f6a9f40b9d1279b0e8",
                "md5": "ad6ece743881720a7014d784740421cd",
                "sha256": "643de07eb43dcc59c25ee909f85f9aae417f17594eea9ccd45b98b9f05935c58"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ad6ece743881720a7014d784740421cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 401457,
            "upload_time": "2024-10-12T16:13:50",
            "upload_time_iso_8601": "2024-10-12T16:13:50.365583Z",
            "url": "https://files.pythonhosted.org/packages/a7/fe/f6208bf244344a939058cb998930507e0b5f139ef8f6a9f40b9d1279b0e8/avdeepfake1m-0.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e27b105e0dafa253ef63ddfe2ebe2b588a88a59584446bbe0338eec5e85a01d",
                "md5": "974900885c6f5adec777c0ce8c97f76a",
                "sha256": "820af59d7614db30a27e7c61112941663ad25431a38b3d32eb416e41d810b940"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "974900885c6f5adec777c0ce8c97f76a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 446344,
            "upload_time": "2024-10-12T16:12:39",
            "upload_time_iso_8601": "2024-10-12T16:12:39.182387Z",
            "url": "https://files.pythonhosted.org/packages/4e/27/b105e0dafa253ef63ddfe2ebe2b588a88a59584446bbe0338eec5e85a01d/avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb46b5b54c9f30171a296035c03c12a4046afe89c97b15b0bc2e58ccb0f58c50",
                "md5": "e523fe27295a558778f1f1ff10c3a02e",
                "sha256": "7dad14ddd1784d489608b14b1aa05c938f30e3d6dfbb36e574eaa7f0a966504a"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e523fe27295a558778f1f1ff10c3a02e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 449997,
            "upload_time": "2024-10-12T16:12:55",
            "upload_time_iso_8601": "2024-10-12T16:12:55.335905Z",
            "url": "https://files.pythonhosted.org/packages/eb/46/b5b54c9f30171a296035c03c12a4046afe89c97b15b0bc2e58ccb0f58c50/avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4c11793a4f1cf6d3598265009b7c4710e1de67c01c876510149bb56f065caf2",
                "md5": "7a249ed29278c79c922710e237ceed3d",
                "sha256": "59c10c6cca04692c7576d801ba4f41b63616474f74ff1ddf789cda9efb17b578"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a249ed29278c79c922710e237ceed3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 534423,
            "upload_time": "2024-10-12T16:13:09",
            "upload_time_iso_8601": "2024-10-12T16:13:09.743283Z",
            "url": "https://files.pythonhosted.org/packages/b4/c1/1793a4f1cf6d3598265009b7c4710e1de67c01c876510149bb56f065caf2/avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5c39c94c1fdf4405abf1664e7aa5a1e788253484592572f094e4e41f18471ea",
                "md5": "1e1b4afcb295b8ee9e2b07ec06f08146",
                "sha256": "8d9ca195a03122012b6364592c581cfe773f28e29f109f6e836c86fff7e55950"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1e1b4afcb295b8ee9e2b07ec06f08146",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 526116,
            "upload_time": "2024-10-12T16:13:24",
            "upload_time_iso_8601": "2024-10-12T16:13:24.702993Z",
            "url": "https://files.pythonhosted.org/packages/e5/c3/9c94c1fdf4405abf1664e7aa5a1e788253484592572f094e4e41f18471ea/avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58ea9e55e5aebc0d044c87e562c132e3b0178b58a9101feb391909cafb6d6b94",
                "md5": "f7ee3fca1abaa88d95f372980fbd5be9",
                "sha256": "a482cceb9978b439fefbdb1a1a686a119cea56c1a79be058d2bdf8a03dc66f40"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7ee3fca1abaa88d95f372980fbd5be9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 485178,
            "upload_time": "2024-10-12T16:13:39",
            "upload_time_iso_8601": "2024-10-12T16:13:39.281182Z",
            "url": "https://files.pythonhosted.org/packages/58/ea/9e55e5aebc0d044c87e562c132e3b0178b58a9101feb391909cafb6d6b94/avdeepfake1m-0.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06eef27ffe9c22c1e3d8de5e32ad7c91683f21dee46ee20d8043752757912633",
                "md5": "6fc5920c187b62735353afabbd19acde",
                "sha256": "2fa00edcc92b35c165391607bf379db501894323518a081b7a7a1ad3f29c8767"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6fc5920c187b62735353afabbd19acde",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 623759,
            "upload_time": "2024-10-12T16:13:59",
            "upload_time_iso_8601": "2024-10-12T16:13:59.667897Z",
            "url": "https://files.pythonhosted.org/packages/06/ee/f27ffe9c22c1e3d8de5e32ad7c91683f21dee46ee20d8043752757912633/avdeepfake1m-0.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31cc04538bcb67f58975d6a307158fecb9b55a4f223065bba338f994c835a323",
                "md5": "9390ca57def4ef0479596747ddbeeba7",
                "sha256": "dcc346e2f1eaa3c7f81b051dd6d13ca26468996e7f20e699cc9a687a4d0fe302"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9390ca57def4ef0479596747ddbeeba7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 642014,
            "upload_time": "2024-10-12T16:14:12",
            "upload_time_iso_8601": "2024-10-12T16:14:12.166051Z",
            "url": "https://files.pythonhosted.org/packages/31/cc/04538bcb67f58975d6a307158fecb9b55a4f223065bba338f994c835a323/avdeepfake1m-0.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e3d4cb58ebc2391622a4bf382cfb4957f03cd362a45da77c2f473e17c4b867",
                "md5": "d05833ae5e9f76e7d2108d25245dcdbc",
                "sha256": "d839b038029df706d51c5a0ba27a52f5ab465dce159bcf2f4423faaf2f2bba25"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d05833ae5e9f76e7d2108d25245dcdbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 312409,
            "upload_time": "2024-10-12T16:14:27",
            "upload_time_iso_8601": "2024-10-12T16:14:27.455672Z",
            "url": "https://files.pythonhosted.org/packages/00/e3/d4cb58ebc2391622a4bf382cfb4957f03cd362a45da77c2f473e17c4b867/avdeepfake1m-0.0.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b643a1b2bf0d03279d650c2b041f176a96c63eae16060242234beba7097e7e0",
                "md5": "13bd395e335bae6cf7103b4ef8833117",
                "sha256": "cf16d1858d97d079112547273054fd531a45c9052e75a883772da3fca62244ae"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13bd395e335bae6cf7103b4ef8833117",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 446495,
            "upload_time": "2024-10-12T16:12:40",
            "upload_time_iso_8601": "2024-10-12T16:12:40.771109Z",
            "url": "https://files.pythonhosted.org/packages/2b/64/3a1b2bf0d03279d650c2b041f176a96c63eae16060242234beba7097e7e0/avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "480070a1a4fffebdd69b92a75496f24011d587de4aac843d84d98b9262429316",
                "md5": "c828be25f80dd15fb32103c8ff8e7ef2",
                "sha256": "8dbf7fba16576fc7107da70f746b7e96d259c6f5619cdc1a7f5d199e4763f47a"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c828be25f80dd15fb32103c8ff8e7ef2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 450313,
            "upload_time": "2024-10-12T16:12:56",
            "upload_time_iso_8601": "2024-10-12T16:12:56.670438Z",
            "url": "https://files.pythonhosted.org/packages/48/00/70a1a4fffebdd69b92a75496f24011d587de4aac843d84d98b9262429316/avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8714394f23daecc674b4dd3ec81aece1e0c8df2823f2bc5041e626e0b22f4cb0",
                "md5": "52a19c6fe692ec49414b4f24f1b124a2",
                "sha256": "2d28e0b21ae11c0e132b462e0e9b58435f4c1e92d4db96f08fc9cef59b9ba87c"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "52a19c6fe692ec49414b4f24f1b124a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 534661,
            "upload_time": "2024-10-12T16:13:10",
            "upload_time_iso_8601": "2024-10-12T16:13:10.897077Z",
            "url": "https://files.pythonhosted.org/packages/87/14/394f23daecc674b4dd3ec81aece1e0c8df2823f2bc5041e626e0b22f4cb0/avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdbb02f3ec3459ed5c39689384ffe3324bd4ede3b1485509c549da1474c8eda6",
                "md5": "58672cf9915c2a76b22516b9571cd5b8",
                "sha256": "a82308fd7b3a291d00c16e12fc418e9c1757a6e32ada1bb60386332903774da3"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "58672cf9915c2a76b22516b9571cd5b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 535598,
            "upload_time": "2024-10-12T16:13:25",
            "upload_time_iso_8601": "2024-10-12T16:13:25.943849Z",
            "url": "https://files.pythonhosted.org/packages/cd/bb/02f3ec3459ed5c39689384ffe3324bd4ede3b1485509c549da1474c8eda6/avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a6f85af272467eaf14dc80464fe9d3ba8d4fc8abbaf0f0b0f44bf6d9f57fcce",
                "md5": "5269566ecfc5adf5a0dc63b2b03a85d3",
                "sha256": "3e7fb3c4e2ff7f6ac530794be5e8ac129b306f7759a4efbd87b91b1356f51338"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5269566ecfc5adf5a0dc63b2b03a85d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 485543,
            "upload_time": "2024-10-12T16:13:40",
            "upload_time_iso_8601": "2024-10-12T16:13:40.520519Z",
            "url": "https://files.pythonhosted.org/packages/3a/6f/85af272467eaf14dc80464fe9d3ba8d4fc8abbaf0f0b0f44bf6d9f57fcce/avdeepfake1m-0.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "634d5203bdd5b471a0a94d20b7bf6a58cb96cc99f12fe35d2fa60082d859337f",
                "md5": "0db35752f5db55fe44a249ad84842cb5",
                "sha256": "f4b0fec89f023296e5d9c56ad73584619c91133a12b096dbaf9d63ed430a2cdf"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0db35752f5db55fe44a249ad84842cb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 623990,
            "upload_time": "2024-10-12T16:14:00",
            "upload_time_iso_8601": "2024-10-12T16:14:00.872478Z",
            "url": "https://files.pythonhosted.org/packages/63/4d/5203bdd5b471a0a94d20b7bf6a58cb96cc99f12fe35d2fa60082d859337f/avdeepfake1m-0.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1315ef6baed617eb705eeae4cde0e95d8779894845f78c1a17660e88b41ffa2",
                "md5": "08a11e01935a9a9d8d4a70ef9f5a99ba",
                "sha256": "7567203bbe5671eb378e6e92e492180b9e190b5221bc8ab8cd6991782ddbac23"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08a11e01935a9a9d8d4a70ef9f5a99ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 641978,
            "upload_time": "2024-10-12T16:14:13",
            "upload_time_iso_8601": "2024-10-12T16:14:13.818916Z",
            "url": "https://files.pythonhosted.org/packages/f1/31/5ef6baed617eb705eeae4cde0e95d8779894845f78c1a17660e88b41ffa2/avdeepfake1m-0.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5850786be67bfe56cc1872c39f558b3075f146aad2db32a6ad8807d38f6916b",
                "md5": "39dfbcd01a75dee913f8ef92da74f586",
                "sha256": "adf0c319c1a5ef2ca5919d9b4a0317fa2f94eaac3c10c26f88a481837b9e6600"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39dfbcd01a75dee913f8ef92da74f586",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 311914,
            "upload_time": "2024-10-12T16:14:28",
            "upload_time_iso_8601": "2024-10-12T16:14:28.580487Z",
            "url": "https://files.pythonhosted.org/packages/f5/85/0786be67bfe56cc1872c39f558b3075f146aad2db32a6ad8807d38f6916b/avdeepfake1m-0.0.0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "712de7f7a127d06215d7d7156263b9bde09daf4b4cc2441c3cb1a46fad837991",
                "md5": "7cbb7fc54dccb536aca11036a81423e5",
                "sha256": "ee1342df46e81784aa04576c0774e3586bc7504dea98863c896e423055f1d5eb"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7cbb7fc54dccb536aca11036a81423e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 446699,
            "upload_time": "2024-10-12T16:12:42",
            "upload_time_iso_8601": "2024-10-12T16:12:42.402081Z",
            "url": "https://files.pythonhosted.org/packages/71/2d/e7f7a127d06215d7d7156263b9bde09daf4b4cc2441c3cb1a46fad837991/avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ca6f89aa9681fd1b33f6ed6209218a5e1964d70ee346b935bdc85528b807f92",
                "md5": "1c8ce20ec7973b19caebc3f7cb3b9649",
                "sha256": "34fcd7f37b6870b3e6b8fd7c5619dbf58984f382f4b3fb1e937682d9408c40ad"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1c8ce20ec7973b19caebc3f7cb3b9649",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 450267,
            "upload_time": "2024-10-12T16:12:57",
            "upload_time_iso_8601": "2024-10-12T16:12:57.805034Z",
            "url": "https://files.pythonhosted.org/packages/1c/a6/f89aa9681fd1b33f6ed6209218a5e1964d70ee346b935bdc85528b807f92/avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d948b02591b221c86c4004a4ab68dbaafd1b6ef7668a4d4017d5ec4c94f3a1e8",
                "md5": "3886f9d22513f95e49cffa6151a301ac",
                "sha256": "7a7ece79c8a44b34846efa7f68afa52a5abd7df4430936a247c4ddf2d8a97af0"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3886f9d22513f95e49cffa6151a301ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 534909,
            "upload_time": "2024-10-12T16:13:12",
            "upload_time_iso_8601": "2024-10-12T16:13:12.090427Z",
            "url": "https://files.pythonhosted.org/packages/d9/48/b02591b221c86c4004a4ab68dbaafd1b6ef7668a4d4017d5ec4c94f3a1e8/avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4370beeb27f8e9798257c3f8d82459791db4b3d4377478b0412ab884d9cdfba4",
                "md5": "18d7b3e228bb942fb57e1b68438377fc",
                "sha256": "49aa5b8c0f47be17f0d7a78a7e84c1d427be52bf0c0bb340da5688aef0635092"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "18d7b3e228bb942fb57e1b68438377fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 535562,
            "upload_time": "2024-10-12T16:13:27",
            "upload_time_iso_8601": "2024-10-12T16:13:27.978860Z",
            "url": "https://files.pythonhosted.org/packages/43/70/beeb27f8e9798257c3f8d82459791db4b3d4377478b0412ab884d9cdfba4/avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "781426fc1788277d8ad530a35267ff75acf2fba9e48c720f669c09685051c54f",
                "md5": "67873b9ada57f5d7dc8c46368717f571",
                "sha256": "d1a64526ad1a326494e39e8b8524b09b6cc11d9983033842f17f220f9c699cf5"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67873b9ada57f5d7dc8c46368717f571",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 485440,
            "upload_time": "2024-10-12T16:13:41",
            "upload_time_iso_8601": "2024-10-12T16:13:41.671637Z",
            "url": "https://files.pythonhosted.org/packages/78/14/26fc1788277d8ad530a35267ff75acf2fba9e48c720f669c09685051c54f/avdeepfake1m-0.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d61a79463d9bab2dc94ec4a73e5199a541ebc66e5e2bfa9b66dd1559f727714",
                "md5": "9d8548670fdfe2fc9dff866b184df1ba",
                "sha256": "c09c2ca37e9ff1bce29351fccecde0276a24b4cb13dbde0c57e2c56c7de06fe2"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9d8548670fdfe2fc9dff866b184df1ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 624056,
            "upload_time": "2024-10-12T16:14:02",
            "upload_time_iso_8601": "2024-10-12T16:14:02.242307Z",
            "url": "https://files.pythonhosted.org/packages/0d/61/a79463d9bab2dc94ec4a73e5199a541ebc66e5e2bfa9b66dd1559f727714/avdeepfake1m-0.0.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "093aea15fcb94d9bcc669473aeaea8c92060c5a5acc67d897cae5d878ea1ec92",
                "md5": "48d57c95c95c46f3a740d64cbca8705b",
                "sha256": "df3278391ea9e204b3333e12a96a117669102779c384b22e97c4cba12b4ff46e"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48d57c95c95c46f3a740d64cbca8705b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 642007,
            "upload_time": "2024-10-12T16:14:15",
            "upload_time_iso_8601": "2024-10-12T16:14:15.382690Z",
            "url": "https://files.pythonhosted.org/packages/09/3a/ea15fcb94d9bcc669473aeaea8c92060c5a5acc67d897cae5d878ea1ec92/avdeepfake1m-0.0.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c43ebd2227c94e0edbf45dc24345f81cac1d2ee1d3ac8561a5f136bc92d011c",
                "md5": "f333f2d08deb1a7624658d52a1e335b0",
                "sha256": "e68128a349873fa80fd14ea0e46fde3f0092190bc9ab1de9803cb779f041999f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f333f2d08deb1a7624658d52a1e335b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 312036,
            "upload_time": "2024-10-12T16:14:29",
            "upload_time_iso_8601": "2024-10-12T16:14:29.918884Z",
            "url": "https://files.pythonhosted.org/packages/7c/43/ebd2227c94e0edbf45dc24345f81cac1d2ee1d3ac8561a5f136bc92d011c/avdeepfake1m-0.0.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e686e2d966575659ed3f55cad74afca0b3f4d7982e0ed15bf23a58844b2c7df1",
                "md5": "4e4d1e8d01f052c0242844b7252587d0",
                "sha256": "9aa44fcc65e678798bf7882a3b06e2349d3964a59efe87cf6800897fd65e32a7"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4e4d1e8d01f052c0242844b7252587d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 402264,
            "upload_time": "2024-10-12T16:13:51",
            "upload_time_iso_8601": "2024-10-12T16:13:51.697035Z",
            "url": "https://files.pythonhosted.org/packages/e6/86/e2d966575659ed3f55cad74afca0b3f4d7982e0ed15bf23a58844b2c7df1/avdeepfake1m-0.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dd26f25d8e7776703345c1196b72e2b349f7676f97ec29d942126a4f8ebc3c3",
                "md5": "cb9be1ea93d59d1c8d5640d39839abfe",
                "sha256": "a0817374d65d55e045b33e9515c4491b91f13e921dbbb399c5fabe0ac26b9efa"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb9be1ea93d59d1c8d5640d39839abfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 446723,
            "upload_time": "2024-10-12T16:12:44",
            "upload_time_iso_8601": "2024-10-12T16:12:44.208430Z",
            "url": "https://files.pythonhosted.org/packages/4d/d2/6f25d8e7776703345c1196b72e2b349f7676f97ec29d942126a4f8ebc3c3/avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "742ce10481bd36a7a204066b060d213963168898dc53ef1a07dda3b3f0a49089",
                "md5": "3fd09925354a6bad5b6bb8a53eefe436",
                "sha256": "42263716308f3b07da7098f698c3fc3f63489296d85d44c45d551b0cee63404f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3fd09925354a6bad5b6bb8a53eefe436",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 450604,
            "upload_time": "2024-10-12T16:12:59",
            "upload_time_iso_8601": "2024-10-12T16:12:59.633448Z",
            "url": "https://files.pythonhosted.org/packages/74/2c/e10481bd36a7a204066b060d213963168898dc53ef1a07dda3b3f0a49089/avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee349d190f1f3f56aae4760528b8fd9ee7327e6a3bb6debb4ae728e02d9018bc",
                "md5": "3bd028c3316e17d48cec078d4b01334c",
                "sha256": "6b1e86ef88206f9b128a53583cf41e1502bf6e6e3d25dcc37e87200e9d34f849"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3bd028c3316e17d48cec078d4b01334c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 535095,
            "upload_time": "2024-10-12T16:13:13",
            "upload_time_iso_8601": "2024-10-12T16:13:13.181879Z",
            "url": "https://files.pythonhosted.org/packages/ee/34/9d190f1f3f56aae4760528b8fd9ee7327e6a3bb6debb4ae728e02d9018bc/avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "165cc41275078ea0adc3b22ed3b604c695118c84a8e9b5882bf6973ff21a4009",
                "md5": "0882da82365574ad671c6799dce87867",
                "sha256": "01f589bc712be5753596ff2ffccc0221453081afc0eedd51303103e9e8509912"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0882da82365574ad671c6799dce87867",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 535635,
            "upload_time": "2024-10-12T16:13:29",
            "upload_time_iso_8601": "2024-10-12T16:13:29.123782Z",
            "url": "https://files.pythonhosted.org/packages/16/5c/c41275078ea0adc3b22ed3b604c695118c84a8e9b5882bf6973ff21a4009/avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d12ccd7ff9c79b8c7f3f25a261d32977b19f5b4f65cf3323c2d4c8d4dfed425a",
                "md5": "70cd6cebd90abf4b84b7820a3dfbf4ce",
                "sha256": "4285819cddd07c7d25225127d3ceddcb7305904780573d381dfe4a3b951c6ea7"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70cd6cebd90abf4b84b7820a3dfbf4ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 485853,
            "upload_time": "2024-10-12T16:13:42",
            "upload_time_iso_8601": "2024-10-12T16:13:42.951053Z",
            "url": "https://files.pythonhosted.org/packages/d1/2c/cd7ff9c79b8c7f3f25a261d32977b19f5b4f65cf3323c2d4c8d4dfed425a/avdeepfake1m-0.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3007eb86ec19e39d7623a23770454b5d2e5b7a88d3d42fa20e191309f31dad1a",
                "md5": "5f56f30f25f07eb2b98e39b797ff65c4",
                "sha256": "af6690f76d27aec6b570d77c9739bed0e8b158a5c11c89ed0a0a0cdfda9f371e"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f56f30f25f07eb2b98e39b797ff65c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 624233,
            "upload_time": "2024-10-12T16:14:03",
            "upload_time_iso_8601": "2024-10-12T16:14:03.377342Z",
            "url": "https://files.pythonhosted.org/packages/30/07/eb86ec19e39d7623a23770454b5d2e5b7a88d3d42fa20e191309f31dad1a/avdeepfake1m-0.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efe06525b2373ab32cda17fd7bb21dba3446f46a0c6ee64b1eb56ef9fb3e3e42",
                "md5": "3a10f1f31e45a2d03f71574fb92ee232",
                "sha256": "d22a1dccece51dbe713db188e7995a94a51366c94044b4a71e4d946fb3901431"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a10f1f31e45a2d03f71574fb92ee232",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 642198,
            "upload_time": "2024-10-12T16:14:16",
            "upload_time_iso_8601": "2024-10-12T16:14:16.663854Z",
            "url": "https://files.pythonhosted.org/packages/ef/e0/6525b2373ab32cda17fd7bb21dba3446f46a0c6ee64b1eb56ef9fb3e3e42/avdeepfake1m-0.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c243e6d1dd6c0a834c9aa06c620428c30b978a6279933ab47f691b6e2fa8cd96",
                "md5": "b4056287061c78af30e52b57a486633a",
                "sha256": "38a43e58fa6b46649e00508b03ba2844e1ba26da684d4909a1d9a42010ed95cf"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4056287061c78af30e52b57a486633a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 312209,
            "upload_time": "2024-10-12T16:14:31",
            "upload_time_iso_8601": "2024-10-12T16:14:31.460741Z",
            "url": "https://files.pythonhosted.org/packages/c2/43/e6d1dd6c0a834c9aa06c620428c30b978a6279933ab47f691b6e2fa8cd96/avdeepfake1m-0.0.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7d44a43ec0c7d920271ff5dbca3af9bf4c6c17e201a6d590fb4f6c441895d7c",
                "md5": "11fcb2b01e59a1be66124b661b010f47",
                "sha256": "fc42bc259b3daa7b8dc01cbdae3593c9fd59de05b05cd2f50e9a18255e0da0a9"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "11fcb2b01e59a1be66124b661b010f47",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 446464,
            "upload_time": "2024-10-12T16:12:45",
            "upload_time_iso_8601": "2024-10-12T16:12:45.619489Z",
            "url": "https://files.pythonhosted.org/packages/d7/d4/4a43ec0c7d920271ff5dbca3af9bf4c6c17e201a6d590fb4f6c441895d7c/avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c9cea75c1cbde86b7f0f6c7cc8e24789596393e16aede8c446fa17e0085b704",
                "md5": "4252b51fb4a604bd84836429f3fb79d6",
                "sha256": "e79cfb64115e655acfda63bd9e8eb56a374a6890dc7e3fcc75ab519b4a2fee2c"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4252b51fb4a604bd84836429f3fb79d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 450932,
            "upload_time": "2024-10-12T16:13:01",
            "upload_time_iso_8601": "2024-10-12T16:13:01.177263Z",
            "url": "https://files.pythonhosted.org/packages/0c/9c/ea75c1cbde86b7f0f6c7cc8e24789596393e16aede8c446fa17e0085b704/avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ffb22ecdd402c93ed275d1643ab2f491ebfb29c4f10b63a1fa9dbeb29c287d4",
                "md5": "c8b667f1edb231e64f300e1449123ff4",
                "sha256": "c9cfe0babcd8a79d6306c23b88321eef774bd660a0215e064370b4d683ee8f81"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c8b667f1edb231e64f300e1449123ff4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 534541,
            "upload_time": "2024-10-12T16:13:14",
            "upload_time_iso_8601": "2024-10-12T16:13:14.321160Z",
            "url": "https://files.pythonhosted.org/packages/1f/fb/22ecdd402c93ed275d1643ab2f491ebfb29c4f10b63a1fa9dbeb29c287d4/avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c831718c9a5ff4aba0ab81dfb1bc44d63757399ba6b6ced5c4fe24a2517b5969",
                "md5": "68f95f82d0d16d26fa3b5ad0b53dae51",
                "sha256": "d9de6dff132191906a984354af2a30aecded77274da07fa04cacab64ed73de6c"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "68f95f82d0d16d26fa3b5ad0b53dae51",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 536536,
            "upload_time": "2024-10-12T16:13:30",
            "upload_time_iso_8601": "2024-10-12T16:13:30.370651Z",
            "url": "https://files.pythonhosted.org/packages/c8/31/718c9a5ff4aba0ab81dfb1bc44d63757399ba6b6ced5c4fe24a2517b5969/avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80739f5d67b200d00f3fade2a526ad642e382c8ce7d1f5129193a433698457b4",
                "md5": "3826854b0cc76090619c98e2120eb05b",
                "sha256": "f94bfa6ddbb0e533102f59e17609d94f6e481f437989ca32c8ba84f1ec3cb78f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3826854b0cc76090619c98e2120eb05b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 484926,
            "upload_time": "2024-10-12T16:13:44",
            "upload_time_iso_8601": "2024-10-12T16:13:44.516411Z",
            "url": "https://files.pythonhosted.org/packages/80/73/9f5d67b200d00f3fade2a526ad642e382c8ce7d1f5129193a433698457b4/avdeepfake1m-0.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8afed389d966a862a5d85697fd35ae6033259cf1c8f60bb6c2396068b996ccf8",
                "md5": "5f5fc6463b6cba1b2257a65ad6208215",
                "sha256": "8ea88ec4b76cfb3110cc20980f6e6cebb8ea67f674bde62d5d976dcc4cd2a526"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f5fc6463b6cba1b2257a65ad6208215",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 623699,
            "upload_time": "2024-10-12T16:14:04",
            "upload_time_iso_8601": "2024-10-12T16:14:04.896554Z",
            "url": "https://files.pythonhosted.org/packages/8a/fe/d389d966a862a5d85697fd35ae6033259cf1c8f60bb6c2396068b996ccf8/avdeepfake1m-0.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c550b8a5d5489ca24b1617ae06f3c6fcbf489829618b07424a852ef9b149e3e9",
                "md5": "e5861c6924c7509c9aeb3d5b054f26a5",
                "sha256": "cb1ca3a8a05ce0cc8304aa2505242b137b88c3ebea6c0a55c2fd2ccff91b93c1"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5861c6924c7509c9aeb3d5b054f26a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 642376,
            "upload_time": "2024-10-12T16:14:17",
            "upload_time_iso_8601": "2024-10-12T16:14:17.884315Z",
            "url": "https://files.pythonhosted.org/packages/c5/50/b8a5d5489ca24b1617ae06f3c6fcbf489829618b07424a852ef9b149e3e9/avdeepfake1m-0.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b97acb441e9e12fd8971405cd2a75e0bc6721ef16908ac7e4dc35f3e379aded0",
                "md5": "b6f7d0ce5d76803f4caa4dd88c33a913",
                "sha256": "73cad5b1a20db434938d5ca6b7bf182cc67813c0a70cb6e407290165a91698f9"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6f7d0ce5d76803f4caa4dd88c33a913",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 449229,
            "upload_time": "2024-10-12T16:12:47",
            "upload_time_iso_8601": "2024-10-12T16:12:47.477570Z",
            "url": "https://files.pythonhosted.org/packages/b9/7a/cb441e9e12fd8971405cd2a75e0bc6721ef16908ac7e4dc35f3e379aded0/avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f05481d129eed6c99a57adb3f77c485e97b51be5498efe4f3b31dd341549171",
                "md5": "7f2bd227b1b37b54d19694da4416f7fd",
                "sha256": "ce70017408118b58f11bd8a1a754596f6061d55b91aaf0e358dbd7f1626250ca"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7f2bd227b1b37b54d19694da4416f7fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 453379,
            "upload_time": "2024-10-12T16:13:03",
            "upload_time_iso_8601": "2024-10-12T16:13:03.038639Z",
            "url": "https://files.pythonhosted.org/packages/1f/05/481d129eed6c99a57adb3f77c485e97b51be5498efe4f3b31dd341549171/avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c026f2f1fc914f1e122380dd30a16cfee19a17ebb4ba9cbcf927411dcefa041c",
                "md5": "0a33ca93034db7c466991aad6e864f73",
                "sha256": "b21c34f2afddfeb4fd9260ba9fe4f4c2bb46e57dc9e9e2f246c09f9d28a2f576"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0a33ca93034db7c466991aad6e864f73",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 537597,
            "upload_time": "2024-10-12T16:13:16",
            "upload_time_iso_8601": "2024-10-12T16:13:16.180391Z",
            "url": "https://files.pythonhosted.org/packages/c0/26/f2f1fc914f1e122380dd30a16cfee19a17ebb4ba9cbcf927411dcefa041c/avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0235854dad0bc1c65e3559bf2d2289371eebae1defba497a5d94412d32d06d44",
                "md5": "6766b8834698036c90c3a27e4d32bcc6",
                "sha256": "93e7d82fdb1891b43062977886bb595c59ade1072d10fa5e6b7853bc5290b545"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6766b8834698036c90c3a27e4d32bcc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 539394,
            "upload_time": "2024-10-12T16:13:31",
            "upload_time_iso_8601": "2024-10-12T16:13:31.948403Z",
            "url": "https://files.pythonhosted.org/packages/02/35/854dad0bc1c65e3559bf2d2289371eebae1defba497a5d94412d32d06d44/avdeepfake1m-0.0.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdfd070614f30a5ef00bb33570345287ca2d4a1bbb9de81baa5808b1a3a51e5b",
                "md5": "cab1b2b2e63436c66f2cf84bf41f67c7",
                "sha256": "9675ea34d8e516b3bd2b678c13345b7d293aba94c6b8469773a5ee21e6e36094"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cab1b2b2e63436c66f2cf84bf41f67c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 626517,
            "upload_time": "2024-10-12T16:14:06",
            "upload_time_iso_8601": "2024-10-12T16:14:06.085441Z",
            "url": "https://files.pythonhosted.org/packages/fd/fd/070614f30a5ef00bb33570345287ca2d4a1bbb9de81baa5808b1a3a51e5b/avdeepfake1m-0.0.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f99dabe4246f524d8a143e508a53167684b40406c619b8af9e724f726a2df6a4",
                "md5": "ebf64cf223a9646c57f9ded3d96f9b66",
                "sha256": "dee37ed018b0e6a6f97f1bf6269fbe069465b75629688893294765cf9c5c813f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebf64cf223a9646c57f9ded3d96f9b66",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 644758,
            "upload_time": "2024-10-12T16:14:19",
            "upload_time_iso_8601": "2024-10-12T16:14:19.426652Z",
            "url": "https://files.pythonhosted.org/packages/f9/9d/abe4246f524d8a143e508a53167684b40406c619b8af9e724f726a2df6a4/avdeepfake1m-0.0.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "318697369564a1c3106fbd62d6836aaa2284a1f7bb546fbd05de40f8649bf81b",
                "md5": "45b1f78fde5bcc2a60629911d8f3c12b",
                "sha256": "4e11cd135fa7940751a80ac27dbb325714bcfe88614db3d39b7ecae875a34b16"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "45b1f78fde5bcc2a60629911d8f3c12b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 446521,
            "upload_time": "2024-10-12T16:12:49",
            "upload_time_iso_8601": "2024-10-12T16:12:49.116094Z",
            "url": "https://files.pythonhosted.org/packages/31/86/97369564a1c3106fbd62d6836aaa2284a1f7bb546fbd05de40f8649bf81b/avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a0d50ccc2cab0e16b1f4a038ce769b953e1c66307b1ce1a9205db58aeecded8",
                "md5": "888da73b44e62d9d249fc26414a5b294",
                "sha256": "bc596d0209a399969e3457e4cde4fa5eb1f43f45c6e31ef2df84e2b08ee10fdc"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "888da73b44e62d9d249fc26414a5b294",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 450976,
            "upload_time": "2024-10-12T16:13:04",
            "upload_time_iso_8601": "2024-10-12T16:13:04.436898Z",
            "url": "https://files.pythonhosted.org/packages/2a/0d/50ccc2cab0e16b1f4a038ce769b953e1c66307b1ce1a9205db58aeecded8/avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b3b1bec924ad27fe346574513cb98232e0d1c35d301a878cd6fd5f10c23a6be",
                "md5": "de960338e3bfd2612621f6d89a35af45",
                "sha256": "069c37c6476f9376bed7d7b51687c7d67142465a986412765287278ffd511fdc"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "de960338e3bfd2612621f6d89a35af45",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 534431,
            "upload_time": "2024-10-12T16:13:18",
            "upload_time_iso_8601": "2024-10-12T16:13:18.199518Z",
            "url": "https://files.pythonhosted.org/packages/2b/3b/1bec924ad27fe346574513cb98232e0d1c35d301a878cd6fd5f10c23a6be/avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7977a2d367190c89b3c80eaff6a7f9024ef2206c9dd325f642a493771cc9abe4",
                "md5": "c704a95adf30b78107f33a8ac636a7a9",
                "sha256": "295da2ce04c3dbc87257cb39b451cdaadd943aa5ca55bc2e2dd1e981115d2fc4"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c704a95adf30b78107f33a8ac636a7a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 536725,
            "upload_time": "2024-10-12T16:13:34",
            "upload_time_iso_8601": "2024-10-12T16:13:34.193918Z",
            "url": "https://files.pythonhosted.org/packages/79/77/a2d367190c89b3c80eaff6a7f9024ef2206c9dd325f642a493771cc9abe4/avdeepfake1m-0.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab26ee036e5960c1c223e30d45fb0ccb356b57627fb387ca41d64171ec4183c5",
                "md5": "6d26ca325c8acdcec4e81881bf83cbf7",
                "sha256": "863d902f979721ba2702d2d8334571871e183b09cfefb032e661812141d31cea"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d26ca325c8acdcec4e81881bf83cbf7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 623707,
            "upload_time": "2024-10-12T16:14:07",
            "upload_time_iso_8601": "2024-10-12T16:14:07.247905Z",
            "url": "https://files.pythonhosted.org/packages/ab/26/ee036e5960c1c223e30d45fb0ccb356b57627fb387ca41d64171ec4183c5/avdeepfake1m-0.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee2a32bab382932141595f402cfee73e3a24623e4b08f8089373e2da8e535a21",
                "md5": "2199f1782a5c3d6c0364e2a5d56cddac",
                "sha256": "02a5be08cdd03b22ae62002a53755624f486b61035a9dcbd246a018643b3e264"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2199f1782a5c3d6c0364e2a5d56cddac",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 642546,
            "upload_time": "2024-10-12T16:14:21",
            "upload_time_iso_8601": "2024-10-12T16:14:21.010923Z",
            "url": "https://files.pythonhosted.org/packages/ee/2a/32bab382932141595f402cfee73e3a24623e4b08f8089373e2da8e535a21/avdeepfake1m-0.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "038dca1c7f0e55256afaa75fcba38b58ce5ca7563b3b0564856f002bd723bd99",
                "md5": "9fb95f758253930b98e57f16b45231d0",
                "sha256": "305837c76e104d821afb927a9cba3c7497056dfcfac0d760dba8eaeee65b44b4"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9fb95f758253930b98e57f16b45231d0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 446497,
            "upload_time": "2024-10-12T16:12:50",
            "upload_time_iso_8601": "2024-10-12T16:12:50.758149Z",
            "url": "https://files.pythonhosted.org/packages/03/8d/ca1c7f0e55256afaa75fcba38b58ce5ca7563b3b0564856f002bd723bd99/avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c32292a5f0057c300342ec44e4855eb2a997e5d18dadc48714372adb45268f6",
                "md5": "8b6e2b8eb3be89d3a94f592024045ea6",
                "sha256": "18f35186481d86580dca23a3ab5bd1c394a6af8695ba0ecd335ab85226ec1a5f"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8b6e2b8eb3be89d3a94f592024045ea6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 450835,
            "upload_time": "2024-10-12T16:13:05",
            "upload_time_iso_8601": "2024-10-12T16:13:05.608742Z",
            "url": "https://files.pythonhosted.org/packages/9c/32/292a5f0057c300342ec44e4855eb2a997e5d18dadc48714372adb45268f6/avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7865a4c46547dbaeaf6b7ddb6ecfb2cc2a516f1a6f92e413304552b84471edb5",
                "md5": "9e5f176f20c72cf41763595a547b99c9",
                "sha256": "fa5dfaf1f50347be702d9f916f93abb292f3ba73f08d69716f4b0986794e6ffb"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9e5f176f20c72cf41763595a547b99c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 534245,
            "upload_time": "2024-10-12T16:13:20",
            "upload_time_iso_8601": "2024-10-12T16:13:20.137324Z",
            "url": "https://files.pythonhosted.org/packages/78/65/a4c46547dbaeaf6b7ddb6ecfb2cc2a516f1a6f92e413304552b84471edb5/avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bf6dfd1be1d76ee0251b2d9a7ceec0da3916e08302fa7c775d3a485dcee2a79",
                "md5": "527bf536f3b3a7caae009278387bcb0d",
                "sha256": "a0d45b2534c4983aedca4420cded12be9860298121be8132408c854ab71575c9"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "527bf536f3b3a7caae009278387bcb0d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 536561,
            "upload_time": "2024-10-12T16:13:35",
            "upload_time_iso_8601": "2024-10-12T16:13:35.728332Z",
            "url": "https://files.pythonhosted.org/packages/6b/f6/dfd1be1d76ee0251b2d9a7ceec0da3916e08302fa7c775d3a485dcee2a79/avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39d2f0e62d2ac4b955dd2e5b3c7c49b431eb00571fa543eff93af271ffd9fe66",
                "md5": "ec43ce2663642b59e63bc1ad0e572d30",
                "sha256": "cda756aea54eb032e1d88ac5badc28052ca7e2e163c5b106f88b21ba8538dab1"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec43ce2663642b59e63bc1ad0e572d30",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 485535,
            "upload_time": "2024-10-12T16:13:45",
            "upload_time_iso_8601": "2024-10-12T16:13:45.976018Z",
            "url": "https://files.pythonhosted.org/packages/39/d2/f0e62d2ac4b955dd2e5b3c7c49b431eb00571fa543eff93af271ffd9fe66/avdeepfake1m-0.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecfb0a418a1800bda0608579edc88950d2fa86036993f8b218eb5060ad0bdd68",
                "md5": "a95dd55e783f193bab7450958c08e04a",
                "sha256": "53e4574cd0ee9a853b88c6a17f6e4109bada9efd46c90d5bc564d5379d01e1e0"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a95dd55e783f193bab7450958c08e04a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 623651,
            "upload_time": "2024-10-12T16:14:08",
            "upload_time_iso_8601": "2024-10-12T16:14:08.386852Z",
            "url": "https://files.pythonhosted.org/packages/ec/fb/0a418a1800bda0608579edc88950d2fa86036993f8b218eb5060ad0bdd68/avdeepfake1m-0.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6725bec43bb0992fd80ddfe5fe51cf225da32ceb18bbb03ca9b2d6650b93abc7",
                "md5": "5c3ee0a4b252a5d9415d14c160306222",
                "sha256": "128dc948935df589d0a54247ce4df08459c661caa45beed78d6c65bbcd8abe3a"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c3ee0a4b252a5d9415d14c160306222",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 642443,
            "upload_time": "2024-10-12T16:14:22",
            "upload_time_iso_8601": "2024-10-12T16:14:22.215124Z",
            "url": "https://files.pythonhosted.org/packages/67/25/bec43bb0992fd80ddfe5fe51cf225da32ceb18bbb03ca9b2d6650b93abc7/avdeepfake1m-0.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd8e7e57daebea78d05e1fe58ae1b326e73d2a9fb9a93a91d4574728365a5499",
                "md5": "c66416a1d2a81f7f90c82c8c06c56694",
                "sha256": "f2bf29d3c5fa65f8108cfcaaf29f0e2bd06e4cc64975a914a74420b269f16a40"
            },
            "downloads": -1,
            "filename": "avdeepfake1m-0.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c66416a1d2a81f7f90c82c8c06c56694",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 647939,
            "upload_time": "2024-10-12T16:14:23",
            "upload_time_iso_8601": "2024-10-12T16:14:23.677126Z",
            "url": "https://files.pythonhosted.org/packages/cd/8e/7e57daebea78d05e1fe58ae1b326e73d2a9fb9a93a91d4574728365a5499/avdeepfake1m-0.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-12 16:14:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ControlNet",
    "github_project": "AV-Deepfake1M",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "avdeepfake1m"
}
        
Elapsed time: 0.34671s