Metadata-Version: 1.0
Name: click-stream
Version: 0.0.8
Summary: Click option type for http/https/file inputs
Home-page: https://github.com/Moshe/click-stream
Author: Moshe Zada
Author-email: UNKNOWN
License: UNKNOWN
Description: click-stream
        ============
        
        Click option type for http/https/file inputs
        
        Usage
        -----
        
        .. code:: python
        
           import click
           from click_stream import Stream
        
        
           @click.command()
           @click.option('--in', type=Stream())
           def streamcli(inp):
               click.echo(inp.read())
        
        Supported inputs
        ----------------
        
        ::
        
           # files
           $ cli --in /path/to/file.txt
        
           # stdin
           $ echo input from stdin | cli --in -
        
           # HTTP/S
           $ cli http://google.com
        
Keywords: click,stream,cli,url
Platform: UNKNOWN
