Downloads raw page from google images and searches for images that can be downloaded
Project description
Google image downloader
======================= Python script that lets you search for urls of images from google images using your tags and/or download them automatically onto you computer
Documentation
1. Installation
Download simple-image-download.py from my github and use it in your project Use command pip install simple_image_download
Note on Windows for python-magic 0.4.18 which is used for this Project
You'll need DLLs for libmagic Here the includes binaries to PyPI.
Or Just run:
pip install python-magic-bin==0.4.14
Window 64-bit!!!
If you are using a 64-bit build of python, you'll need 64-bit libmagic binaries which can be found here: https://github.com/pidydx/libmagicwin64. Drop the dlls in C:\Windows\System32 and python magic will import correctly. -- Newer version can be found here: https://github.com/nscaife/file-windows.
2. Quickstart
The main class is Download import it in your project as so:
from simple_image_download import Downloader simp
Then create a new class instance
response = simp.simple_image_download()
Next you can use response to activate methods:
response.download(keywords, [limit])
Downloads Images
from simple_image_download import Downloader simp
response = simp.simple_image_download()
response.download(‘bear supermario’, limit=5)
Get Only the Pictures URL and Store them in the Class cache:
from simple_image_download import Downloader simp
response = simp.simple_image_download()
response.search_urls(‘bear supermario’, limit=15)
for url in response.cache:
print(url)
3. API
class simple_image_download.Downloader(extensions=None)
Parameters:
- extension -- Type of extension allowed to be downloaded, if left None defaults are: {‘.jpg’, ‘.png’, ‘.ico’, ‘.gif’, ‘.jpeg’}
Functions
search_urls(keywords, limit, verbose=False, cache=True, timer=None)
This functions returns and Caches URLs of Pictures based on:
- Keywords for the search
- File Extensions based on the class instance you define
- How many picture per keyword you need with the limit parameter
-
verbose => Output the links in the terminal in real time
-
cache => if set to False, the URLs won’t be stored in the class instance, default is True
-
timer => Default is set to 100_000 Looks up, defines the number of WebPages's 'chunks' will search. In the function scan_webpage a 100_000 lookkup means that it will loop up to 100_000 before stop.
Usefule in case of a picture that is not been found, so won't allow to loop indefinitely.
download(keywords, limit, verbose=False, cache=True, download_cache=False, timer=None)
This functions downloads pictures into defined class instance’s directory:
- Keywords for the search
- File Extensions based on the class instance you define
- How many picture per keyword you need with the limit parameter
- The directory is named after the Keyword.
- Pictures have a unique ID, so that multiple downloads can persome
-
verbose => Output the links in the terminal in real time
-
cache => if set to False, the URLs won’t be stored in the class instance, default is True
-
download_cache => allows to download all the URLs stored in the Downloader's instance Cache. Remember to clear the cache afterwards with Downloader.flush_cache
-
timer => Default is set to 100_000 Looks up, defines the number of WebPages's 'chunks' will search. In the function scan_webpage a 100_000 lookkup means that it will loop up to 100_000 before stop.
Usefule in case of a picture that is not been found, so won't allow to loop indefinitely.
flash_cache():
Clears the class instance’s cache which is stored in instance.cached_urls
Properties
directory
The directory where the Picture are saved, default is in ‘simple_images/’. You can set the default directory like this:
my_downloader = simp.simple_image_download()
my_downloader.directory = ‘my_dir/bla/’
get_dirs
Set of all sub Direcotories where the picture where saved .
cached_urls
All of the cached urls perfomed with the seach of the function Downloader.get_urls()
Is a Dictionary with this schema:
{'file_name': [Dir_path, URL_content]}
User Downloader.flash_cache() to clear it or run mydownloader.download(download_cache=True) to download the whole content.
3. Example
Example are on my [github](https://github.com/Koubae/simple_image_download/tree/master/Example)
End
If you have any ideas, try pull request or write to me so i will try to add new things in free time. I know my code is pretty basic but i just started working with python and i needed that class for urls and images to pass my semester so i did only what i needed.
I hope that we will make this class more usefull together, i will try to post updates with yours and mine ideas
Ps. Thx to CharlesMogan for adding so many fixes and new features.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simple_image_download-0.5.tar.gz
.
File metadata
- Download URL: simple_image_download-0.5.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.62.3 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1717170329b63948bbe9b986e2eecb9a7e4f97fe1dc98b0a7f7321985ef6c75e |
|
MD5 | 11b429efdc9ac4e4a958db8c8a891467 |
|
BLAKE2b-256 | 8474e0a4aaefb0692ceb3eaf370bcd609f21f0b71ed43ba48604a385409136bf |
File details
Details for the file simple_image_download-0.5-py3-none-any.whl
.
File metadata
- Download URL: simple_image_download-0.5-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.62.3 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fac545268efabc76e3db15800ae9ca38df3a512306398977cdba05eb20228204 |
|
MD5 | 2ce422903602aa277051974b8d6ddbe2 |
|
BLAKE2b-256 | a8f94317510e27bbce7c6d0b287d44400f56ee93cecbe305cf520c3328dac3f7 |