1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
"""
PyGraphviz
==========
A Python wrapper for the graphviz Agraph data structure.
See https://pygraphviz.github.io for complete documentation.
See pygraphviz.AGraph for detailed documentation.
"""
import sys
# https://docs.python.org/3/whatsnew/3.8.html#bpo-36085-whatsnew
if sys.version_info >= (3, 8, 0) and sys.platform == "win32":
import os
for path in os.environ["PATH"].split(os.pathsep):
if "graphviz" in path.lower() and os.path.exists(path):
os.add_dll_directory(path)
__version__ = "1.14"
from .agraph import AGraph, Node, Edge, Attribute, ItemAttribute, DotError
__all__ = ["AGraph", "Node", "Edge", "Attribute", "ItemAttribute", "DotError"]
from . import testing
# Per contract with Sphinx-Gallery, this method must be available at top level
from pygraphviz.scraper import _get_sg_image_scraper
del sys
|