Read–Eval–Print Loop Interpreter
Project description
🐟 Read–Eval–Print Loop Interpreter (REPLI)
It's a Python package for building command-line terminal applications.
Features:
- Breadcrumbs
- Interface panel
- Pagination
┌──────────────────────────────────────────────────────────────┐
│ [myapp] home │
├──────────────────────────────────────────────────────────────┤
│ │
│ 1 print hello world │
│ 2 do something │
│ 3 nested page │
│ │
├──────────────────────────────────────────────────────────────┤
│ e exit application | q quit current page │
└──────────────────────────────────────────────────────────────┘
>
Install
pip install repli
Usage
page_factory = PageFactory()
@page_factory.command(type=NativeFunction, name="1", description="print hello world")
def command_print_hello_world():
print("hello world")
@page_factory.command(type=Subprocess, name="2", description="do something")
def command_do_something():
return "echo something else"
nested_page_factory = PageFactory()
page_factory.add_page(page=nested_page_factory.get(name="3", description="nested page"))
page = page_factory.get(name="home", description="home")
interpreter = Interpreter(page=page, name="myapp")
interpreter.loop()
See the example source.
Development
Requirements:
Setup environment:
poetry shell
poetry install
Run example application:
poetry run example
Type check:
poetry run mypy .
Format:
poetry run black ./example ./repli ./tests
Lint:
poetry run flake8
Test:
poetry run pytest
Coverage:
poetry run coverage run -m pytest
poetry run coverage report -m
Export requirements.txt:
poetry export --without-hashes --format=requirements.txt > requirements.txt
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
repli-0.2.2.tar.gz
(8.2 kB
view details)
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
repli-0.2.2-py3-none-any.whl
(10.1 kB
view details)
File details
Details for the file repli-0.2.2.tar.gz.
File metadata
- Download URL: repli-0.2.2.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4d6c8c174000eac33e6ea2ea0ad2c6ba9b547fca7c65e2665462c4509f7a2a8
|
|
| MD5 |
c9a396740b46837cf22b095968aeba47
|
|
| BLAKE2b-256 |
aa517f20c02249101da144872703431c374f77e585ff7b49e89a452e200114f6
|
File details
Details for the file repli-0.2.2-py3-none-any.whl.
File metadata
- Download URL: repli-0.2.2-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03a07f1a1663380f31adc43a90a9785f4c8a4c940232835bebff9f624629a447
|
|
| MD5 |
8469afa43322cec7f7373a6558283f84
|
|
| BLAKE2b-256 |
c7708fb233bc6ff4411b7896e0cc433d3d62daa76490fdc72e5583e80bdacb52
|