Skip to main content

A visual programming language that compiles to Python

Project description

Moldo

A visual programming language that compiles to Python, designed to make programming more accessible and intuitive.

Features

  • XML-like syntax for easy visual representation
  • Compiles to Python code
  • Support for Python function imports
  • Basic programming constructs (variables, functions, control flow)
  • Built-in support for Python data types (strings, numbers, lists, dictionaries)
  • Type safety and error handling

Installation

pip install moldo

Quick Start

  1. Create a .moldo file with your code:
<mblock type="print">Hello, World!</mblock>

<mblock type="input">What's your name? </mblock>
<mblock type="variable">name = input()</mblock>
<mblock type="print">f"Nice to meet you, {name}!"</mblock>
  1. Compile and run:
moldo compile your_file.moldo -o output.py
python output.py

Examples

Dictionary Operations Example

<!-- Create a dictionary -->
<mblock type="variable">student = {"name": "Alice", "age": 20, "grades": [85, 90, 95]}</mblock>

<!-- Access dictionary values -->
<mblock type="variable">name = student["name"]</mblock>
<mblock type="print">name</mblock>

<!-- Add or modify dictionary entries -->
<mblock type="variable">student["subject"] = "Computer Science"</mblock>

<!-- Print the entire dictionary -->
<mblock type="print">student</mblock>

<!-- Loop through dictionary keys and values -->
<mblock type="loop">key in student</mblock>
    <mblock type="variable">value = student[key]</mblock>
    <mblock type="print">f"{key}: {value}"</mblock>

Calculator Example

<!-- Import the math functions module -->
<mblock type="import">examples/math_functions.py</mblock>

<!-- Get input from user -->
<mblock type="input">Enter first number: </mblock>
<mblock type="variable">num1 = float(input())</mblock>

<mblock type="input">Enter second number: </mblock>
<mblock type="variable">num2 = float(input())</mblock>

<!-- Perform calculations -->
<mblock type="print">Addition: </mblock>
<mblock type="call">add(num1, num2)</mblock>

<mblock type="print">Subtraction: </mblock>
<mblock type="call">subtract(num1, num2)</mblock>

<mblock type="print">Multiplication: </mblock>
<mblock type="call">multiply(num1, num2)</mblock>

<mblock type="print">Division: </mblock>
<mblock type="call">divide(num1, num2)</mblock>

Temperature Converter Example

<mblock type="import">examples/temperature_utils.py</mblock>

<mblock type="print">Welcome to Temperature Converter!</mblock>
<mblock type="print">1. Convert Celsius to Fahrenheit</mblock>
<mblock type="print">2. Convert Fahrenheit to Celsius</mblock>

<mblock type="input">Enter your choice (1 or 2): </mblock>
<mblock type="variable">choice = input()</mblock>

<mblock type="variable">
if choice == "1":
    print("Enter temperature in Celsius: ", end="")
    celsius = float(input())
    print(f"{celsius}°C is equal to ", end="")
    result = temperature_utils.celsius_to_fahrenheit(celsius)
    print(f"{result:.1f}°F")
elif choice == "2":
    print("Enter temperature in Fahrenheit: ", end="")
    fahrenheit = float(input())
    print(f"{fahrenheit}°F is equal to ", end="")
    result = temperature_utils.fahrenheit_to_celsius(fahrenheit)
    print(f"{result:.1f}°C")
else:
    print("Invalid choice! Please enter 1 or 2.")
</mblock>

Creating Custom Functions

To create functions that can be used in Moldo, use the @moldo_function decorator:

from moldo.decorators import moldo_function

@moldo_function(reference_name="add")
def add_numbers(a: float, b: float) -> float:
    """Add two numbers together."""
    return a + b

Command Line Interface

The moldo command provides several options:

moldo compile <input_file> -o <output_file>  # Compile Moldo code to Python
moldo run <input_file>                       # Compile and run Moldo code
moldo --help                                 # Show help message

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

  • Mutiibwa Grace Peter - GitHub

Acknowledgments

  • ANTLR4 for the parsing infrastructure
  • Python community for inspiration and tools

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

moldo-0.3.0.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

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

moldo-0.3.0-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file moldo-0.3.0.tar.gz.

File metadata

  • Download URL: moldo-0.3.0.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for moldo-0.3.0.tar.gz
Algorithm Hash digest
SHA256 cc60430cf17ed114d49ff9d0ccb2c7eb11eaed5599691634fe20cdb1fe61bbfa
MD5 08854a4b461bd9f7f30ae238c0cdd850
BLAKE2b-256 d241b7d6dc5ca5dbff0c4d4fe7a2212dd0aef0390bb255cd9df1064f5f828476

See more details on using hashes here.

File details

Details for the file moldo-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: moldo-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for moldo-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 baae973c28c85c9ec91cb5b0c238c464beabe5b5f964231c8776507a7021e01d
MD5 ea01b39638c6e915eb52ce136208a12c
BLAKE2b-256 c40515291099260b13fa98e97bacb68b7946e707d8838c9d8e15820283748190

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