Metadata-Version: 2.4
Name: bhms
Version: 1.0.0
Summary: BHMS - Boss Hiding Messaging System: Privacy-focused CLI chat tool
Home-page: https://github.com/stealth-chat/bhms
Author: BHMS Contributors
Author-email: 
License: WTFPL
Project-URL: Homepage, https://github.com/stealth-chat/bhms
Project-URL: Bug Reports, https://github.com/stealth-chat/bhms/issues
Project-URL: Source Code, https://github.com/stealth-chat/bhms
Keywords: chat,cli,privacy,stealth,communication,websocket
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Communications :: Chat
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: websockets>=15.0.1
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# BHMS

Boss Hiding Messaging System - 办公室隐私聊天工具

## 安装

```bash
pip install bhms
```

## 使用

```bash
# 直接启动
bhms

# 指定服务器
bhms --server ws://YOUR_IP:PORT

# 查看帮助
bhms --help
```

## 配置

三种方式任选:

1. 环境变量
```bash
export BHMS_SERVER=ws://YOUR_IP:PORT
export BHMS_ROOM=default_room
export BHMS_NICKNAME=YourName
```

2. 配置文件 `~/.bhms.conf`
```json
{
  "server": "ws://YOUR_IP:PORT",
  "room": "default_room",
  "nickname": "YourName"
}
```

3. 命令行参数
```bash
bhms --server ws://IP:PORT --room myroom --nickname John
```

## 聊天操作

- 发消息: 直接输入
- 看历史: 输入 `qwe`
- 应急模式: 连按两次回车 (显示假 git 输出)
- 退出: Ctrl+C

## 发布到 PyPI

```bash
pip install build twine
python -m build
twine upload dist/*
```

## 许可证

WTFPL - 随便用
