🎁 Get the FREE AI Skills Starter GuideSubscribe →
BytesAgainBytesAgain
🦀 ClawHub

English Phonetics Batch

by @pe1984

批量为英文单词添加、检查和标注美式国际音标(IPA)。支持从文本文件批量导入单词,自动查询每个单词的美式发音音标,验证现有音标正确性,并输出格式化结果。

Versionv1.0.0
💡 Examples

Command Line

# Basic bulk processing (one word per line)
cd scripts/
python english_phonetics_batch.py input_words.txt output_with_phonetics.txt

Check and fix existing file with corrupted phonetics (question marks from encoding errors)

python english_phonetics_batch.py input.txt output.txt --check

Output as CSV for spreadsheets

python english_phonetics_batch.py words.txt output.csv --format csv

Large vocabulary list - increase delay for safety, more retries

python english_phonetics_batch.py words.txt output.txt --delay 500 --retries 5

Python API

import sys
sys.path.insert(0, 'path/to/english-phonetics-batch/scripts')
from english_phonetics_batch import PhoneticsBatch

processor = PhoneticsBatch() results = processor.process_words(["apple", "banana", "cherry"]) processor.save_results(results, "output.txt", format="text")

View on ClawHub
TERMINAL
clawhub install english-phonetics-batch

🧪 Use this skill with your agent

Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

🔍 Can't find the right skill?

Search 60,000+ AI agent skills — free, no login needed.

Search Skills →