一个在终端中输出色彩斑斓、颜色多样内容以及快捷输入的强大工具。A powerful tool for outputting colorful content and enabling quick input in the terminal.
Project description
NbCmdIO: 终端色彩与交互的强大工具
NbCmdIO 是一个强大的Python库,将普通的命令行终端转变为充满活力的视觉画布和强大的交互平台!告别单调的黑白输出,迎接RGB真彩世界;告别笨重的文本界面,迎接精准的光标控制和输入捕获能力。
🌟 核心功能亮点
⚡ 支持链式调用
- 随时随地,设置光标位置、样式,方便快捷、清晰易读!
prt[row, col].bold().fg_red("text")
🎨 真彩RGB终端着色
- 支持以RGB、HEX格式设定前景色、背景色
- 支持默认颜色:Black、Red、Green等
- 支持Bold、Underline、Italics等效果
- 真彩显示图片,单字符显示两个像素点大大提升分辨率
- 显示ASCII灰度图片
🖱️ 像素级光标控制
- 精确到字符的光标定位
- 保存/恢复光标位置
📦 动态区域管理
- 创建独立更新区域
- 嵌套区域支持
⌨️ 输入捕获(...ing)
- 单键无缓冲读取
- 快捷键组合检测
🚀 快速入门
安装
pip install nbcmdio
基础使用
from nbcmdio import prt
def NbCmdIO():
lavender = "#ccf"
# 清屏并设置终端标题
prt.cls().setTitle("NbCmdIO")
# 在第2行 加粗 文字蓝色 居中显示 背景色渐变
title = " NbCmdIO by Cipen "
prt[2].bold().fg_hex("#00f").gotoCenterOffset(getStringWidth(title))
prt.drawHGrad((230, 92, 0), (249, 212, 35), string=title)
WIDTH = 40
HEIGHT = 10
center_offset = (prt.size_col - WIDTH) // 2
# 以前景#CCF 在 3,centerOffset 处 绘制指定大小的方形,并默认设定新区域 为该方形
prt.fg_hex(lavender)[3, center_offset].drawRect(WIDTH, HEIGHT)
prt.fg_blue()[0, 3](" NbCmdIO ").bold()[0, WIDTH - 8](prt.__version__)
b2 = " "
# 进入上下文(里面不会自动重置样式),在区域的4个角添加方形色块
with prt.bg_hex(lavender):
prt[1, 1](b2)[1, WIDTH - 1](b2)
prt[HEIGHT, 1](b2)[HEIGHT, WIDTH - 1](b2)
# 字符串内添加样式(务必:字符单独定义,不要在链式调用里直接打印)
line1 = f"Welcome to {prt.bold().bg_hex(lavender).fg_hex('#000')} NbCmdIO "
line2 = "Print your string colorfully!"
# 保存并使用样式(样式将包括位置、颜色、效果)
head_style = prt.fg_red().bold().makeStyle()
prt[1].use(head_style).alignCenter(line1) # 在新区域第一行使用样式居中显示文本
prt[2].use(head_style).alignCenter(line2)
prt[3, 3].fg_grey().drawHLine(WIDTH - 4)
text = r"""
_____ _____ _______
| _ \ | _ \ |__ __|
| |__) | | |__) | | |
| __ / | _ < | |
| | | | \ \ | |
|_| |_| \_\ |_| """[1:]
lines = text.splitlines()
chr1 = [l[:8] for l in lines]
chr2 = [l[8:18] for l in lines]
chr3 = [l[18:] for l in lines]
prt.fg_red().bold()[4, 8].printLines(chr1)
prt.fg_green().bold()[4, 16].printLines(chr2)
prt.fg_blue().bold()[4, 25].printLines(chr3)
# 光标跳至本区域下一行,结束
prt[HEIGHT + 1].setOriginTerm().end()
prt.gotoCenterOffset(70)
# 画一条渐变带,然后下移2行,测试终端对颜色效果的支持情况
prt.drawHGrad((51, 101, 211), (190, 240, 72), 70).end(2)
prt.test().end()
prt.gotoCenterOffset(70)
# 画一条渐变带,然后下移2行,测试终端对颜色效果的支持情况
prt.drawHGrad((51, 101, 211), (190, 240, 72), 70).end(2)
prt.test().end()
prt.gotoCenterOffset(70)
# 画一条渐变带,然后下移2行,测试终端对颜色效果的支持情况
prt.drawHGrad((51, 101, 211), (190, 240, 72), 70).end(2)
prt.test().end()
prt.gotoCenterOffset(70)
# 画一条渐变带,然后下移2行,测试终端对颜色效果的支持情况
prt.drawHGrad((34, 225, 255), (98, 94, 177), 70).end(2)
prt.test().end()
NbCmdIO()
🔮 未来路线图
| 版本 | 功能 | 状态 |
|---|---|---|
| v1.0 | RGB色彩支持、区域管理 | ✅ 已发布 |
| v2.0 | 输入捕获系统 | 📅 规划中 |
| v3.0 | 终端UI组件库 | 💡 构思中 |
🌍 社区贡献
我们欢迎各种形式的贡献!无论您是:
- 发现并报告问题
- 提交功能请求
- 贡献代码
- 创作文档
- 分享创意用例
📜 开源协议
NbCmdIO采用MIT许可证 - 您可以自由地在商业和个人项目中使用它!
✨ 立即体验终端魔法!
pip install nbcmdio
准备好将您的命令行体验提升到全新维度了吗?NbCmdIO正在等待为您的终端注入生命!
📜 更新日志
- 1.8.1 完成Output的所有基本功能,一次性更新
- 1.8.2 初开Input的单键无缓冲读取功能
- 1.8.3 修复部分问题,添加快捷ps1批处理文件,分离style
- 1.8.4 添加多行区域打印,分离utils
- 1.8.5 feat: drawHGrad(渐变), drawIMG(终端显示图片)
- 1.8.6 improve: add valiation of loc, size feat: drawImageStr
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 nbcmdio-1.8.61.tar.gz.
File metadata
- Download URL: nbcmdio-1.8.61.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71d91dbbb372fbc01dcbce6d80515c08b080a9c8ec61ed37c14989757338ef5f
|
|
| MD5 |
36143514e94e469f280be0b09ee3f168
|
|
| BLAKE2b-256 |
6f1efec7bcdef35557a279245d9d3dd456033acfd066e023ad28ca0a8d7ec34c
|
File details
Details for the file nbcmdio-1.8.61-py3-none-any.whl.
File metadata
- Download URL: nbcmdio-1.8.61-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d7563b0f8c175c4ab385acdbd6e948bb473323c3c73341aea6df229b30ee1b
|
|
| MD5 |
afede1797264125de1c149cda794d9b8
|
|
| BLAKE2b-256 |
f40fbbb1e5ee1ed392876999ddca0ff4b66943966d17a7a1c58b4218fbe4d395
|