Metadata-Version: 1.0
Name: paster
Version: 0.6
Summary: A generic pastebin posting tool
Home-page: https://github.com/crodjer/paster
Author: Rohan Jain
Author-email: crodjer@gmail.com
License: GPLv3
Description: Paster
        ======
        *A generic pastebin posting tool*
        
        Supported Paste services:
         
         - **Dpaste** (http://dpaste.com/)
           A django base simple and popular pastebin
           
         - **Pastebin** (http://pastebin.com/)  
           The very famous pastebin. Complete version 3 api supported
           
        And many more will be added soon
        
        Usage
        -----
        
            usage: pstr [-h] {list,paste} ...
        
            optional arguments:
              -h, --help    show this help message and exit
        
            subcommands:
              available subcommands
        
              {list,paste}  additional help
                paste       paste a snippet
                list        list various available properties and settings
        
        ###Subcommands
        **paste**  
        
            usage: pstr paste [-h] [-s syntax] [-t title] [-n name/email] [-v service]
                                [-e extra] [-d] [-p] [-c] [-f]
                                content
        
            positional arguments:
              content               the content
        
            optional arguments:
              -h, --help            show this help message and exit
              -s syntax, --syntax syntax
                                    syntax of the paste
              -t title, --title title
                                    title of paste
              -n name/email , --poster name/email 
                                    name or email of poster
              -v service , --service service 
                                    specify the pastebin service to be used
              -e extra , --extra extra 
                                    specify some extra arguements (urlencoded)
              -d, --hold            delay the deletion of post
              -p, --private         hold the paste (delay in deletion)
              -c, --command         post output of command supplied as content
              -f, --file            post output of file supplied as content
        
                    
        **list**
        
            usage: pstr list [-h] [-v service] type
        
            positional arguments:
              type                  the property to be listed
              currently available:
                
                - syntax: list of syntax/languages/formats available
                - services: list of services available
                - configs: the existing configuration settings
        
            optional arguments:
              -h, --help            show this help message and exit
              -v service , --service service 
                                    specify the pastebin service to be used
        
        Config
        ------
        Files:  
        > `~/.pastercfg` or `/etc/paster.cfg`
        
        The default configuration and available settings:
        
            [user]
            name =
            email = 
        
            [preferences]
            syntax =
            extra =
            title =
            service = dpaste
            hold = false
            command = false
            file = false
            private = false
        
            [pastebin]
            api_dev_key =
            api_paste_expire_date =
            api_user_name =
            api_user_password =
        
Platform: all
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python
