python -m venv create venv
venv/bin/activate
python -m pip install -r requirements.txt
mkdir out1
python src/download_grammars.py
python src/main_python.py
- Execute download_grammars.py to get the tree sitter gramar in this case for python.
- Tune the main python file line 11 with the project name to analyse.
- If you are using a different code repository you should update line 12, it is actually using GitHub.
- If you are using a local repository you can also set the local path insted the repository URL inthe line 12.
- Be sure to update line 136 for pointing to the correct folder to save the extraction results.