Questions tagged [pyenchant]

Python bindings for the Enchant spellchecking system

The pyenchant package provides a set of Python language bindings for the Enchant spellchecking library (also see tag ).

126 questions
0
votes
1 answer

Installing PHP Enchant using PECL on XAMPP on OS X Lion

I am trying to install the PHP enchant library using PECL, but I'm getting "error: Cannot find enchant" even though I have already installed the core enchant executable using Macports. I can even use enchant on the command line. Yet, it seems that…
Dane Iracleous
  • 1,659
  • 2
  • 16
  • 35
0
votes
1 answer

spell check with python and enchant

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,…
Shahin
  • 1,415
  • 4
  • 22
  • 33
-1
votes
1 answer

Python Spell Correct

I am trying to write python script to do spell correction for languages - ENGLISH[GB], GERMAN, SPANISH, ITALIAN, FRENCH. As a first step, I installed pyenchant in my machine[64bit, python 2.7] and when I tried to import enchant package, I got…
-2
votes
1 answer

Can't install pyenchant, how to solve this

I got a problem when tried to install pyenchant module. I don't how to solve this problem. I google it, and did many ways but it still doesn't work. How can I fix it?
-2
votes
1 answer

Creating a list of labels using tkinter

My objective is to create a list of labels(or on big label) such that each label displays a unique output. My program reads the input from a scrolled text and checks for errors and then displays all errors in the form of a list. def check(): …
anusha
  • 11
  • 1
  • 1
-3
votes
3 answers

How to validate a word in python?

I have a list in Python like this: `list = ['thatCreation', 'happeningso', '’', 'comebecause',] Question : I want specific words: For e.g. -> 'thatCreation' -> 'that', 'creation' 'happeningso' -> 'happening', 'so' …
1 2 3
8
9