Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 796 Bytes

File metadata and controls

26 lines (18 loc) · 796 Bytes

LODA Python

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.

Getting Started

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.txt

To execute the tests, run the following command:

nose2 tests -v

Check out sample.py and the documentation to find out how to use the LODA Python package.