Metadata-Version: 2.1
Name: atramentarium
Version: 0.1
Summary: Python3 prompt with simple command completion.
Home-page: https://github.com/carlosplanchon/atramentarium
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/atramentarium/archive/v0.1.tar.gz
Description: # atramentarium
        *Python3 prompt with simple command completion.*
        
        atramentarium means "inkpot" in late latin.
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U atramentarium
        ```
        
        ## Usage
        ```
        In [1]: import atramentarium
        
        In [2]: prompt(
            command_processing_function=lambda cmd: print(cmd),
            command_list=["BOB", "ALICE"]
            )
        > # Hit tab.
        ALICE  BOB
        >
        ```
        
Keywords: command,completion,readline
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
