Metadata-Version: 2.1
Name: unsplash-get
Version: 0.1.0
Summary: unsplash srape tool
Home-page: https://github.com/streanger/unsplash_get
Author: streanger
Author-email: divisionexe@gmail.com
License: MIT
Keywords: unsplash scrape stock images
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: lxml
Requires-Dist: beautifulsoup4

unsplash_get
===========
Script for scraping unsplash. Only for educational purposes.

Install
===========

.. code-block:: python

    pip install unsplash_get

Usage from python
===========

.. code-block:: python

    from unsplash_get import search, save_img

    # get list of urls
    word = 'orange'
    urls = search(word)

    # store images if needed
    for key, url in enumerate(urls[:10]):
        file = '{}_{:03}.jpg'.format(word, key)
        save_img(url, file)


