πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
Book a DemoInstallSign in
Socket

leakify

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leakify

Download photos and videos from leakedzone.com

1.2.6
PyPI
Maintainers
1
# Leakify

An async-powered CLI to bulk-download photos and videos from [leakedzone.com](https://leakedzone.com). Leakify crawls a model’s public gallery, grabs full-resolution media URLs, and uses `ffmpeg` under the hood for fast, reliable downloads.

---

## πŸš€ Key Features

- **Asynchronous & concurrent** downloading with configurable batch size  
- **Auto-pagination**: crawls all pages of photos and videos  
- **Thumbnail β†’ full-res** URL conversion  
- **HLS & detail-page scraping** for videos  
- **Real-time terminal status** (via `tabulate` + `colorama`)  
- **One-line install** and **one-command** usage  

---

## πŸ“¦ Installation

1. Ensure you have:
   - Python 3.7+
   - `ffmpeg` on your `PATH`
2. Install from PyPI:
   ```bash
   pip install leakify

πŸ’‘ Usage

leakify -u <MODEL_USERNAME> [options]
OptionDescriptionDefault
-u, --user(required) Model’s username
-p, --photosPhotos onlyβœ—
-v, --videosVideos onlyβœ—
-b, --batch NMax concurrent downloads (1–100)10
-h, --helpShow help and exit

Examples

  • All media (photos + videos):

    leakify -u jane_doe
    
  • Photos only, batch of 5:

    leakify -u jane_doe --photos -b 5
    
  • Videos only, batch of 20:

    leakify -u jane_doe --videos -b 20
    

πŸ“‚ Output Layout

Downloads land in a folder named after the model:

./jane_doe/
β”œβ”€β”€ photos/
β”‚   β”œβ”€β”€ 001.jpg
β”‚   β”œβ”€β”€ 002.jpg
β”‚   └── …
└── videos/
    β”œβ”€β”€ a1b2c3d4e5f6.mp4
    β”œβ”€β”€ f6e5d4c3b2a1.mp4
    └── …

πŸ›  Development

git clone https://github.com/andrilchakraborty/leakify.git
cd leakify
pip install -e .[test]
pytest
flake8 leakify

Feel free to open issues or PRs on the GitHub repo.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts