Typo and spelling checker
Project description
Pytypos
Description
Pytypos is a typo and spelling checker used to identify spelling mistakes in comments of a various programming languages, such as Python, Java, C++, C#, Matlab, and others. In addition, it can check other text-oriented files such as MD, RST, TXT, or similar.
Spell checking uses dictionaries installed on the host computer.
The dictionary language can be defined in the Pytypos
object with, for example, dictionary='de'
for German.
For installation and management of dictionaries, see the documentation of pyenchant.
Installation
The easiest way to install is using pip
:
pip install pytypos
To install from source:
git clone https://github.com/PApostol/pytypos.git
cd pytypos
python setup.py install
For usage details check help(pytypos)
.
Usage Examples
The below will scan target
recursively for comments (i.e. # this is a comment
) in Python files:
from pytypos import Pytypos
prj = Pytypos(target='/my/path/project/', match_identifier='#', file_extension='py', recursive=True)
prj.find_typos()
print(prj.typo_list)
print(prj.typo_details)
Pytypos.typo_list
stores a list of all possible typos found.
Pytypos.typo_details
stores a dictionary with the following structure:
If suggestions = False
(default):
{'file1': ['typo1', 'typo2'],
'file2': ['typo1', 'typo2']
}
If suggestions = True
:
{'file1': [{'typo1': ['suggestion1a', 'suggestion1b'],
'typo2': ['suggestion2a', 'suggestion2b']
},
'file2': [{'typo1': ['suggestion1a', 'suggestion1b'],
'typo2': ['suggestion2a', 'suggestion2b']
}
}
The above can be nicely printed on stdout with Python's built-in pprint.
Other Examples
# scan a Java file for comments (i.e. "// this is a comment") and give suggestions with a french dictionary
typos = Pytypos(target='/a/b/c.java', match_identifier='//', dictionary='fr', suggestions=True)
# recursively scan target for any text in RST files and give suggestions
typos = Pytypos(target='/foo/bar/', match_identifier='', file_extension='rst', recursive=True, suggestions=True)
Testing
You can do some simple testing after cloning the repo:
python tests/run_test.py
Note any additional requirements for running the tests: pip install -r tests/requirements.txt
Additional methods
Pytypos.fix_typos()
: Fixes typos found in-between spaces with the most likely replacement
Pytypos.add_to_dictionary()
: Adds custom word list to dictionary
Pytypos.add_to_exclusions()
: Removes custom word list from dictionary
Pytypos.replace_word()
: Replaces words in dictionary
License
Released under MIT by @PApostol
- You can freely modify and reuse.
- The original license must be included with copies of this software.
- Please link back to this repo if you use a significant portion the source code.
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
File details
Details for the file pytypos-1.0.0.tar.gz
.
File metadata
- Download URL: pytypos-1.0.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccc18706015b9c18efa9a6a349534b34bf343dc11ed1d70f76700e36d03a76cb |
|
MD5 | 9537e46515b89e62ebba85f550550914 |
|
BLAKE2b-256 | 5386942672f622153eb09360ef0665024c191ff9c3fa4dc40e6d077f4cd65904 |