معرفی شرکت ها


dot2bgraph-0.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A CLI to convert dot files to bgraph format for visualization.
ویژگی مقدار
سیستم عامل -
نام فایل dot2bgraph-0.1.1
نام dot2bgraph
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Vasily Rudchenko
ایمیل نویسنده vasily.rudchenko.dev@gmail.com
آدرس صفحه اصلی https://github.com/vasilyrud/dot2bgraph
آدرس اینترنتی https://pypi.org/project/dot2bgraph/
مجوز Apache Software License
# dot2bgraph [![PyPI](https://img.shields.io/pypi/v/dot2bgraph)](https://pypi.org/project/dot2bgraph) [![Travis (.com)](https://img.shields.io/travis/com/vasilyrud/dot2bgraph)](https://travis-ci.com/github/vasilyrud/dot2bgraph) [![Coveralls](https://img.shields.io/coveralls/github/vasilyrud/dot2bgraph)](https://coveralls.io/github/vasilyrud/dot2bgraph) `dot2bgraph` is a CLI utility to convert graphs in `dot` format to `bgraph` format, for visualization with tools like [bgrapher](https://github.com/vasilyrud/bgrapher). `dot2bgraph` supports a subset of `dot` features, tailored specifically to those that convert neatly to `bgraph` format. Other `dot` attributes that do not correlate to attributes supported by `bgraph` (e.g., shapes, label positions, etc.) are ignored. ## Installation First, ensure that you have `graphviz` installed, since it is a dependency for `pygraphviz` which, in turn, is a dependency for `dot2bgraph`. For example, in Ubuntu: ``` apt-get install graphviz graphviz-dev ``` Or in OSX: ``` brew install graphviz ``` For other platforms, see pygraphviz's [INSTALL.txt](https://github.com/pygraphviz/pygraphviz/blob/main/INSTALL.txt) Then, install `dot2bgraph`: ``` pip install dot2bgraph ``` ## Usage By default an input "file.dot" is converted to `bgraph` JSON format, which is outputted to stdout: ``` dot2bgraph file.dot ``` If you instead wish to quickly look at the output as it would appear in a `bgraph` visualization tool, use `-f png`, i.e., "PNG format". For example: ``` dot2bgraph -f png file.dot ``` For creating a bgraph recursively from multiple dot files in a directory structure, use `-R`, e.g. for the following directory structure: ``` dotdir ├── file1.dot └── subdotdir └── file2.dot ``` You can run: ``` dot2bgraph -R dotdir ``` To save the tool's output (in whichever format) to a file, use `-o`. ## Development ### Install ``` mkdir .venv pipenv shell pipenv install --dev -e . pipenv install -r requirements-dev.txt ``` ### Test #### Pytest ``` python -m pytest -s --cov-report term-missing --cov=dot2bgraph ``` #### Mypy ``` python -m mypy -p dot2bgraph --config-file=mypy.ini ``` #### Profile ``` python -mcProfile -o dot2bgraph.prof dot2bgraph/__main__.py -f none <your_dot_file> ```


نیازمندی

مقدار نام
- pygraphviz
- rectpack
- Pillow
- tqdm
- yaspin


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl dot2bgraph-0.1.1:

    pip install dot2bgraph-0.1.1.whl


نصب پکیج tar.gz dot2bgraph-0.1.1:

    pip install dot2bgraph-0.1.1.tar.gz