MCPcopy Index your code
hub / github.com/ValdonVitija/pyggester

github.com/ValdonVitija/pyggester @v1.0.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.0.1 ↗ · + Follow
256 symbols 836 edges 27 files 80 documented · 31%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README
<img alt="Alacritty Logo" src="https://github.com/ValdonVitija/pyggester/raw/v1.0.1/pyggester_logo.png">

Pyggester - dynamic/static python analysis

📘 About

pyggester - (python + suggester) functions as both a dynamic and static analyzer. Its primary purpose lies in offering suggestions to enhance the efficiency of Python code by addressing suboptimal usage of data structures.

⭐ Features

Pyggester offers a pretty decent cli interface for its functionalities. The cli is built on top of typer

Execution command: bash pyggest output: `` _____ _____________ ________ _______ ______________ /_____________ ___ __ \_ / / /_ __/ __ `/ _ _ ___/ __/ _ _ ___/ __ // / // / // / // // __/(__ )/ / / / / _ .___/_, / _, / _, / ___/// _/ ___/// // /_/ // /____/

Usage: pyggest [OPTIONS] COMMAND [ARGS]...

╭─ Options ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ --install-completion Install completion for the current shell. │ │ --show-completion Show completion for the current shell, to copy it or customize the installation. │ │ --help Show this message and exit. │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ static Perform static analysis using PyggestStatic. │ │ transform Perform dynamic transformation using PyggesterDynamic. │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ```

The pyggester CLI presents two distinct features: - Static Analysis: This feature comprehensively examines your code without executing it, providing insightful insights into its structure and potential improvements.

`Execution command`

> [!NOTE]
> The 'static' subcommand exists, but has no functionalities implemented, because we already have good static analyzers(pylint, ruff, flake8). In future iterations, should we identify suggestions that can be established through static analysis, we will incorporate them into this feature.

```bash
pyggest static
```
  • Dynamic/Automatic Transformation: This feature adds extra code to your python files to analyze your data structures at runtime. Your original code stays the same; it won't be changed. A new file is created that's just like the original but with additional code. This works for both single files and whole directories(full project structures).

    Execution command

    bash pyggest transform

[!INFO] pyggester offers built-in documentation for detailed usage

pyggest transform --help 
pyggest static --help #NOT IMPLEMENTED

🔧 Installation

### Using Pip You can easily install the Python library using pip. Open your terminal and run the following command: bash pip install pyggester

### Cloning the GitHub Repository

  1. Clone the Repository: Open your terminal and run the following command to clone the GitHub repository to your local machine:

    bash git clone git@github.com:ValdonVitija/pyggester.git 2. Navigate to the Repository: Change your working directory to the cloned repository:

    bash cd pyggester 3. Install pyggester as a pacakge locally: > [!IMPORTANT] > Consider doing this within a virtual environment (venv) if possible.

    ```bash
    pip install .
    ```
    

Usage (Step-by-Step)

Single File Usage

Lets suppose you have a single python file that you want to dynamically analyze(run-time analysis)

1. Preparation

Before code transformation with pyggester:

(venv) root@user:~/my_app> ls
app.py

Content of app.py:

def sum_of_integers(integer_list):
    total = sum(integer_list)
    return total

my_list = [1, 2, 3, 4, 5]
print(sum_of_integers(my_list))

2. Transformation

[!IMPORTANT] Make sure you're in a virtual environment with pyggester installed before going to the next step.

(venv) root@devs04:~/my_app> pyggest transform app.py
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ File transformed successfully!                                                                                                               │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

3. Post-Transformation

(venv) root@devs04:~/my_app> ls
app.py  app_transformed.py

Content of app_transformed.py:

from pyggester.observable_collector import OBSERVABLE_COLLECTOR
from pyggester.observables import ObservableNumpyArray, ObservableNamedTuple, ObservableSet, ObservablePandasDataFrame, ObservableList, ObservableDict, ObservableTuple


def sum_of_integers(integer_list):
    total = sum(integer_list)
    return total


my_list = ObservableList([1, 2, 3, 4, 5])
OBSERVABLE_COLLECTOR.append(my_list)
print(sum_of_integers(my_list))

for observable in OBSERVABLE_COLLECTOR:
    observable.run()

[!IMPORTANT] We now have a new file, automatically created, that mirrors the original file. This new file includes all the contents of the original, plus extra code for analyzing your code during runtime. Instead of running the original 'app.py', you should now run 'app_transformed.py'. Rest assured, everything from 'app.py' is retained in 'app_transformed.py'.

4. Running the Transformed Code

(venv) root@devs04:~/my_app> python3 app_transformed.py
15
╭────────────────────────────────────────────────────────────────────────────╮
│ 10 | Suggestions(/root/my_app/app_transformed.py):                         │
│     [*] Consider using an array.array instead of a list, for optimal       │
│ memory consumption                                                         │
│     [*] Consider using a set instead of a list, because of unique elements │
╰────────────────────────────────────────────────────────────────────────────╯

Directory Usage

Lets suppose you have a python project(directory/repo) that you want to dynamically analyze(run-time analysis)

1. Preparation

Before code transformation with pyggester:

(venv) root@devs04:~/python_demo/app_dir> ls
__pycache__  app.py  temperature.py  weather.py

Content of app.py:

import weather
import temperature


def main():
    city = input('Enter a city name: ')
    weather_condition = weather.get_weather(city)
    avg_temp = temperature.get_average_temperature()
    print(f'Weather in {city}: {weather_condition}')
    print(f'Average temperature: {avg_temp} degrees Celsius')


main()

Content of temperature.py:

temperatures = list([20, 22, 15, 18, 20, 21, 22, 22, 18, 17, 20])


def get_average_temperature():
    return sum(temperatures) / len(temperatures)

Content of weather.py:

weather_conditions = ['Sunny', 'Rainy', 'Cloudy', 'Windy', 'Sunny', 'Cloudy']

def get_weather(city):
    return weather_conditions.pop()

2. Transformation

[!IMPORTANT] Make sure you're in a virtual environment with pyggester installed before going to the next step.

(venv) root@devs04:~/python_demo> pyggest transform app_dir/
Enter the name of the main file: app.py
╭──────────────────────────────────────────────────────────────────────────╮
│ Directory transformed successfully!                                      │
╰──────────────────────────────────────────────────────────────────────────╯

[!IMPORTANT] When a directory or project is specified as an argument, pyggester prompts us to specify the main file of our project. This file should be the entry point of your project, indicated by its file name.

3. Post-Transformation

(venv) root@devs04:~/python_demo> ls
app_dir  app_dir_transformed

Content of app_dir_transformed/:

(venv) root@devs04:~/python_demo/app_dir_transformed> ls
app.py  temperature.py  weather.py

Content of app.py:

from pyggester.observable_collector import OBSERVABLE_COLLECTOR
from pyggester.observables import ObservableNumpyArray, ObservableList, ObservablePandasDataFrame, ObservableNamedTuple, ObservableSet, ObservableDict, ObservableTuple
import weather
import temperature


def main():
    city = input('Enter a city name: ')
    weather_condition = weather.get_weather(city)
    avg_temp = temperature.get_average_temperature()
    print(f'Weather in {city}: {weather_condition}')
    print(f'Average temperature: {avg_temp} degrees Celsius')


main()
for observable in OBSERVABLE_COLLECTOR:
    observable.run()

Content of temperature.py:

from pyggester.observable_collector import OBSERVABLE_COLLECTOR
from pyggester.observables import ObservableNumpyArray, ObservableList, ObservablePandasDataFrame, ObservableNamedTuple, ObservableSet, ObservableDict, ObservableTuple
temperatures = ObservableList(list([20, 22, 15, 18, 20, 21, 22, 22, 18, 17,
    20]))
OBSERVABLE_COLLECTOR.append(temperatures)


def get_average_temperature():
    return sum(temperatures) / len(temperatures)

Content of weather.py:

from pyggester.observable_collector import OBSERVABLE_COLLECTOR
from pyggester.observables import ObservableNumpyArray, ObservableList, ObservablePandasDataFrame, ObservableNamedTuple, ObservableSet, ObservableDict, ObservableTuple
weather_conditions = ObservableList(['Sunny', 'Rainy', 'Cloudy', 'Windy',
    'Sunny', 'Cloudy'])
OBSERVABLE_COLLECTOR.append(weather_conditions)


def get_weather(city):
    return weather_conditions.pop()

[!IMPORTANT] We now have a new directory, automatically created, that mirrors the original directory. This new directory includes all the contents of the original, plus extra code for analyzing your code during runtime. Instead of running the original 'app.py', you should now run 'app.py' that resides inside 'app_dir_transformed/'. Rest assured, everything from 'app_dir' is retained in 'app_dir_transformed/'.

4. Running the Transformed Code

(venv) root@devs04:~/python_demo/app_dir_transformed> python3 app.py
Enter a city name: Pristina
Weather in Pristina: Cloudy
Average temperature: 19.545454545454547 degrees Celsius
╭─────────────────────────────────────────────────────────────────────────────────────╮
│ 3 | Suggestions(/root/python_demo/app_dir_transformed/temperature.py):              │
│     [*] Consider using an array.array instead of a list, for optimal memory         │
│ consumption                                                                         │
╰─────────────────────────────────────────────────────────────────────────────────────╯

📁 Directory Structure

```bash . ├── LICENSE ├── README.md #main readme file. The one you are currently reading. ├── VERSION #version of pyggester ├── contributing.md ├── pyggester # directory containing the full source code of pyggester │   ├── init.py │   ├── cli.py #defines the typer cli structure(command & options) │   ├── command_handlers.py #Handles subcommands and every option variation per subcommand. │   ├── data #data/config files related to pyggester. │   │   └── help_files #build in help files for the pyggester cli │   │   ├── init.py │   │   ├── transform_helper.md #detailed built-in documentation for the transform subcommand of pyggest │   │   └── static_helper.md #detailed built-in documentation for the static subcommand of pyggest │   ├── helpers.py #helper functions to be used by other modules │   ├── main.py #The entry point of pyggest execution. Initializes the typer cli app and prints the ascii logo of pyggester │   ├── message_handler.py #Manages how the collected messages will be printed to the user. │   ├── module_importer.py #Contains the mechanism to automatically import observables │   ├── observable_collector.py #Contains the list that will be used to collect all observables. │   ├── observable_transformations.py #Contains the mechanism that will automatically add code that collects observables and glues together all ast modules │   ├── observables.py #Contains all the defined observables(enhanced version of python collections) │   ├── pyggester.py #The 'engine' of pyggester. This module glues everything together │   ├── text_formatters.py #Contains text formatters, to beautify text in stdout. │   └── wrappers.py #Contains the mechanism that wrap each observable. ├── pyggester_abstract_execution_flow.png ├── pyggester_logo.png ├── pytest.ini #pytest config file ├── requirements.txt #Every pyggester dependecy resides here ├── setup.py #Creates the pyggester pacakge and defines pyggest as the entry point command to execute pyggester └── tests ├── init.py ├── test_cli.py ├── test_command_handlers.py ├── test_file.py ├── test_file_transformed.py ├── test_helpers.py ├── test_main.py ├── test_message_handler.py ├── test_module_importer.py ├── test_observable_transf

Core symbols most depended-on inside this repo

append
called by 36
pyggester/observables.py
print_messages
called by 7
pyggester/message_handler.py
add
called by 7
pyggester/observables.py
pop
called by 6
pyggester/observables.py
remove
called by 6
pyggester/observables.py
items
called by 5
pyggester/observables.py
run
called by 4
pyggester/pyggester.py
custom_print
called by 4
pyggester/text_formatters.py

Shape

Method 125
Function 98
Class 30
Route 3

Languages

Python100%

Modules by API surface

pyggester/observables.py76 symbols
tests/test_observables.py41 symbols
pyggester/wrappers.py41 symbols
tests/test_wrappers.py19 symbols
tests/test_command_handlers.py9 symbols
pyggester/module_importer.py8 symbols
tests/test_module_importer.py7 symbols
tests/test_helpers.py7 symbols
pyggester/command_handlers.py7 symbols
tests/test_pyggester.py6 symbols
pyggester/observable_transformations.py6 symbols
pyggester/helpers.py6 symbols

For agents

$ claude mcp add pyggester \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page