File: __init__.py

package info (click to toggle)
pycallgraph 1.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 416 kB
  • sloc: python: 1,925; makefile: 47
file content (19 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
Python Call Graph is a library and command line tool that visualises the flow
of your Python application.

"""
from .metadata import __version__
from .metadata import __license__
from .metadata import __author__
from .metadata import __url__

from .pycallgraph import PyCallGraph
from .exceptions import PyCallGraphException
from . import decorators
from .config import Config
from .globbing_filter import GlobbingFilter
from .grouper import Grouper
from .util import Util
from .color import Color
from .color import ColorException