pydeps icon indicating copy to clipboard operation
pydeps copied to clipboard

`--exclude` option not working

Open TranquilMarmot opened this issue 1 year ago • 1 comments

I'm trying to generate the graph for a project and want to exclude any "third-party" libraries.

The command I'm using looks something like this:

pydeps myproject --exclude="ddtrace*,openai*"

However, I still see a ton of ddtrace and openai nodes in the output of the graph. Am I missing something here?

TranquilMarmot avatar Mar 20 '24 18:03 TranquilMarmot

Try

pydeps myproject --exclude "ddtrace*" "openai*"

thebjorn avatar Mar 20 '24 23:03 thebjorn