Skip to main content

provide create, read, update and delete of freeplane nodes via file access

Project description

freeplane-python-io

This package provides the user a convenient way to create, read, update and delete information stored inside Freeplan mindmap files. As an alternative or an enhancement to working with mindmaps through the original graphical user interface (GUI) which is provided by the brilliant Freeplane Mindmap Editor, this package was designed to implement an application programming interface (API) for Python as well as a command line interface (CLI) both to interact with Freeplane mindmap files, directly.

These are the main features of the package:

create, read and modify Freeplane mindmaps at least in theory, this package will not touch anything it does not know within an opened mindmap. so, you can read big maps, change them where you like and save them without any information loss.

transparent handling of different mindmap file versions different freeplane file versions are handled seamlessly. even old Freemind mindmaps should work.

management of each node's creation and modification dates dates will be translated into human-readable date strings. when creating or modifying nodes, the correct dates will be set.

search and find nodes within a mindmap based on the node's id, core text, attributes, details, notes, link or icons any node can be found within a mindmap using the mindmap's or node's find_nodes or find_children methods.

navigate through the mindmap trees based on the node object's parent, children, next and get_child_by_index attributes / methods it is possible to reach every node from every starting point within the mindmap.

modify information within arbitrary nodes the original attributes of each node (core text / html as plaintext, notes, details, link, icons, ...) can be read and modified. by using the node's set_attribute, get_attribute and attribute methods, the Freeplane' node attributes can be accessed.

manage node links hyperlinks between nodes within the same mindmap as well as accross different mindmaps are dealt with by using the hyperlink attribute of a node object.

set and manage node styles in Freeplane, "styles" are used to set and manage the design of nodes. using the styles attribute and the add_style attribute of a map object or the style attribute of a node object, the management is done.

create and manage arrow links besides hyperlinks, "arrow links" can be used to connect nodes on (this time on a visual level). the node object's add_arrowlink method helps connecting nodes visually.

installation

.. code:: bash

pip install freeplane-io

usage

.. code:: python

import freeplane




#
# load existing mindmap
#

# in order to access a mindmap, you first have to open it using
# the following function. please provide a valid path to your
# already existing Freeplane mindmap within the argument of the
# following function.

# load
mindmap = freeplane.Mindmap('./example_IN.mm')

# show available node styles
mindmap.styles




#
# check for GTD tasks
#

# there is a Freeplane addon "GTD+" which uses exclamation mark
# icons as identifiers for a GTD element within a Freeplane
# mindmap. In order to get a list of all these GTD elements,
# you can use the following method.

tasks = mindmap.find_nodes(icon=freeplane.ICON_EXCLAMATION)




#
# search for any core text
#

# in order to search the whole mindmap for a specific text string
# expected within the core section of a node, the following
# method can be used.

# search whole mindmap for "test"
nodes = mindmap.find_nodes(core="test", exact=True)

# search whole mindmap for "test", "tEST", ...
if not nodes:
    nodes = mindmap.find_nodes(core="test")

# get first node from list
node = nodes[0]

# printout its plain text
print(node.plaintext)




#
# write into existing mindmap
#

# modify test node's core text and color
node.plaintext = 'found and changed'

# create a test style
mindmap.add_style("test", {"bgcolor": "#999999"})

# set test style in node
node.style = "test"




#
# save mindmap
#

mindmap.save('./example_OUT.mm')

documentation

For more information, please visit our documentation_ at ReadTheDocs.

.. _documentation: https://freeplane-python-io.readthedocs.io/en/latest/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

freeplane-io-0.10.1.tar.gz (43.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

freeplane_io-0.10.1-py3-none-any.whl (34.4 kB view details)

Uploaded Python 3

File details

Details for the file freeplane-io-0.10.1.tar.gz.

File metadata

  • Download URL: freeplane-io-0.10.1.tar.gz
  • Upload date:
  • Size: 43.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for freeplane-io-0.10.1.tar.gz
Algorithm Hash digest
SHA256 84a537cf51300044a310c11e632bbe2910177384a84a7cbdbec613835201add8
MD5 cb43af5641706a44f0eb35a5e7a256a2
BLAKE2b-256 0cb94a3726a873a96162e513e69fff5dd17e969780a5bc76a17da3f8fc9ea6d9

See more details on using hashes here.

File details

Details for the file freeplane_io-0.10.1-py3-none-any.whl.

File metadata

  • Download URL: freeplane_io-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for freeplane_io-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0cb2798ec0be0726712153e75f3d053a90b67ca5f81c36f0e9bf37a26b4e3c02
MD5 4d0843201e055b3c653c9ac164e7bfeb
BLAKE2b-256 4e7f4faac937b20a5b5dec29371f30e0385a0c01f210dacfacae85a5e18fa7ee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page