rafcon


Namerafcon JSON
Version 2.1.3 PyPI version JSON
download
home_pageNone
SummaryDevelop your robotic tasks with hierarchical state machines using an intuitive graphical user interface
upload_time2024-04-19 12:55:49
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseEPL
keywords state machine robotic fsm development gui visual programming
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            
RAFCON
======

.. figure:: documents/assets/Screenshot_Drill_Skill_Scaled.png
   :figwidth: 100%
   :width: 800px
   :align: left
   :alt: Screenshot showing RAFCON with a big state machine
   :target: documents/assets/Screenshot_Drill_Skill_Scaled.png?raw=true

* Documentation: Hosted on `Read the Docs <http://rafcon.readthedocs.io/en/latest/>`_
* Homepage: `DLR-RM.github.io/RAFCON/ <https://dlr-rm.github.io/RAFCON/>`_
* License: `EPL <https://github.com/DLR-RM/RAFCON/blob/master/LICENSE>`_

Develop your robotic tasks using an intuitive graphical user interface
----------------------------------------------------------------------

RAFCON uses hierarchical state machines, featuring concurrent state execution, to represent robot programs.
It ships with a graphical user interface supporting the creation of state machines and
contains IDE like debugging mechanisms. Alternatively, state machines can programmatically be generated
using RAFCON's API.

Universal application

  RAFCON is written in Python, can be extended with plugins and is hard- and middleware independent.

Visual programming

  The sophisticated graphical editor can be used for the creation, execution and debugging of state machines.

Collaborative working

  Share and reuse your state machines in form of libraries, stored as JSON strings in text files.

.. figure:: https://raw.githubusercontent.com/DLR-RM/RAFCON/master/documents/assets/RAFCON-sm-creation-preview.gif
   :figwidth: 100%
   :width: 570px
   :align: left
   :alt: Example on how to create a simple state machine


Installation preparations
-------------------------

Before installing RAFCON, Python >=3.7, pip and setuptools are required on your system. Most of the other dependencies
are automatically resolved by pip/setuptools, but not all of them. Those need be be installed manually, too:

Installation requirements
^^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: bash

   sudo apt-get install python-dev python-pip build-essential glade python-gi-cairo
   sudo -H pip install --upgrade pip
   sudo -H pip install --upgrade setuptools

General requirements
^^^^^^^^^^^^^^^^^^^^

* Python >=3.7
* pip (recent version required: v23 known to be working)
* pdm (recent version required: v2.9.3 known to be working)


Installing RAFCON
-----------------

.. code-block:: bash

   pip install rafcon --user

The ``--user`` flag is optional. If not set, RAFCON is installed globally (in this case you normaly need to have root privileges).

If during the installation the error ``ImportError: No module named cairo`` occurs, please install pycairo directly
via:

.. code-block:: bash

   pip install --user "pycairo==1.19.1"

Of course you can also directly use the RAFCON sources from GitHub.

.. code-block:: bash

   cd /install/directory
   git clone https://github.com/DLR-RM/RAFCON rafcon


Start RAFCON
------------

No matter which installation option you choose, RAFCON can be started from any location using (make sure
``/usr/local/bin`` or ``~/.local/bin`` is in your ``PATH`` environment variable):

.. code-block:: bash

   rafcon

On a multi-python setup start rafcon using:

.. code-block:: bash

   python<your-version> -m rafcon


Uninstallation
--------------

If you want to uninstall RAFCON, all you need to do is call

.. code-block:: bash

   pip uninstall rafcon

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rafcon",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "state machine, robotic, FSM, development, GUI, visual programming",
    "author": null,
    "author_email": "Sebastian Brunner <sebastian.brunner@dlr.de>, Rico Belder <rico.belder@dlr.de>, Franz Steinmetz <franz.steinmetz@dlr.de>",
    "download_url": "https://files.pythonhosted.org/packages/41/f4/a4d1cc06cdb3df62854138e4541c0d7a40b01b9aa35aa6b706f7d7a34abe/rafcon-2.1.3.tar.gz",
    "platform": null,
    "description": "\nRAFCON\n======\n\n.. figure:: documents/assets/Screenshot_Drill_Skill_Scaled.png\n   :figwidth: 100%\n   :width: 800px\n   :align: left\n   :alt: Screenshot showing RAFCON with a big state machine\n   :target: documents/assets/Screenshot_Drill_Skill_Scaled.png?raw=true\n\n* Documentation: Hosted on `Read the Docs <http://rafcon.readthedocs.io/en/latest/>`_\n* Homepage: `DLR-RM.github.io/RAFCON/ <https://dlr-rm.github.io/RAFCON/>`_\n* License: `EPL <https://github.com/DLR-RM/RAFCON/blob/master/LICENSE>`_\n\nDevelop your robotic tasks using an intuitive graphical user interface\n----------------------------------------------------------------------\n\nRAFCON uses hierarchical state machines, featuring concurrent state execution, to represent robot programs.\nIt ships with a graphical user interface supporting the creation of state machines and\ncontains IDE like debugging mechanisms. Alternatively, state machines can programmatically be generated\nusing RAFCON's API.\n\nUniversal application\n\n  RAFCON is written in Python, can be extended with plugins and is hard- and middleware independent.\n\nVisual programming\n\n  The sophisticated graphical editor can be used for the creation, execution and debugging of state machines.\n\nCollaborative working\n\n  Share and reuse your state machines in form of libraries, stored as JSON strings in text files.\n\n.. figure:: https://raw.githubusercontent.com/DLR-RM/RAFCON/master/documents/assets/RAFCON-sm-creation-preview.gif\n   :figwidth: 100%\n   :width: 570px\n   :align: left\n   :alt: Example on how to create a simple state machine\n\n\nInstallation preparations\n-------------------------\n\nBefore installing RAFCON, Python >=3.7, pip and setuptools are required on your system. Most of the other dependencies\nare automatically resolved by pip/setuptools, but not all of them. Those need be be installed manually, too:\n\nInstallation requirements\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: bash\n\n   sudo apt-get install python-dev python-pip build-essential glade python-gi-cairo\n   sudo -H pip install --upgrade pip\n   sudo -H pip install --upgrade setuptools\n\nGeneral requirements\n^^^^^^^^^^^^^^^^^^^^\n\n* Python >=3.7\n* pip (recent version required: v23 known to be working)\n* pdm (recent version required: v2.9.3 known to be working)\n\n\nInstalling RAFCON\n-----------------\n\n.. code-block:: bash\n\n   pip install rafcon --user\n\nThe ``--user`` flag is optional. If not set, RAFCON is installed globally (in this case you normaly need to have root privileges).\n\nIf during the installation the error ``ImportError: No module named cairo`` occurs, please install pycairo directly\nvia:\n\n.. code-block:: bash\n\n   pip install --user \"pycairo==1.19.1\"\n\nOf course you can also directly use the RAFCON sources from GitHub.\n\n.. code-block:: bash\n\n   cd /install/directory\n   git clone https://github.com/DLR-RM/RAFCON rafcon\n\n\nStart RAFCON\n------------\n\nNo matter which installation option you choose, RAFCON can be started from any location using (make sure\n``/usr/local/bin`` or ``~/.local/bin`` is in your ``PATH`` environment variable):\n\n.. code-block:: bash\n\n   rafcon\n\nOn a multi-python setup start rafcon using:\n\n.. code-block:: bash\n\n   python<your-version> -m rafcon\n\n\nUninstallation\n--------------\n\nIf you want to uninstall RAFCON, all you need to do is call\n\n.. code-block:: bash\n\n   pip uninstall rafcon\n",
    "bugtrack_url": null,
    "license": "EPL",
    "summary": "Develop your robotic tasks with hierarchical state machines using an intuitive graphical user interface",
    "version": "2.1.3",
    "project_urls": {
        "Homepage": "https://github.com/DLR-RM/RAFCON"
    },
    "split_keywords": [
        "state machine",
        " robotic",
        " fsm",
        " development",
        " gui",
        " visual programming"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbcfb85cc22594b0fc12369f45cdf54530d08e7626d375e436692e98cac1a483",
                "md5": "d2c50473a0194338ad8bbcda2144c978",
                "sha256": "fb13062cb0c94ebe00e2f43afea909ebe20bbe2fd58549b1b7b8116e9209f92e"
            },
            "downloads": -1,
            "filename": "rafcon-2.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d2c50473a0194338ad8bbcda2144c978",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 2878935,
            "upload_time": "2024-04-19T12:55:47",
            "upload_time_iso_8601": "2024-04-19T12:55:47.007863Z",
            "url": "https://files.pythonhosted.org/packages/fb/cf/b85cc22594b0fc12369f45cdf54530d08e7626d375e436692e98cac1a483/rafcon-2.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41f4a4d1cc06cdb3df62854138e4541c0d7a40b01b9aa35aa6b706f7d7a34abe",
                "md5": "a9b78daa70b1954a4f7c1a589c982fb5",
                "sha256": "34cafbf8af11fc0b0eef3c4945569ecd06b78e12704eba656cbdb59ab04bd665"
            },
            "downloads": -1,
            "filename": "rafcon-2.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "a9b78daa70b1954a4f7c1a589c982fb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 2412966,
            "upload_time": "2024-04-19T12:55:49",
            "upload_time_iso_8601": "2024-04-19T12:55:49.418030Z",
            "url": "https://files.pythonhosted.org/packages/41/f4/a4d1cc06cdb3df62854138e4541c0d7a40b01b9aa35aa6b706f7d7a34abe/rafcon-2.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 12:55:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DLR-RM",
    "github_project": "RAFCON",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "rafcon"
}
        
Elapsed time: 0.24723s