Metadata-Version: 1.0
Name: pconsole
Version: 0.1.1
Summary: Console for panda3d application written in python
Home-page: https://github.com/l3alr0g/pconsole
Author: l3alr0g
Author-email: UNKNOWN
License: None
Description: # panda3d console
         a tiny and easy to use runtime console for panda3d-powered apps
        
        ### Installation
        
        ```
        pip install pconsole
        ```
        
        or, alternatively
        
        ```
        cd pckg dir
        pip install -e .
        ```
        
        ### Initialize console
        
        ```
        import pconsole
        commandDic = {"command_string":associatedfunction,
        "another_one":associatedfunction
        }
        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
