Metadata-Version: 1.1
Name: nr.cli
Version: 0.1.2
Summary: a Python command-line interface wrapper
Home-page: https://github.com/nr-libs/py-nr.cli
Author: Niklas Rosenstein
Author-email: rosensteinniklas@gmail.com
License: MIT License
Description: # `nr.cli` - a Python command-line interface wrapper
        
        `nr.cli` is a small module for creating command-line interface
        wrappers easily. A `nr.cli.CLI` object represents a command-line
        program and can issue requests resulting in a `nrcli.Response`
        object that can be used to communicate with the process.
        
        Take a look at the `examples/` folder. A small example for
        using the `ffmpeg.py` example:
        
        ```python
        decoder = ffmpeg()
        audio = decoder.decode('my_song.m4a', 44100)
        print("Sound length:", int(audio.length), "seconds")
        print(len(audio), "samples at", audio.hz, "Hz")
        print("Sample at 1.0:", audio.get_sample(1.0))
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
