arborium-python 0.1.3

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 [Python Language Reference](https://docs.python.org/3/reference/)."
    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 [PEP 20](https://peps.python.org/pep-0020/)."

    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"
    }
}