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.
- Host: GitHub
- URL: https://github.com/f0rkr/zpyder
- Owner: f0rkr
- Created: 2023-06-23T13:20:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-17T21:38:47.000Z (over 1 year ago)
- Last Synced: 2025-01-27T23:14:27.937Z (4 months ago)
- Topics: images, python, python3, scraper, scraping
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
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.