arborium-python 1.1.5

Python grammar for arborium (tree-sitter bindings)
Documentation
repo "https://github.com/tree-sitter/tree-sitter-python"
commit "26855eabccb19c6abf499fbc5b8dc7cc9ab8bc64"
license "MIT"

grammar {
    id "python"
    name "Python"
    tag "code"
    tier 1
    has-scanner #true
    icon "devicon-plain:python"
    aliases "py" "py3" "python3"

    inventor "Guido van Rossum"
    year 1991
    description "High-level general-purpose language emphasizing readability; authoritative reference is the <a href=\"https://docs.python.org/3/reference/\">Python Language Reference</a>."
    link "https://en.wikipedia.org/wiki/Python_(programming_language)"
    trivia "Named after Monty Python; van Rossum released Python 0.9.0 in Feb 1991. The 'Zen of Python' is documented in `import this` and <a href=\"https://peps.python.org/pep-0020/\">PEP 20</a>."

    sample {
        path "samples/dynamic_progress.py"
        description "Rich demo showing dynamic progress bars, context managers, multiple progress tasks."
        link "https://github.com/Textualize/rich/blob/master/examples/dynamic_progress.py"
        license "MIT"
    }
}