超级简单的微信 OCR - 一行代码识别图片文字 | Super simple WeChat OCR
Project description
wx-ocr
一行代码识别图片文字,无需安装微信
安装
pip install wx-ocr
使用
Python API
from wx_ocr import ocr
# 识别图片
texts = ocr("image.png", return_text_only=True)
print(texts) # ['文字1', '文字2', ...]
# 获取完整结果(包含位置信息)
result = ocr("image.png")
for item in result['ocrResult']:
print(item['text'], item['location'])
# 批量识别
from wx_ocr import ocr_batch
results = ocr_batch(["1.png", "2.png", "3.png"], return_text_only=True)
命令行
# 识别图片
wx-ocr image.png
# JSON 格式输出
wx-ocr --format json image.png
# 批量处理
wx-ocr *.png
# 保存结果
wx-ocr --save --output results/ image.png
说明
- 仅支持 Windows
- 需要 Python 3.8+
- 无需安装微信(项目自带 OCR 文件)
- 基于 wechat_ocr 开发
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wx_ocr-0.1.2.tar.gz
(70.5 MB
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
wx_ocr-0.1.2-py3-none-any.whl
(35.4 MB
view details)
File details
Details for the file wx_ocr-0.1.2.tar.gz.
File metadata
- Download URL: wx_ocr-0.1.2.tar.gz
- Upload date:
- Size: 70.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
defc243a50461ea22c8ca1f9c663adef2da837b3f54a17c1ea884b7078eae7a8
|
|
| MD5 |
4b888afcd50724edf605bd376ff2873f
|
|
| BLAKE2b-256 |
22140e2817fc50978d3e39c121c26360ed4d1a1b582d995183d05742d6d3bd41
|
File details
Details for the file wx_ocr-0.1.2-py3-none-any.whl.
File metadata
- Download URL: wx_ocr-0.1.2-py3-none-any.whl
- Upload date:
- Size: 35.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e046e3a5529d428c0f59bf55b62e9c0084e5ec5f8635aec4c294257377ca3fa5
|
|
| MD5 |
47dc8b590e78bd5ce1d428753524ee44
|
|
| BLAKE2b-256 |
94e4477a69a0ae83fb3a9ead593e44f34fffd607ff0584b36d48a62d72965b88
|