A high-performance image scraper designed to automatically extract and download visual assets. It can capture both direct <img> tags and CSS background-image resources from virtually any target URL.
| Tool | Purpose |
|---|---|
| Python | Development language |
| Requests | HTTP request handling |
| BeautifulSoup4 | HTML parsing and extraction |
Make sure Python 3.7+ is installed.
pip install requests beautifulsoup41. Clone the repository
git clone https://github.com/sebastiancoronadev/WebScraperImages.git
cd WebScraperImages2. Configuration: Open scraper.py and modify the target_url variable.
3. Run:
python scraper.pyThis project was independently developed as a personal programming challenge. The technical idea and motivation for building my own version came after exploring the repository of @SamuelPerezCO, whose workflow served as inspiration.
Distributed under the MIT License. See LICENSE for details.
Un scraper de imágenes de alto rendimiento diseñado para extraer y descargar recursos visuales de forma automatizada. Permite capturar tanto etiquetas <img> directas como imágenes de fondo (background-image) desde cualquier URL objetivo.
| Herramienta | Propósito |
|---|---|
| Python | Lenguaje de desarrollo |
| Requests | Gestión de peticiones HTTP |
| BeautifulSoup4 | Parseo y extracción de HTML |
Asegúrate de tener instalado Python 3.7+.
pip install requests beautifulsoup41. Clonar el repositorio
git clone https://github.com/sebastiancoronadev/WebScraperImages.git
cd WebScraperImages2. Configuración: Abre scraper.py y modifica la variable url_objetivo.
3. Ejecución
python scraper.pyEste proyecto fue desarrollado de forma independiente como un reto personal de programación. La idea técnica y la motivación para construir mi propia versión surgieron al observar el repositorio de @SamuelPerezCO, a quien agradezco por la inspiración en el flujo de trabajo.
Distribuido bajo la licencia MIT. Consulta LICENSE para más información.