Skip to main content

Masterpiece framework

Project description

Masterpiece™ (Development Status 1 - Planning)

Try to be Nice

Welcome to Masterpiece™ - Quite a Piece of Work!

Masterpiece™ is a Python framework designed for creating modular, scalable, plugin-aware, multi-threaded, and object-oriented applications with a hierarchical structure. For universes that are not hierarchical by nature, you might find a different framework that suits you better.

Project Status and Current State

Here’s what is currently available:

  • Tutorial: World-class tutorial <docs/source/tutorial.rst>_ to help you to get started with writing world-class masterpieces.
  • Package Infrastructure: The basic Python package setup is finalized and configured with pyproject.toml.
  • Classes: The existing classes have been finalized.
  • Example Application: The example application examples/myhome.py prints out its instance structure when run. Despite its simplicity, it demonstrates the structure of a typical scalable and fully configurable software.
  • Plugin Project: A separate plugin project named masterpiece_plugin plugs in a "Hello World" greeting to myhome.py, demonstrating a minimal yet fully functional plugin.
  • Bug-Free Status: Absolutely bug-free — just kidding! There are no known bugs remaining, as far as I can tell.

What is currently not available:

  • Threads: This will be the topic for the next milestone.

Multi-threading in Python might make some developers raise an eyebrow, but I trust the community will address that Global Interpreter Lock (GIL) concern.

Goals

Have fun while learning the Python ecosystem! The ultimate enjoyment, with a sprinkling of practicality, will be achieved by cranking the Fun-O-Meter™ up to 11. Coding should feel like a rollercoaster ride—minus the screaming and the long lines.

  • First-Time Excellence: A framework that's reliable, correct, and efficient from the start, and fun—because what’s a framework without a little joy?
  • Completeness: A minimal yet robust API providing developers with total control over everything.
  • Productivity: Reusable code to achieve maximum functionality with a minimal amount of code (read: money), and productivity increases with the size of the project.

If you appreciate these design concepts, look no further; you've come to the right place!

Projects

Masterpiece comes in two Python projects:

  1. Masterpiece (core framework):
    This is the core framework for building plugin-aware, multi-threaded applications. It includes a simple yet fully functional application to help you get started and serves as a plugin-aware reference application that can be scaled up to any size.

  2. Masterpiece Plugin (plugin example):
    This is a basic plugin example that demonstrates how to create third-party plugins for applications built using Masterpiece. It’s as simple as saying "Hello, World!", literally.

Note: This project contains only the core framework. The plugin is provided as a separate project masterpiece_plugin <https://gitlab.com/juham/masterpiece_plugin>_.

Installing Masterpiece

Step 1: Install Masterpiece and run the example application ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

To install the core framework:

.. code-block:: bash

pip install masterpiece

Then, navigate to the example folder and run the application:

.. code-block:: bash

python examples/myhome.py

The application will print out its instance hierarchy. This is a simple example application to demonstrate the basic structure of any multi-threaded, plugin-based, scalable MasterPiece applications.

Example output:

.. code-block:: text

home
    ├─ grid
    ├─ downstairs
    │   └─ kitchen
    │       ├─ oven
    │       └─ fridge
    └─ garage
        └─ EV charger

Step 2: Install the Masterpiece Plugin ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

To extend the application with the masterpiece_plugin:

.. code-block:: bash

pip install masterpiece_plugin

Run the application again:

.. code-block:: bash

python examples/myhome.py

You'll now see a new object in the instance hierarchy, along with a friendly "Hello, World!" object.

Example output:

.. code-block:: text

home
    ├─ grid
    ├─ downstairs
    │   └─ kitchen
    │       ├─ oven
    │       └─ fridge
    ├─ garage
    │   └─ EV charger
    └─ Hello World - A Plugin

Step 3: Configurating ^^^^^^^^^^^^^^^^^^^^^^^^^

The application also demonstrates the usage of startup arguments. Run the application again:

.. code-block:: text

examples/myhome.py --init --solar 10 --color red

and new 'Solar plant 10 kW' object appears in the tree.

  • The --init argument tells the application to save its current configuration to a configuration files.
  • The --solar argument creates an instance of a solar power plant with a specified peak power of 10 kW.
  • The --color argument can be used for setting the color for the tree diagram.

The above class properties (and many more) can also be defined in the class configuration files. By default, the configuration files are created in the ~/.myhome/config folder, as determined by the application identifier and --config [anyname].

For example, --config temp will use the configuration files stored in the ~/.myhome/temp/ folder.

Contributing

Please check out the Issue Board <https://gitlab.com/juham/masterpiece/-/boards>_ for tracking progress and tasks.

About the Framework

The framework is essentially a tree container, allowing any payload to be integrated into its hierarchy. It supports configuration, serialization, the factory method pattern, a plugin API, and many other features for every object in its hierarchy. Generic tree traversal functionality allows any interaction to be applied to the tree, from serialization to any application-specific functionality.

Just like life on Earth, all components of this framework trace their lineage back to a single ancestor: the 'Masterpiece' core. Evolution, but in code! (Okay, this might be a bit too deep...)

The name 'Masterpiece' was chosen to reflect a commitment to fine-grained modular design, with a touch of humor.

Developer Documentation

As a C/C++ boomer, Doxygen was naturally my tool of choice. However, I ditched it in favor of Python's native tool, Sphinx. The migration wasn’t exactly pure joy — I encountered severe angry management issues along the way — but it's all good now. The documentation cannot be described anything a "masterpiece" yet, but it's improving.

For full documentation and usage details, see the full documentation at Documentation Index <docs/build/html/index.html>_ (The docs may look rough; I’m still unraveling Sphinx's mysteries).

Special Thanks

Big thanks to the generous support of Mahi.fi for helping bring this framework to life.

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

masterpiece-0.1.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

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

masterpiece-0.1.1-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

Details for the file masterpiece-0.1.1.tar.gz.

File metadata

  • Download URL: masterpiece-0.1.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for masterpiece-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ff6afac231567307c218d80e2ad6cd80e79c3637b39159738584a86fe8348008
MD5 48342f0e5b4360633a4c3ea18b49f0eb
BLAKE2b-256 531fef80dd494dc7186e5356845f25914e4548bd2de0d488f395b2baf31495bf

See more details on using hashes here.

File details

Details for the file masterpiece-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: masterpiece-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for masterpiece-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8724493da80b936de3eb50dd0cd72c584ccb1c164971cfcd3a665bc402bb5379
MD5 65825e3772d1b5a32dea588f1d366f4b
BLAKE2b-256 42ab342075aeb1850a1e0a83bdfdc38318bafb177181cfde310676664a2414f1

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