edq.cli.profile

The edq.cli.profile package contains Python profiling tools.

This package contains the following CLI tools:


edq.cli.profile.cprofile

Profile some Python target using Python's cprofile stdlib.

usage: python3 -m edq.cli.profile.cprofile [-h] [--module] [--count ROW_COUNT]
                                           [--import IMPORTS]
                                           [--pattern PATTERNS]
                                           RUN_TARGET [MODULE_ARGS ...]

edq.cli.profile.flame

Profile some Python target using Python's cprofile stdlib.

usage: python3 -m edq.cli.profile.flame [-h] [--module] [--import IMPORTS]
                                        [--out OUT_PATH]
                                        [--flamegraph-path FLAMEGRAPH_PATH]
                                        [--sample-interval SAMPLE_INTERVAL_SECS]
                                        RUN_TARGET [MODULE_ARGS ...]
1"""
2The edq.cli.profile package contains Python profiling tools.
3"""