https://github.com/leoho0722/naver-blog-image-downloader
Naver Blog Images Downloader (for funny!!!)
https://github.com/leoho0722/naver-blog-image-downloader
ai-coding cursor naver-blog python selenium vibe-coding
Last synced: 2 months ago
JSON representation
Naver Blog Images Downloader (for funny!!!)
- Host: GitHub
- URL: https://github.com/leoho0722/naver-blog-image-downloader
- Owner: leoho0722
- Created: 2025-05-30T09:06:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-05-30T09:20:22.000Z (4 months ago)
- Last Synced: 2025-05-30T12:08:15.436Z (4 months ago)
- Topics: ai-coding, cursor, naver-blog, python, selenium, vibe-coding
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Naver Blog Image Downloader
## Prerequisites
* Python 3.10 or above
* Google Chrome (**currently supported**)## Environments
### Create Python Virtual Environment
* macOS/Linux
```bash
python3.10 -m venv .venv
```* Windows
```bash
python -m venv .venv
```### Activate Python Virtual Environment
* macOS/Linux
```bash
source .venv/bin/activate
```* Windows
```bash
.venv\Scripts\activate
```### Install Python Dependencies
* macOS/Linux/Windows
```bash
pip install -r requirements.txt
```## How to use
### Arguments
| Args name | Type | Default | Description |
|--------------|--------|----------|------------------------------|
| `--url` | `str` | `None` | Naver Blog URL |
| `--output` | `str` | `images` | Image output directory |
| `--headless` | `bool` | `True` | Whether to use headless mode |### Example
#### Normal mode (will open a browser window)
```bash
python naver_blog_image_downloader.py \
--url https://blog.naver.com/edament/223882152167 \
--output images
```#### Headless mode (will not open a browser window)
```bash
python naver_blog_image_downloader.py \
--url https://blog.naver.com/edament/223882152167 \
--output images \
--headless
```## Current Limitations
* Uses Selenium as the only method for downloading images
* Only uses a single thread for downloading images## Current Issues
* Sometimes the downloaded images may have incorrect ordering