Metadata-Version: 1.0
Name: xsnippet-cli
Version: 0.1.0
Summary: A simple command line interface for the XSnippet service.
Home-page: UNKNOWN
Author: Igor Kalnitsky <igor@kalnitsky.org>
Author-email: UNKNOWN
License: BSD License
Description: xsnippet-cli
        ============
        
        **xsnippet-cli** is a simple command line interface for interacting with
        xsnippet_ service. By means this script, you can easily post and receive
        snippets directly from your terminal.
        
        
        Usage
        -----
        
        It's very easy to use. You can paste the snippet this way ::
        
            $ xsnippet /path/to/file
        
        or this way ::
        
            $ cat /path/to/file | xsnippet
        
        As you can see the last method posts a some command output. It's very usefull
        to post the last few lines from logfile this way ::
        
            $ tail -n 5 nginx.log | xsnippet
        
        It's important to note that you can specify a snippet language or tags.
        Thats can be done by the following command ::
        
            $ cat setup.py | xsnippet -l python -t setuptools test
        
        
        Installation
        ------------
        
        ::
        
            $ pip install xsnippet-cli
        
        or
        
        ::
        
            $ easy_install xsnippet-cli
        
        or
        
        ::
        
            $ wget http://git.io/xsnippet-cli.zip -O xsnippet-cli.zip
            $ unzip xsnippet-cli.zip && cd xsnippet-cli-master
            $ (sudo) python ./setup.py install
        
        
        Meta
        ----
        
        - Author: Igor Kalnitsky <igor@kalnitsky.org>
        - License: BSD License
        
        
        .. _xsnippet: http://xsnippet.org/
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
