Astalaseven / redbaron

BeautifulSoup/jQuery-like library to work with the Baron FST for python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

RedBaron is a query library for the Baron Full Syntax Tree (FST). But what is Baron? Baron is a syntax tree, like an AST for the Python language that hold the following rule: syntax_tree_to_code(code_to_syntax_tree(code)) == code. The Baron FST is in form of JSON-serializable Python (list and dict) which is very low level and not extremely funny to work with (a bit like bytecode), RedBaron is an abstraction on top of that to ease the exploration and modification of this FST.

Ok, but why this can be useful? The (hard) bet made by Baron is to induce a paradigm change in which writing code that explore or modify code (like (custom) refactoring code, refactoring browser, tooling, autoformatting…) is now a realistic task for most of the developers. Having a FST for Python means that the task of modifying source code just shift from parsing then modifying a string to modifying a meaningful tree. For a longer explanation read this.

For now, RedBaron is in its early stages of development, it is quite stable but it is probably not the most shiny experience yet. Feedback is very welcome.

Installation

pip install redbaron

Links

About

BeautifulSoup/jQuery-like library to work with the Baron FST for python


Languages

Language:Python 95.2%Language:Shell 4.8%