Skip to main content

PythonPlayground

Python Playground

add api_version so the same plugin will be loaded in older browzwear applications, since 2020.3.0 you don't need this anymore if you are not planning to support older versions, just use dependencies/bw-api instead

  • Identifier: com.browzwear.console

  • Version: 1.0.1

  • Type: python

  • Language: Python

Full plugin download

File structure

├── plugin.json
└── plugin_package/
    ├── __init__.py
    ├── client.py
    ├── console.py
    └── lib/
        ├── pyreadline3/
        │   ├── __init__.py
        │   ├── error.py
        │   ├── get_doc.py
        │   ├── py3k_compat.py
        │   ├── rlmain.py
        │   ├── unicode_helper.py
        │   ├── clipboard/
        │   │   ├── __init__.py
        │   │   ├── api.py
        │   │   ├── get_clipboard_text_and_convert.py
        │   │   ├── ironpython_clipboard.py
        │   │   ├── no_clipboard.py
        │   │   ├── obsolete.py
        │   │   ├── py.typed
        │   │   └── win32_clipboard.py
        │   ├── configuration/
        │   │   ├── pyreadlineconfig.ini
        │   │   └── startup.py
        │   ├── console/
        │   │   ├── __init__.py
        │   │   ├── ansi.py
        │   │   ├── console.py
        │   │   ├── console_attributes.py
        │   │   ├── consolebase.py
        │   │   ├── event.py
        │   │   └── ironpython_console.py
        │   ├── keysyms/
        │   │   ├── __init__.py
        │   │   ├── common.py
        │   │   ├── ironpython_keysyms.py
        │   │   ├── keysyms.py
        │   │   └── winconstants.py
        │   ├── lineeditor/
        │   │   ├── __init__.py
        │   │   ├── history.py
        │   │   ├── lineobj.py
        │   │   └── wordmatcher.py
        │   ├── logger/
        │   │   ├── __init__.py
        │   │   ├── control.py
        │   │   ├── log.py
        │   │   ├── logger.py
        │   │   ├── null_handler.py
        │   │   ├── py.typed
        │   │   └── socket_stream.py
        │   └── modes/
        │       ├── __init__.py
        │       ├── basemode.py
        │       ├── emacs.py
        │       ├── notemacs.py
        │       └── vi.py
        └── pyreadline3-3.5.4.dist-info/
            ├── INSTALLER
            └── LICENSE.md

Did this answer your question?