Metadata-Version: 2.1
Name: graphviz2drawio
Version: 0.0.2
Summary: UNKNOWN
Home-page: https://github.com/hbmartin/graphviz2drawio/
Author: Harold Martin
Author-email: harold.martin@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/hbmartin/graphviz2drawio/issues
Project-URL: Say Thanks!, http://saythanks.io/hbmartin/graphviz2drawio
Project-URL: Source, https://github.com/hbmartin/graphviz2drawio/
Description: # graphviz2drawio
        
        Convert graphviz (dot) files into draw.io (mxGraph) format
        
        ## Getting Started
        
        ### Prerequisites
        
        graphviz2drawio requires [Python 3](https://www.python.org/downloads/) and [Graphviz](https://www.graphviz.org/download/)
        
        On Mac OS these can be installed with [Homebrew](https://brew.sh/):
        
        ```
        brew update; brew install python3 graphviz
        ```
        
        ### Installation
        
        ```
        pip3 install graphviz2drawio
        ```
        ## Usage
        Run the conversion app on your graphviz file
        
        ```
        graphviz2drawio example.dot
        ```
        You can them import the output XML file into draw.io
        
        ## Python Usage
        ```python
        from graphviz2drawio import graphviz2drawio
        
        xml = graphviz2drawio.convert(graph_to_convert)
        print(xml)
        ```
        graph_to_convert can be any of a file path, file handle, string of dot language, or PyGraphviz.AGraph object
        
        ## Limitations
        Current alpha release may not correctly convert all dot commands. PLEASE [open an issue](https://github.com/hbmartin/graphviz2drawio/issues) with your dot file to report conversion problems or visual errors.
        
        ## Built With
        
        * [PyGraphviz](http://pygraphviz.github.io/documentation/pygraphviz-1.4rc1/reference/index.html) - Python interface to Graphviz
        
        
        ## Contributing
        
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        
        ## Authors
        
        * [Harold Martin](https://www.linkedin.com/in/harold-martin-98526971/) - harold.martin at gmail
        
        ## License
        
        [GPL](LICENSE.md)
        
        
Keywords: graphviz graph agraph dot convert conversion draw drawio mxgraph xml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
