Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Adding callback module to implement custom filters #9

Open
wants to merge 23 commits into
base: main
Choose a base branch
from

Conversation

lhpt2
Copy link

@lhpt2 lhpt2 commented May 6, 2024

Ok, this will be my last suggestion :D

Problem: No ability to easily implement a custom filter logic.

Solution: Adding a module modfilter.py that implements two callback functions import_mod_filter_func and parent_mod_filter_func to allow for custom checks on module names for the import module names as well as for the listed project module names. The main module vis.py checks for the existence of modfilter.py and the according callback functions and calls the callback functions accordingly, so that a non existent modfilter module or callback functions doesn't break functionality.

Lucas Haupt added 22 commits April 30, 2024 16:32
    This adds a command line flag for giving a filename to write a dotfile to.
    The dotfile can than be processed further and be plotted by tools like graphviz.
Merge branch 'dev' of github.com:lhpt2/PythonImportVisualizer into dev
…opmodule or specific submodules (or both)

The function `add_immediate_deps_to_modules` and `get_fq_immediate_deps` get two additional keyword arguments for
handing over callback functions that take module names and return a boolean value advertising if a module should be
processed (return true) or not (return false).

The lookup for these callback functions happens in a module called modfilter and the callback functions are named
`pkgfilterfunc` and `modfilterfunc` by default. If the module is not existent, standard behavior is assumed (no custom filtering).
If the module exists but neither `pkgfilterfunc` nor `modfilterfunc` are defined in the module, a notice is logged to stderr at the end.

For logging to stderr, a convenience function eprint is introduced.
… in `get_fq_immediate_deps`) and remove debug prints.
of `import_mod_filter_func` and fix/improve `eprint` convenience function
@SirRodriguez
Copy link
Owner

Looks good. Can you fix the merge conflicts and I'll review it again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants