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.13.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.13-py3-none-any.whl
(10.0 kB
view details)
File details
Details for the file repli-0.1.13.tar.gz.
File metadata
- Download URL: repli-0.1.13.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 |
7f1563a5ed73cb32e6a0ddbc079d598b318c1006961183cf539a774de36051ed
|
|
| MD5 |
f28a2237d734103a8ce93d03305d97f3
|
|
| BLAKE2b-256 |
3d4c163e1a3b91ad7406d6d993fcac96a1783a0ab07c8ad7dcf5ace190f37ecb
|
File details
Details for the file repli-0.1.13-py3-none-any.whl.
File metadata
- Download URL: repli-0.1.13-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 |
75eb2555af94bf1b86bfcb6b6249033f9244f9c4e654385cab47a35cba103def
|
|
| MD5 |
74aede7a64e3e34bdf750dc74a0fb221
|
|
| BLAKE2b-256 |
89c12736385cd3de0e5512586f0dceb0279171fad2399c5fb6a86fde307e711b
|