ltworf
relational
Python

Educational tool for relational algebra

Last updated Jun 29, 2026
91
Stars
18
Forks
4
Issues
0
Stars/day
Attention Score
9
Language breakdown
No language data available.
β–Έ Files click to expand
README

THE PROJECT HAS MOVED =====================

The new repository is https://codeberg.org/ltworf/relational

Relational ==========

Relational an educational tool to provide a workspace for experimenting with relational algebra, an offshoot of first-order logic.

screenshot

I test it on GNU/Linux and Windows. It probably works on other systems too.

It provides: * A GUI that can be used for executing relational queries * A standalone Python module that can be used for executing relational queries, parsing relational expressions and optimizing them * A command line interface

Donate to LtWorf

Official website ================

More documentation can be found here https://ltworf.github.io/relational/

Install =======

  • Windows: https://ltworf.github.io/relational/download.html?exe
  • Debian based: apt-get install relational
  • Everyone else: Download the sources https://ltworf.github.io/relational/download.html?tar.gz

Run from sources ================

For the dependencies, check debian/control for the build dependencies.

You will need to run

make
to generate some .py files.

To launch the application, run

./relational.py

Syntax ======

These are some valid queries (using the provided example dataset)

# Join people and skills
people β‹ˆ skills

Select people within a certain age range

Οƒ age > 25 and age < 50 (people)

Selection with complicated expression requires an extra set of () around the expression

Οƒ (name.upper().startswith('J') and age > 21) (people)

Cartesian product of people with itself, including only name and id

ρ id➑i, name➑n (people) * Ο€ name, id (people)

For the selection, python expressions are used.

The syntax is explained here: https://ltworf.github.io/relational/allowed_expressions.html

Β© 2026 GitRepoTrend Β· ltworf/relational Β· Updated daily from GitHub