Skip to main content

A state-based undo and redo functionality module for Python objects.

Project description

Unda

Downloads GitHub forks PyPi Version Python Versions License

pip install unda

Official Documentation

Quick Start User Guide

What's Unda?

Unda is a Python 3 module which provides state-based undo and redo functionality for Python objects.

How does it work?

Unda's core interface is the UndaClient object.

The Client regards the objects it provides functionality for as targets. A collection of relevant data about a target (e.g. the attributes of that object) is regarded as a state. Unda works mainly by saving such state data; a process called updating. The state data is saved to a data structure known as a stack. Unda implements stacks using the Python deque object.

Every UndaClient has two stacks. One is used for undo purposes (hence it is known as the undo stack), while the other is used for redo purposes (the redo stack). State data obtained by updating specifically gets saved to the Client's undo stack.

So, when the user (you) needs to undo the target object, the Client first saves the current state of the object to the redo stack. It then uses the latest state data in the undo stack to basically give back a version of the target that corresponds to how the target was when the latest update happened. This effectively un-does any changes made to the target object since the last update occurred. Redo-ing works similarly, but can only be carried out after an undo: a redo operation takes the latest state in the redo stack and uses it to return the version of the target that existed prior to the undo operation.

What's the story behind Unda?

I created Unda to be a part/feature of a desktop application which I'm developing, however, I decided to open-source it, as I imagined other developers would find such functionality useful in their projects as well.

Developing Unda has been quite the experience, as it's my first time creating such a Python module.

Development began on Wednesday 17th November 2021.

Why is it called Unda?

Well, because I didn't want to call it Undo.

Standards

Unda is:

  • versatile; whether you're working with large or small objects, Unda does its best to optimize how it handles states.

  • compact (it's import dependencies all come with the Python standard library),

  • well documented (via docstrings and pdoc3),

  • built using Python 3.7 (in PyCharm),

  • fully PEP-8 compliant (checked with PyCharm),

  • distributed under the OSI-Approved MIT License.

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

unda-1.1.0.2.tar.gz (9.1 kB view hashes)

Uploaded Source

Built Distribution

unda-1.1.0.2-py3-none-any.whl (8.6 kB view hashes)

Uploaded Python 3

Supported by

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