This Python package contains an implementation of the LODA Language: an assembly language and computational model for finding integer sequence programs.
This Python package allows you to read and write LODA programs, to evaluate them to integer sequences, and to search for matches in the OEIS database.
You need Python 3.7 or higher. To install the dependencies for LODA, run these commands:
python3 -m venv ./venv
source ./venv/bin/activate
pip install -r requirements.txtTo execute the tests, run the following command:
nose2 tests -vCheck out sample.py and the documentation to find out how to use the LODA Python package.