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
┌──────────────────────────────────────────────────────────────┐
│ home │
├──────────────────────────────────────────────────────────────┤
│ │
│ 1 print hello world │
│ 2 do something │
│ │
├──────────────────────────────────────────────────────────────┤
│ e exit application | q quit current page │
└──────────────────────────────────────────────────────────────┘
>
Install
Pip:
pip install repli
Poetry:
poetry add repli
Usage
page = Page(description='home')
@page.command(type=NativeFunction, name='1', description='print hello world')
def command_print_hello_world():
print('hello world')
@page.command(type=Subprocess, name='2', description='do something')
def command_do_something():
return 'echo something else'
interpreter = Interpreter(page=page)
interpreter.loop()
See example.
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.1.14.tar.gz
(7.8 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.1.14-py3-none-any.whl
(10.0 kB
view details)
File details
Details for the file repli-0.1.14.tar.gz.
File metadata
- Download URL: repli-0.1.14.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a555590b45f7f112eb9564c9a5ff0d81e054a92ddb60c4247a1b629bf1351c9e
|
|
| MD5 |
58bcc0252f26acfc6cd57b149dddfdb4
|
|
| BLAKE2b-256 |
ce2b01e2d0d80cacb868d41e6a30c5e6195324c7270eb949f6eda70b46a0863c
|
File details
Details for the file repli-0.1.14-py3-none-any.whl.
File metadata
- Download URL: repli-0.1.14-py3-none-any.whl
- Upload date:
- Size: 10.0 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 |
acceae8b7e66224a722d7125ab052ffb70ba0f28da6973d2eb346bb4bb78b254
|
|
| MD5 |
1d2ddb7fad55d3f6166768a97a22e407
|
|
| BLAKE2b-256 |
5e3e7c6fb0725f31dc668282c1ba4ab5cbfe40c259963aeac918d43f7e9e5f8e
|