Metadata-Version: 1.0
Name: web_imagery
Version: 1.6
Summary: Web images generator by link or services (Instagram/Path/Flickr/Imgur/Cloud App/Minus/Skitch)
Home-page: https://github.com/ednapiranha/web_imagery
Author: Edna Piranha
Author-email: jen@ednapiranha.com
License: UNKNOWN
Description: Grab images from the web by their urls
        
        Currently supports:
        
        - direct image links that have the following extensions (jpg, jpeg, gif, png)
        - Instagram
        - Imgur
        - Flickr
        - Path
        - Skitch
        - Minus
        - Cloud App
        
        Requirements
        
        >> pip install -r requirements.txt
        
        Usage
        
        >> from webimagery import *
        
        >> image = WebImagery()
        
        First set the url
        
        >> image.set_image('http://www.flickr.com/photos/ednapiranha/4437021184/')
        >> True
        
        You can get the source link
        
        >> image.get_image()
        >> 'http://farm3.static.flickr.com/2788/4437021184_848d7fa79d.jpg'
        
        Or you can get the image tag, setting your own alt text and dimensions
        
        >> image.get_image_as_html('cat sleeping')
        >> image.width = 350
        >> '<img src="http://farm3.static.flickr.com/2788/4437021184_848d7fa79d.jpg" alt="cat sleeping" width="350" height="200" />'
        
Keywords: image,html,web
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
