Metadata-Version: 1.0
Name: Automatedscreenshots
Version: 0.3.3
Summary: Useful screenshots stuff.
Home-page: http://pypi.python.org/pypi/Automatedscreenshots/
Author: Jim Barcelona
Author-email: barce@me.com
License: LICENSE.txt
Description: ====================
        Automatedscreenshots 
        ====================
        
        set values for using environment variables: 
        ===========================================
            export SCREENSHOT_USER=''
            export SCREENSHOT_PASSWORD=''
            export SCREENSHOT_SERVER_URL=''
        
        
        set values for using django settings: 
        ===========================================
            SCREENSHOT_USER=''
            SCREENSHOT_PASSWORD=''
            SCREENSHOT_SERVER_URL=''
        
        
        Capture a screen shot and get the URL:
        ======================================
            from automatedscreenshots import Builder
            b = Builder('http://www.google.com/')
            b.capture()
            print(b.image_url)
        
        Get info about a screen shot:
        =============================
            from automatedscreenshots import Builder
            b = Builder('http://www.google.com/')
            print(b.info())
        
        Search for a URL:
        =================
            from automatedscreenshots import Builder
            b = Builder('http://www.google.com/')
            print(b.search())
        
        For developers:
        ===============
            How to upload to pypi:
              python setup.py sdist
              twine upload dist/*
        
        
Platform: UNKNOWN
