Metadata-Version: 1.0
Name: igloo
Version: 0.0.10
Summary: Command line pastebin client
Home-page: http://github.com/mtth/igloo/
Author: Matthieu Monsch
Author-email: monsch@mit.edu
License: MIT
Description: Igloo: a command line pastebin client.
        
        Usage:
          igloo [-o] [-t TITLE] [-s SYNTAX] [-p PRIVACY] [-e EXPIRATION] [FILE] ...
          igloo (-d KEY | --download=KEY)
          igloo (-l | --list)
          igloo (-r | --reset)
          igloo (-h | --help)
          igloo --version
        
        Creates a pastebin from files or standard input and returns the pastebin's URL
        or opens the corresponding page in your browser.
        
        You must have a pastebin.com account to use igloo. The first time you use
        igloo you will be prompted for your api developer key (which can be found at
        http://pastebin.com/api) along with your user name and password. Igloo then
        stores the necessary pastebin credentials in ``~/.igloo`` for later use.
        
        Examples:
          igloo my_file.txt
          igloo -t 'code snippet' -s python -p private < my_code.py
          echo 'hello world!' | igloo
        
        Arguments:
          FILE                                    File(s) to copy. Multiple files will
                                                  have their contents joined by
                                                  newlines. If no file is specified
                                                  standard input will be used instead.
        
        Options:
          -h --help                               Show this screen.
          --version                               Show version.
          -o --open                               Open browser after creating pastebin.
          -t TITLE --title=TITLE                  Title of snippet.
          -s SYNTAX --syntax=SYNTAX               Highlighting format.
          -p PRIVACY --privacy=PRIVACY            Privacy level [default: unlisted].
          -e EXPIRATION --expiration=EXPIRATION   Lifetime of snippet [default: 1H].
          -d KEY --download=KEY                   Get raw data from a pastebin's key.
                                                  The key is the last part of the URL.
          -l --list                               View list of snippets by the current
                                                  logged in user.
          -r --reset                              Reset pastebin credentials.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
