Metadata-Version: 2.1
Name: pconsole
Version: 0.2.2
Summary: Console for panda3d application written in python
Home-page: https://github.com/l3alr0g/pconsole
Author: l3alr0g
License: None
Description: # panda3d console
         a tiny and easy-to-use runtime console for panda3d-powered apps
        
        ### Installation
        
        ```bash
        pip install pconsole
        ```
        
        or, alternatively
        
        ```bash
        cd pckg dir
        pip install -e .
        ```
        
        ### Initialize console
        
        ```python
        import pconsole
        commandDic = {"f1_string":f1,
                      "f2_string":f2
        }
        myConsole = pconsole.Console()
        myConsole.create(commandDic)
        # command line is now up and running
        ```
        
        ### default commands
        
        - help: lists all available commands
        - usage: specific help
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
