An open API service indexing awesome lists of open source software.

https://github.com/f0rkr/zpyder

Zpyder is a powerfull tools that allows to extract all images recursively from a website.
https://github.com/f0rkr/zpyder

images python python3 scraper scraping

Last synced: 2 months ago
JSON representation

Zpyder is a powerfull tools that allows to extract all images recursively from a website.

Awesome Lists containing this project

README

        

# Zpyder

## Usage

```bash
> python3.11 -m venv env
> source env/bin/activate
> pip install -r requirements.txt
> chmod +x zpyder.py
> ./zpyder [-h] [-r] [-l LEVEL] [-p PATH] URL
```

## Options

* `-r`: Recursively downloads the images in a URL received as a parameter.
* `-l`: Indicates the maximum depth level of the recursive download. If not indicated, it will be 5.
* `-p`: Indicates the path where the downloaded files will be saved. If not specified, `./data/` will be used.

## Supported file extensions

* `.jpg/jpeg`
* `.png`
* `.gif`
* `.bmp`

## Example

To recursively download all the images from the website `https://example.com`, run the following command:

```bash
> ./zpyder -r https://example.com
```

This will download all the images in the website, including the images in subdirectories.

## Contributing

Contributions are welcome! Please open a pull request on GitHub.

## License

This project is licensed under the MIT License.