No project description provided
Project description
gotopy2
A minimalist, modern Python interpreter and library for CBMBASIC-style control flow using line numbers, GOTO, GOSUB, and RETURN.
- Programs are Python dicts mapping line numbers to functions or lambdas.
- Each line operates on a shared
globalsdict and aruntimeobject. - Supports
GOTO,GOSUB,RETURN,HALT, and calling other gotopy files (run_file). - Designed for educational, retro, and DSL experiments.
Features
- Sequential line-numbered execution (like BASIC)
goto(line),gosub(line),return_()for control flowhalt()to stop executionrun_file(filename)to load and run other gotopy programs- Type-safe: ships with
ProgramTypefor static analysis - Fully tested and type-checked
Installation
This project uses Poetry for dependency management. To install:
poetry install
Usage Example
Modern, type-annotated style
from gotopy import run_program, ProgramType
program: ProgramType = {
10: lambda g, r: g.update(x=1),
20: lambda g, r: print('X is', g['x']),
30: lambda g, r: r.goto(50) if g['x'] < 3 else r.halt(),
40: lambda g, r: r.halt(),
50: lambda g, r: g.update(x=g['x']+1),
}
run_program(program)
Classic lambda style (backward compatible)
# You can also use the classic style with plain lambdas and no type annotations:
program = {
10: lambda g, r: g.update(x=1),
20: lambda g, r: g.update(x=g['x'] + 1),
30: lambda g, r: None,
}
g = {}
run_program(program, g)
Both styles are tested and supported.
Writing Programs
- Each line is a lambda or function:
lambda globals, runtime: ... - Use
runtime.goto(line),runtime.gosub(line),runtime.return_(),runtime.halt()for control flow. - Use
runtime.run_file(filename)to call another gotopy file (must define aprogramdict).
Example: Nested run_file usage
You can run a subprogram from a main program using run_file. The subprogram should halt itself when done.
main.py
from gotopy2 import run_program, ProgramType
def step10(g, r):
# Import and run a subprogram from the tests directory
import os
subprog_path = os.path.join(os.path.dirname(__file__), "tests", "subprog.py")
r.run_file(subprog_path, g)
def step20(g, r):
g['done'] = True
r.halt()
program = {
10: step10,
20: step20,
}
g = {}
run_program(program, g)
print(g['msg']) # Output: hello from subprog
tests/subprog.py
program = {
100: lambda g, r: g.update(msg='hello from subprog'),
110: lambda g, r: r.halt(),
}
Example: GOSUB/RETURN
from gotopy import run_program, ProgramType
program: ProgramType = {
10: lambda g, r: r.gosub(100),
20: lambda g, r: print('Back from subroutine!') or r.halt(),
100: lambda g, r: print('In subroutine'),
110: lambda g, r: r.return_(),
}
run_program(program)
Testing
Run all tests:
poetry run python3 -m unittest discover tests
Type Checking & Linting
Run type checks and linting:
poetry run mypy .
poetry run flake8
Directory Structure
gotopy/
├── gotopy/
│ ├── __init__.py
│ └── gotopy.py
├── tests/
│ ├── __init__.py
│ ├── test_gotopy.py
│ ├── test_nested_run_file_subprog.py
│ └── subprog.py
├── pyproject.toml
├── .flake8
├── mypy.ini
└── README.md
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gotopy2-0.1.1.tar.gz.
File metadata
- Download URL: gotopy2-0.1.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.2 Linux/6.1.0-37-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a7cf4fa5f7c67f00e2723d2a8a6c1de3527f13c6f7720b3c0c0b001561850ab
|
|
| MD5 |
abf197f42879195000e900e13cf4aff9
|
|
| BLAKE2b-256 |
5c545843c5022e7a33f0482a8f106e612fa556e8672c70c50703ac95649df4ca
|
File details
Details for the file gotopy2-0.1.1-py3-none-any.whl.
File metadata
- Download URL: gotopy2-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.2 Linux/6.1.0-37-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4f4dbba7ed5f0a8afb52a9c659c1364681d4e78528f66a5940c15ba2089c894
|
|
| MD5 |
d7096aa4553ea8f1d97fcb41cea411f2
|
|
| BLAKE2b-256 |
e2271b58e49b432e901042beb540dc9e63d057589f447222502f5a705ace0a20
|