Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to have a spell check feature in my PyQt4 project and it seems pyenchant is a good choice to do this thing. It's work prefect. but I want to make my own dictionary of words and feed the module with them. Is it possible at all?

after that, how can I make an easy process to use this new dictionary on other computers that want to use my original program? I don't want to make user install some strange program and dictionaries to use my simple program.

PS: I'm on a Linux system.

share|improve this question

1 Answer

You could use Personal Word List feature. Add words via pwl object:

>>> pwl = enchant.request_pwl_dict("mywords.txt")

Use word list:

>>> d2 = enchant.DictWithPWL("en_US", "mywords.txt")
>>> d2.check("Hello")
True

To install "mywords.txt" use package_data. See Including non-Python files with setup.py

share|improve this answer
Yeah, I used it before, but after running my program, all words in the file vanished! I thought maybe I used wrong function. – Shahinism Oct 2 '12 at 16:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.