funNLP
funNLP is a Python toolbox that bundles dozens of Chinese‑English NLP utilities (sensitive‑word filtering, language detection, ID/phone/email extraction, name‑gender guessing, word vectors, synonym/antonym lookup, etc.) for quick integration into your apps.
- •You need to scrub user‑generated Chinese text for prohibited or sensitive terms before storing or publishing it.
- •Your product must automatically extract structured data (phone numbers, emails, ID numbers) from free‑form Chinese messages.
- •You want a lightweight, all‑in‑one library for Chinese lexical resources (synonyms, idioms, brand names) without wiring multiple third‑party APIs.
```python
from funnlp import SensitiveWordFilter, PhoneInfoExtractor, NameGenderGuesser
# 1️⃣ Detect and mask sensitive words
filter = SensitiveWordFilter()
text = "这是一段包含政治敏感词的文本"
clean, hits = filter.mask(text, mask_char='*')
print('Cleaned:', clean)
print('Hits:', hits)
# 2️⃣ Pull phone‑number details
phone = PhoneInfoExtractor().query('13912345678')
print('Phone info:', phone)
# 3️⃣ Guess gender from a Chinese name
gender = NameGenderGuesser().guess('王丽')
print('Guessed gender:', gender)
```Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
A prompt/skill package — nothing to install beyond adding it to your AI tool.
mkdir -p ~/.claude/skills/funnlp && curl -fsSL https://workflowstacks.com/api/skills/funnlp/claude-skill -o ~/.claude/skills/funnlp/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
FunNLP is mostly documents (86 doc files, 1 small script) — something you read, not something you run. There is nothing to install. Last commit 28 months ago, no license file.
- 1README.mdStart here — what it does and how to install it
Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
A prompt/skill package — nothing to install beyond adding it to your AI tool.
mkdir -p ~/.claude/skills/funnlp && curl -fsSL https://workflowstacks.com/api/skills/funnlp/claude-skill -o ~/.claude/skills/funnlp/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Are you the creator of this tool? Claim your listing → and earn 85% of every sale.
Review Watchdog
Catch every bad review the day it lands — with a reply ready.
Includes the tested workflow and a written setup playbook. Needs: Google Places API key (free tier).
Related skills
More support tools founders pair with this one.