معرفی شرکت ها


freeplane-tools-0.0.9


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

This package provides some tooling around translating freeplane mindmap files into other useful formats
ویژگی مقدار
سیستم عامل -
نام فایل freeplane-tools-0.0.9
نام freeplane-tools
نسخه کتابخانه 0.0.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Steven Hollingsworth
ایمیل نویسنده hollingsworth.stevend@gmail.com
آدرس صفحه اصلی https://github.com/shollingsworth/freeplane_tools
آدرس اینترنتی https://pypi.org/project/freeplane-tools/
مجوز MIT
[![github-issues](https://img.shields.io/github/issues/shollingsworth/freeplane_tools?style=plastic "github-issues")](https://github.com/shollingsworth/freeplane_tools/issues) [![github-languages-code-size](https://img.shields.io/github/languages/code-size/shollingsworth/freeplane_tools?style=plastic "github-languages-code-size")](https://github.com/shollingsworth/freeplane_tools) [![github-stars](https://img.shields.io/github/stars/shollingsworth/freeplane_tools?style=plastic "github-stars")](https://github.com/shollingsworth/freeplane_tools/stargazers) [![github-forks](https://img.shields.io/github/forks/shollingsworth/freeplane_tools?style=plastic "github-forks")](https://github.com/shollingsworth/freeplane_tools/network/members) [![pypi-v](https://img.shields.io/pypi/v/freeplane-tools?style=plastic "pypi-v")](https://pypi.org/project/freeplane-tools) [![pypi-status](https://img.shields.io/pypi/status/freeplane-tools?style=plastic "pypi-status")](https://pypi.org/project/freeplane-tools) [![pypi-l](https://img.shields.io/pypi/l/freeplane-tools?style=plastic "pypi-l")](https://pypi.org/project/freeplane-tools) [![pypi-dm](https://img.shields.io/pypi/dm/freeplane-tools?style=plastic "pypi-dm")](https://pypi.org/project/freeplane-tools) [![pypi-pyversions](https://img.shields.io/pypi/pyversions/freeplane-tools?style=plastic "pypi-pyversions")](https://pypi.org/project/freeplane-tools) [![pypi-implementation](https://img.shields.io/pypi/implementation/freeplane-tools?style=plastic "pypi-implementation")](https://pypi.org/project/freeplane-tools) # TOC * [Freeplane Tools](#freeplane-tools-) * [Installation](#installation-) * [License](#license-) * [Quickstart](#quickstart-) * [Example](#example-) * [CLI Commands](#cli-commands-) * [Building](#building-) * [Other Docs](#other-docs-) # Freeplane Tools [↑](#toc) If you hate writing Markdown, but love mindmaps (and using [freeplane](https://www.freeplane.org/wiki/index.php/Home) this toolset is for you. These python programs aim to ease translating a mindmap into various markdown formats. This document [README.md](https://github.com/shollingsworth/freeplane_tools/blob/main/README.md) was made with `mm2github.py` with  [README.mm](https://github.com/shollingsworth/freeplane_tools/blob/main/README.mm) as a source. Enjoy! Pull requests welcome. :) ## Installation [↑](#toc) To install this package from [pypy](https://pypi.org/project/freeplane-tools/) run the following command. ``` pip3 install freeplane_tools ``` ## License [↑](#toc) See: [LICENSE](https://github.com/shollingsworth/freeplane_tools/blob/main/LICENSE) ## Quickstart [↑](#toc) Run the following if you want a quick demo of how this works. Have `freeplane` installed before running this. ``` pip3 install freeplane_tools mm2template.py mymindmap.mm freeplane mymindmap.mm # do your editing in freeplane mm2github.py -w mymindmap.mm ``` This will create: `mymindmap.md` ### Example [↑](#toc) Just want to look? [This](https://github.com/shollingsworth/freeplane_tools/blob/main/examples/template.mm) mindmap produces the following [markdown](https://github.com/shollingsworth/freeplane_tools/blob/main/examples/template.md) ## CLI Commands [↑](#toc) *mm2bitbucket_server.py* ``` usage: mm2bitbucket_server.py [-h] [-w] [-o OUTFILE] mindmap_file Convert a Freeplane Mindmap to Bitbucket Markdown. positional arguments: mindmap_file mindmap_file help optional arguments: -h, --help show this help message and exit -w, --write write markdown file -o OUTFILE, --outfile OUTFILE ``` --- *mm2github.py* ``` usage: mm2github.py [-h] [-w] [-o OUTFILE] mindmap_file Convert a Freeplane Mindmap to Github Markdown. positional arguments: mindmap_file mindmap_file help optional arguments: -h, --help show this help message and exit -w, --write write markdown file -o OUTFILE, --outfile OUTFILE ``` --- *mm2template.py* ``` usage: mm2template.py [-h] dest_file Copy a Mindmap Template to destination file. positional arguments: dest_file destination file optional arguments: -h, --help show this help message and exit ``` --- ## Building [↑](#toc) os / Package prerequisites: ``` pip3 install twine pydoctor ``` * Install Locally from current branch * ``` make install_local ``` * Build Package * ``` make pkg ``` * Release * ```make documentation``` * Make sure git tree is clean * ```make bump_release``` * ```make release``` ## Other Docs [↑](#toc) * [Api Docs](https://shollingsworth.github.io/freeplane_tools/) * [Changelog](https://github.com/shollingsworth/freeplane_tools/blob/main/CHANGELOG.md)


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

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


نحوه نصب


نصب پکیج whl freeplane-tools-0.0.9:

    pip install freeplane-tools-0.0.9.whl


نصب پکیج tar.gz freeplane-tools-0.0.9:

    pip install freeplane-tools-0.0.9.tar.gz