معرفی شرکت ها


fast-trees-0.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Cute little python module that sits atop the tree-sitter library to provide an easier to use and cleaner interface for interacting with source code.
ویژگی مقدار
سیستم عامل -
نام فایل fast-trees-0.0.3
نام fast-trees
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Nathan Cooper
ایمیل نویسنده nathanallencooper@gmail.com
آدرس صفحه اصلی https://github.com/ncoop57/fast_trees/tree/main/
آدرس اینترنتی https://pypi.org/project/fast-trees/
مجوز Apache Software License 2.0
# Fast Trees > Cute little python module that sits atop the tree-sitter library to provide an easier to use and cleaner interface for interacting with source code ## Install `pip install fast-trees` ## How to use Easily work with source code data by using the high level API. Here's how you can grab the parameters of a java method: ```python mthd = """public static void main(String[] args, Object clazz) { // This is a test System.out.println(args[0]); /** This is another test! */ } """ parser = FastParser("java") print(parser.get_method_parameters(mthd)) ``` Repo already exists, continuing. ['args', 'clazz'] ```python inline_comments = parser.get_method_inline_comments(mthd) for c in inline_comments: print(c) ``` // This is a test /** This is another test! */ # Supported Languages - [x] Java # TODO - [x] Add ability to grab method parameters - [ ] Add separation between parsing methods vs classes - [ ] Add ability to get all methods in a class - [ ] add ability to get all instance variables in a class - [ ] Add more languages


نیازمندی

مقدار نام
==3.1.11 GitPython
==0.2.0 tree-sitter


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl fast-trees-0.0.3:

    pip install fast-trees-0.0.3.whl


نصب پکیج tar.gz fast-trees-0.0.3:

    pip install fast-trees-0.0.3.tar.gz