zoom-deep-clean-enhanced


Namezoom-deep-clean-enhanced JSON
Version 2.4.2 PyPI version JSON
download
home_pagehttps://github.com/PHLthy215/zoom-deep-clean-enhanced
SummaryEnhanced VM-Aware & System-Wide Zoom cleanup utility for macOS
upload_time2025-08-07 09:11:39
maintainerNone
docs_urlNone
authorPHLthy215
requires_python>=3.7
licenseNone
keywords zoom cleanup privacy macos vm virtual-machine system-administration security fingerprint-removal pypi-ready
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Zoom Deep Clean Enhanced

![Tests](https://github.com/PHLthy215/zoom-deep-clean-enhanced/workflows/Tests/badge.svg)
![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)
![macOS](https://img.shields.io/badge/platform-macOS-lightgrey.svg)
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)

Complete Zoom removal tool for macOS with VM awareness and device fingerprint elimination.

**Version: 2.3.0**

## 🚀 Quick Start

```bash
# Install
pip3 install zoom-deep-clean-enhanced

# Preview cleanup (safe)
zoom-deep-clean-enhanced --dry-run --verbose

# Run cleanup
zoom-deep-clean-enhanced --force
```

📖 **[Full Documentation](docs/)** | 🚨 **[Troubleshooting](docs/troubleshooting.md)** | 💻 **[Development](docs/development.md)**

## ✨ Features

### 🖥️ VM Support
- **VMware Fusion, VirtualBox, Parallels Desktop** detection
- **VM-aware process management** and cleanup
- **Shared resource cleanup** between host and VMs

### 🔍 Complete Removal
- **System-wide file search** across all macOS locations
- **Keychain entries** and authentication tokens
- **Launch agents/daemons** and privileged helpers
- **WebKit storage** and HTTP caches
- **Preference files** and application data

### 🛡️ Safety & Security
- **Dry-run mode** for safe preview
- **Comprehensive logging** and error handling
- **Input validation** and security checks
- **Automatic backups** before cleanup

## 📦 Installation

```bash
# From PyPI
pip3 install zoom-deep-clean-enhanced

# From source
git clone https://github.com/PHLthy215/zoom-deep-clean-enhanced.git
cd zoom-deep-clean-enhanced
pip3 install -e .
```

## 🖥️ Usage

### Command Line
```bash
# Basic usage
zoom-deep-clean-enhanced --force

# With GUI
python3 -m zoom_deep_clean.gui_enhanced

# Common options
zoom-deep-clean-enhanced --dry-run --verbose    # Safe preview
zoom-deep-clean-enhanced --force --system-reboot    # Full cleanup + reboot
```

### Python API
```python
from zoom_deep_clean import ZoomDeepCleanerEnhanced

cleaner = ZoomDeepCleanerEnhanced(verbose=True, dry_run=True)
success = cleaner.run_deep_clean()
```

## ⚙️ Requirements

- **macOS 12.x+** (Monterey, Ventura, Sonoma, Sequoia)
- **Python 3.9+**
- **sudo privileges** (for system-level cleanup)

## 📁 Output Files

- **Log**: `~/Documents/zoom_deep_clean_enhanced.log`
- **Report**: `~/Documents/zoom_cleanup_enhanced_report.json`

## ⚠️ Important Notes

- **Complete removal**: Reinstallation of Zoom required after cleanup
- **VM awareness**: Automatically detects and stops VMs during cleanup
- **System reboot**: Optional automatic reboot ensures complete cleanup
- **Always preview first**: Use `--dry-run` to see what will be removed

## 📄 License

MIT License

## 🔗 Links

- **Documentation**: [docs/](docs/)
- **Issues**: [GitHub Issues](https://github.com/PHLthy215/zoom-deep-clean-enhanced/issues)
- **PyPI**: [zoom-deep-clean-enhanced](https://pypi.org/project/zoom-deep-clean-enhanced/)

---

**⚠️ Use at your own risk. Always run `--dry-run` first to preview changes.**

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PHLthy215/zoom-deep-clean-enhanced",
    "name": "zoom-deep-clean-enhanced",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "zoom, cleanup, privacy, macos, vm, virtual-machine, system-administration, security, fingerprint-removal, pypi-ready",
    "author": "PHLthy215",
    "author_email": "PHLthy215@example.com",
    "download_url": "https://files.pythonhosted.org/packages/7e/67/2f4203f080cd17d20105c34f7b17a9dd99f2927643122b5375072b02fb98/zoom_deep_clean_enhanced-2.4.2.tar.gz",
    "platform": null,
    "description": "# Zoom Deep Clean Enhanced\n\n![Tests](https://github.com/PHLthy215/zoom-deep-clean-enhanced/workflows/Tests/badge.svg)\n![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)\n![macOS](https://img.shields.io/badge/platform-macOS-lightgrey.svg)\n![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)\n\nComplete Zoom removal tool for macOS with VM awareness and device fingerprint elimination.\n\n**Version: 2.3.0**\n\n## \ud83d\ude80 Quick Start\n\n```bash\n# Install\npip3 install zoom-deep-clean-enhanced\n\n# Preview cleanup (safe)\nzoom-deep-clean-enhanced --dry-run --verbose\n\n# Run cleanup\nzoom-deep-clean-enhanced --force\n```\n\n\ud83d\udcd6 **[Full Documentation](docs/)** | \ud83d\udea8 **[Troubleshooting](docs/troubleshooting.md)** | \ud83d\udcbb **[Development](docs/development.md)**\n\n## \u2728 Features\n\n### \ud83d\udda5\ufe0f VM Support\n- **VMware Fusion, VirtualBox, Parallels Desktop** detection\n- **VM-aware process management** and cleanup\n- **Shared resource cleanup** between host and VMs\n\n### \ud83d\udd0d Complete Removal\n- **System-wide file search** across all macOS locations\n- **Keychain entries** and authentication tokens\n- **Launch agents/daemons** and privileged helpers\n- **WebKit storage** and HTTP caches\n- **Preference files** and application data\n\n### \ud83d\udee1\ufe0f Safety & Security\n- **Dry-run mode** for safe preview\n- **Comprehensive logging** and error handling\n- **Input validation** and security checks\n- **Automatic backups** before cleanup\n\n## \ud83d\udce6 Installation\n\n```bash\n# From PyPI\npip3 install zoom-deep-clean-enhanced\n\n# From source\ngit clone https://github.com/PHLthy215/zoom-deep-clean-enhanced.git\ncd zoom-deep-clean-enhanced\npip3 install -e .\n```\n\n## \ud83d\udda5\ufe0f Usage\n\n### Command Line\n```bash\n# Basic usage\nzoom-deep-clean-enhanced --force\n\n# With GUI\npython3 -m zoom_deep_clean.gui_enhanced\n\n# Common options\nzoom-deep-clean-enhanced --dry-run --verbose    # Safe preview\nzoom-deep-clean-enhanced --force --system-reboot    # Full cleanup + reboot\n```\n\n### Python API\n```python\nfrom zoom_deep_clean import ZoomDeepCleanerEnhanced\n\ncleaner = ZoomDeepCleanerEnhanced(verbose=True, dry_run=True)\nsuccess = cleaner.run_deep_clean()\n```\n\n## \u2699\ufe0f Requirements\n\n- **macOS 12.x+** (Monterey, Ventura, Sonoma, Sequoia)\n- **Python 3.9+**\n- **sudo privileges** (for system-level cleanup)\n\n## \ud83d\udcc1 Output Files\n\n- **Log**: `~/Documents/zoom_deep_clean_enhanced.log`\n- **Report**: `~/Documents/zoom_cleanup_enhanced_report.json`\n\n## \u26a0\ufe0f Important Notes\n\n- **Complete removal**: Reinstallation of Zoom required after cleanup\n- **VM awareness**: Automatically detects and stops VMs during cleanup\n- **System reboot**: Optional automatic reboot ensures complete cleanup\n- **Always preview first**: Use `--dry-run` to see what will be removed\n\n## \ud83d\udcc4 License\n\nMIT License\n\n## \ud83d\udd17 Links\n\n- **Documentation**: [docs/](docs/)\n- **Issues**: [GitHub Issues](https://github.com/PHLthy215/zoom-deep-clean-enhanced/issues)\n- **PyPI**: [zoom-deep-clean-enhanced](https://pypi.org/project/zoom-deep-clean-enhanced/)\n\n---\n\n**\u26a0\ufe0f Use at your own risk. Always run `--dry-run` first to preview changes.**\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Enhanced VM-Aware & System-Wide Zoom cleanup utility for macOS",
    "version": "2.4.2",
    "project_urls": {
        "Bug Reports": "https://github.com/PHLthy215/zoom-deep-clean-enhanced/issues",
        "Documentation": "https://github.com/PHLthy215/zoom-deep-clean-enhanced/blob/main/README.md",
        "Homepage": "https://github.com/PHLthy215/zoom-deep-clean-enhanced",
        "Source": "https://github.com/PHLthy215/zoom-deep-clean-enhanced"
    },
    "split_keywords": [
        "zoom",
        " cleanup",
        " privacy",
        " macos",
        " vm",
        " virtual-machine",
        " system-administration",
        " security",
        " fingerprint-removal",
        " pypi-ready"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fce3de43782bd5dfcb9f6e22970d414d283176303cf7741db87441184fbf0cb",
                "md5": "81b5f9638cdcefb99f44d1635757bf2d",
                "sha256": "ce0874cd714008ded5aa96129dc3daa5683281e63301c9ef6d776c73fe08c24e"
            },
            "downloads": -1,
            "filename": "zoom_deep_clean_enhanced-2.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "81b5f9638cdcefb99f44d1635757bf2d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 112781,
            "upload_time": "2025-08-07T09:11:37",
            "upload_time_iso_8601": "2025-08-07T09:11:37.852213Z",
            "url": "https://files.pythonhosted.org/packages/9f/ce/3de43782bd5dfcb9f6e22970d414d283176303cf7741db87441184fbf0cb/zoom_deep_clean_enhanced-2.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e672f4203f080cd17d20105c34f7b17a9dd99f2927643122b5375072b02fb98",
                "md5": "b80002809dbb1fbf78279af5ff6722c2",
                "sha256": "5d1b67878e28177ffae7f29dc18947ef5dce95b9827aae80ffd30369ece79fe1"
            },
            "downloads": -1,
            "filename": "zoom_deep_clean_enhanced-2.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b80002809dbb1fbf78279af5ff6722c2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 134165,
            "upload_time": "2025-08-07T09:11:39",
            "upload_time_iso_8601": "2025-08-07T09:11:39.126040Z",
            "url": "https://files.pythonhosted.org/packages/7e/67/2f4203f080cd17d20105c34f7b17a9dd99f2927643122b5375072b02fb98/zoom_deep_clean_enhanced-2.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-07 09:11:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PHLthy215",
    "github_project": "zoom-deep-clean-enhanced",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "zoom-deep-clean-enhanced"
}
        
Elapsed time: 0.91561s