yandex2lightroom


Nameyandex2lightroom JSON
Version 1.1.1.0 PyPI version JSON
download
home_pagehttps://github.com/sto3014/yandex2lightroom-git
SummaryPython Script to download images from Yandex.Images for the use in Adobe Lightroom.
upload_time2024-01-20 08:06:11
maintainer
docs_urlNone
authorDieter Stockhausen
requires_python
licenseMIT
keywords yandex images download save terminal command-line scrapper lightroom
VCS
bugtrack_url
requirements beautifulsoup4 certifi chardet dataclasses dataclasses-json idna lxml marshmallow marshmallow-enum mypy-extensions requests selenium selenium-wire soupsieve stringcase typing typing-extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Yandex to Lightroom
Python Script to download images from Yandex.Images for using in Adobe Lightroom.

# Features
* Checking for captcha presence
* Many filters
* Multiproccessing is available (option `--num-workers`)
* Existing images can be skipped.  
* Set search keywords as Lightroom keywords.
* Set image url as creator web address (IPTC)

# Main requirements
* Python 3.9+ 
* Selenium Wire 4.5.4+  
* Exiftool 12.13+
* Chrome, Firefox, Safari and Edge are supported. 

# Installation
1. [Python](https://www.python.org/downloads/)
2. PIP 
   * Windows
        * python -m pip install --upgrade pip
   * macOS
        * curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py  
        * python get-pip.py
3. [Selenium Wire](https://pypi.org/project/selenium-wire/) 
    * pip install selenium-wire
4. [Selenium driver executable](https://www.selenium.dev/downloads/)  
   Get the right driver for your browser (see browser section on the link above)
   and platform. Firefox, Chrome, Safari and Edge are supported.   
   Use option `--driver-path` to specify the driver's path or add the executable in your PATH.  
   Additional helpful pages:
    * [ChromeDriver - WebDriver for Chrome](https://chromedriver.chromium.org/downloads)
    * [How To Run Test On macOS Using Selenium Safari Driver](https://www.lambdatest.com/blog/selenium-safaridriver-macos/)
5. [Exiftool](https://exiftool.org)  
   The exiftool executable must added in your PATH. For macOS, it is done automatically by putting it into
   /usr/local/bin. For Windows, you must extend your PATH variable. 
6. Yandex to Lightroom  
   * pip install yandex2lightroom


# Examples
Simple example using [Chrome WebDriver](https://sites.google.com/a/chromium.org/chromedriver/):

```$ yandex2lightroom Chrome --keywords "vodka, bears, balalaika" --limit 10```

Example of using keywords from input file with specific image extension/format:

```$ yandex2lightroom Chrome --keywords_from_file input_example.txt --itype=png```

All other information can be obtained with the `--help` argument.

# Use case textures for Photoshop
Yandex2Lightroom sets keywords in the images after download. The keywords are the same as you define for the searches
itself.
To build a useful library for wall textures in Lightroom we need different searches with meaningful keywords.
We should place these searches - better: the corresponding Yandex2Lightroom commands - into a batch or shell script file.
Thereby, we are able to repeat the download commands to a later point in time again.
For Windows ``y2lr-texture-wall.bat``

    @echo off
    rem brick, cracked
    yandex2lightroom Chrome --keywords "wall white brick cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red brick cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black brick cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow brick cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    rem brick, old
    yandex2lightroom Chrome --keywords "wall white old brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red old brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black old brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow old brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    rem concrete cracked
    yandex2lightroom Chrome --keywords "wall white concrete cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red concrete cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black concrete cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow concrete cracked" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    rem concrete old
    yandex2lightroom Chrome --keywords "wall white old concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red old concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black old concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow old concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    rem brick, new
    yandex2lightroom Chrome --keywords "wall white new brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red new brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black new brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow new brick" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    rem concrete, new
    yandex2lightroom Chrome --keywords "wall white new concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall red new concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall black new concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls
    yandex2lightroom Chrome --keywords "wall yellow new concrete" --limit 50 --isize large --skip-existing  --output-directory D:\Users\johndoe\Lightroom\Yandex\photos\library\texture\walls

For macOS ``y2lr-texture-wall.sh``

    #!/usr/bin/env bash
    # brick, cracked
    yandex2lightroom Chrome --keywords "wall white brick cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red brick cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black brick cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow brick cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    # brick, old
    yandex2lightroom Chrome --keywords "wall white old brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red old brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black old brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow old brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    # concrete cracked
    yandex2lightroom Chrome --keywords "wall white concrete cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red concrete cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black concrete cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow concrete cracked" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    # concrete old
    yandex2lightroom Chrome --keywords "wall white old concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red old concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black old concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow old concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    # brick, new
    yandex2lightroom Chrome --keywords "wall white new brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red new brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black new brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow new brick" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    # concrete, new
    yandex2lightroom Chrome --keywords "wall white new concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall red new concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall black new concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls
    yandex2lightroom Chrome --keywords "wall yellow new concrete" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls


After the images were downloaded, import them into LR:
* Just add, of course.
* Maybe not use your standard metadata preset.

Please check the keywords. Sometimes LR does not import them all. In Adobe Bridge they are fine, but not in LR. If so,
select all images and read in the metadata again.   
Also, some images may have no keywords because the exiftool run into a problem. There is a smart collection in LR to 
look for images without keywords. So at least you have a chance to set keywords manually.

# See also
The Lightroom plugin [Import From Yandex](https://github.com/sto3014/LRImportFromYandex) offers an integration of
Yandex to Lightroom into Lightroom.

# Acknowledgements
Special thanks to Alexander Kozlov (https://pypi.org/project/yandex-images-download/). He did most of the work through 
his project.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sto3014/yandex2lightroom-git",
    "name": "yandex2lightroom",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "yandex images download save terminal command-line scrapper lightroom",
    "author": "Dieter Stockhausen",
    "author_email": "dieter@schwingenhausen.at",
    "download_url": "https://files.pythonhosted.org/packages/be/a1/e929e241846765da80243fdd435e97bbc5984fb4f7428e0a48dda6731c58/yandex2lightroom-1.1.1.0.tar.gz",
    "platform": null,
    "description": "# Yandex to Lightroom\nPython Script to download images from Yandex.Images for using in Adobe Lightroom.\n\n# Features\n* Checking for captcha presence\n* Many filters\n* Multiproccessing is available (option `--num-workers`)\n* Existing images can be skipped.  \n* Set search keywords as Lightroom keywords.\n* Set image url as creator web address (IPTC)\n\n# Main requirements\n* Python 3.9+ \n* Selenium Wire 4.5.4+  \n* Exiftool 12.13+\n* Chrome, Firefox, Safari and Edge are supported. \n\n# Installation\n1. [Python](https://www.python.org/downloads/)\n2. PIP \n   * Windows\n        * python -m pip install --upgrade pip\n   * macOS\n        * curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py  \n        * python get-pip.py\n3. [Selenium Wire](https://pypi.org/project/selenium-wire/) \n    * pip install selenium-wire\n4. [Selenium driver executable](https://www.selenium.dev/downloads/)  \n   Get the right driver for your browser (see browser section on the link above)\n   and platform. Firefox, Chrome, Safari and Edge are supported.   \n   Use option `--driver-path` to specify the driver's path or add the executable in your PATH.  \n   Additional helpful pages:\n    * [ChromeDriver - WebDriver for Chrome](https://chromedriver.chromium.org/downloads)\n    * [How To Run Test On macOS Using Selenium Safari Driver](https://www.lambdatest.com/blog/selenium-safaridriver-macos/)\n5. [Exiftool](https://exiftool.org)  \n   The exiftool executable must added in your PATH. For macOS, it is done automatically by putting it into\n   /usr/local/bin. For Windows, you must extend your PATH variable. \n6. Yandex to Lightroom  \n   * pip install yandex2lightroom\n\n\n# Examples\nSimple example using [Chrome WebDriver](https://sites.google.com/a/chromium.org/chromedriver/):\n\n```$ yandex2lightroom Chrome --keywords \"vodka, bears, balalaika\" --limit 10```\n\nExample of using keywords from input file with specific image extension/format:\n\n```$ yandex2lightroom Chrome --keywords_from_file input_example.txt --itype=png```\n\nAll other information can be obtained with the `--help` argument.\n\n# Use case textures for Photoshop\nYandex2Lightroom sets keywords in the images after download. The keywords are the same as you define for the searches\nitself.\nTo build a useful library for wall textures in Lightroom we need different searches with meaningful keywords.\nWe should place these searches - better: the corresponding Yandex2Lightroom commands - into a batch or shell script file.\nThereby, we are able to repeat the download commands to a later point in time again.\nFor Windows ``y2lr-texture-wall.bat``\n\n    @echo off\n    rem brick, cracked\n    yandex2lightroom Chrome --keywords \"wall white brick cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red brick cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black brick cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow brick cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    rem brick, old\n    yandex2lightroom Chrome --keywords \"wall white old brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red old brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black old brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow old brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    rem concrete cracked\n    yandex2lightroom Chrome --keywords \"wall white concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    rem concrete old\n    yandex2lightroom Chrome --keywords \"wall white old concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red old concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black old concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow old concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    rem brick, new\n    yandex2lightroom Chrome --keywords \"wall white new brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red new brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black new brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow new brick\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    rem concrete, new\n    yandex2lightroom Chrome --keywords \"wall white new concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall red new concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall black new concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n    yandex2lightroom Chrome --keywords \"wall yellow new concrete\" --limit 50 --isize large --skip-existing  --output-directory D:\\Users\\johndoe\\Lightroom\\Yandex\\photos\\library\\texture\\walls\n\nFor macOS ``y2lr-texture-wall.sh``\n\n    #!/usr/bin/env bash\n    # brick, cracked\n    yandex2lightroom Chrome --keywords \"wall white brick cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red brick cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black brick cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow brick cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    # brick, old\n    yandex2lightroom Chrome --keywords \"wall white old brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red old brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black old brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow old brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    # concrete cracked\n    yandex2lightroom Chrome --keywords \"wall white concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow concrete cracked\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    # concrete old\n    yandex2lightroom Chrome --keywords \"wall white old concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red old concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black old concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow old concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    # brick, new\n    yandex2lightroom Chrome --keywords \"wall white new brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red new brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black new brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow new brick\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    # concrete, new\n    yandex2lightroom Chrome --keywords \"wall white new concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall red new concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall black new concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n    yandex2lightroom Chrome --keywords \"wall yellow new concrete\" --limit 50 --isize large --skip-existing  --output-directory /Users/johndoe/Lightroom/Yandex/photos/library/texture/walls\n\n\nAfter the images were downloaded, import them into LR:\n* Just add, of course.\n* Maybe not use your standard metadata preset.\n\nPlease check the keywords. Sometimes LR does not import them all. In Adobe Bridge they are fine, but not in LR. If so,\nselect all images and read in the metadata again.   \nAlso, some images may have no keywords because the exiftool run into a problem. There is a smart collection in LR to \nlook for images without keywords. So at least you have a chance to set keywords manually.\n\n# See also\nThe Lightroom plugin [Import From Yandex](https://github.com/sto3014/LRImportFromYandex) offers an integration of\nYandex to Lightroom into Lightroom.\n\n# Acknowledgements\nSpecial thanks to Alexander Kozlov (https://pypi.org/project/yandex-images-download/). He did most of the work through \nhis project.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python Script to download images from Yandex.Images for the use in Adobe Lightroom.",
    "version": "1.1.1.0",
    "project_urls": {
        "Download": "https://github.com/sto3014/yandex2lightroom-git/archive/main.zip",
        "Homepage": "https://github.com/sto3014/yandex2lightroom-git"
    },
    "split_keywords": [
        "yandex",
        "images",
        "download",
        "save",
        "terminal",
        "command-line",
        "scrapper",
        "lightroom"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7ac7d6194e6c3cf0839ad487354b533f4c577f4699491eb3b9e56deb96ff25e",
                "md5": "66243d510244b019d87f700989cfd542",
                "sha256": "e791e0f7c2a63e5b2a2f308839907dae22213393fe056f5b6c99fd2c8d0f29b4"
            },
            "downloads": -1,
            "filename": "yandex2lightroom-1.1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "66243d510244b019d87f700989cfd542",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 14686,
            "upload_time": "2024-01-20T08:06:10",
            "upload_time_iso_8601": "2024-01-20T08:06:10.293888Z",
            "url": "https://files.pythonhosted.org/packages/d7/ac/7d6194e6c3cf0839ad487354b533f4c577f4699491eb3b9e56deb96ff25e/yandex2lightroom-1.1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bea1e929e241846765da80243fdd435e97bbc5984fb4f7428e0a48dda6731c58",
                "md5": "6db2a004d9b835ce10593aa7ea8203ce",
                "sha256": "c8fa8b56f6d9feabc975706a3d770851e92874f91f1ceabe1efb21e36677c536"
            },
            "downloads": -1,
            "filename": "yandex2lightroom-1.1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6db2a004d9b835ce10593aa7ea8203ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 16723,
            "upload_time": "2024-01-20T08:06:11",
            "upload_time_iso_8601": "2024-01-20T08:06:11.821082Z",
            "url": "https://files.pythonhosted.org/packages/be/a1/e929e241846765da80243fdd435e97bbc5984fb4f7428e0a48dda6731c58/yandex2lightroom-1.1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-20 08:06:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sto3014",
    "github_project": "yandex2lightroom-git",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    "~=",
                    "4.10.0"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": [
                [
                    "~=",
                    "2023.7.22"
                ]
            ]
        },
        {
            "name": "chardet",
            "specs": [
                [
                    "~=",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "dataclasses",
            "specs": [
                [
                    "~=",
                    "0.6"
                ]
            ]
        },
        {
            "name": "dataclasses-json",
            "specs": [
                [
                    "~=",
                    "0.5.6"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "~=",
                    "3.3"
                ]
            ]
        },
        {
            "name": "lxml",
            "specs": [
                [
                    "~=",
                    "4.9.1"
                ]
            ]
        },
        {
            "name": "marshmallow",
            "specs": [
                [
                    "~=",
                    "3.2"
                ]
            ]
        },
        {
            "name": "marshmallow-enum",
            "specs": [
                [
                    "~=",
                    "1.5.1"
                ]
            ]
        },
        {
            "name": "mypy-extensions",
            "specs": [
                [
                    "~=",
                    "0.4.3"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "~=",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "selenium",
            "specs": [
                [
                    "~=",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "selenium-wire",
            "specs": [
                [
                    "~=",
                    "5.1.0"
                ]
            ]
        },
        {
            "name": "soupsieve",
            "specs": [
                [
                    "~=",
                    "2.1"
                ]
            ]
        },
        {
            "name": "stringcase",
            "specs": [
                [
                    "~=",
                    "1.2.0"
                ]
            ]
        },
        {
            "name": "typing",
            "specs": [
                [
                    "~=",
                    "3.7.4.3"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    "~=",
                    "3.10.0.2"
                ]
            ]
        }
    ],
    "lcname": "yandex2lightroom"
}
        
Elapsed time: 0.16469s