Metadata-Version: 2.1
Name: PyDidYouMean
Version: 0.1.3
Summary: A module to improve "file/command not found" error messages with "did you mean" suggestions.
Home-page: https://github.com/asweigart/pydidyoumean
Author: Al Sweigart
Author-email: al@inventwithpython.com
License: GPLv3+
Description: # PyDidYouMean
        
        A module to improve "file/command not found" error messages with "did you mean" suggestions.
        
        Install with:
        
            pip install pydidyoumean
        
        Typical usage:
        
            if FILE_NOT_FOUND:
              pydidyoumean.printFileSuggestion(FILENAME) # if no suggested file is found in the cwd, this prints nothing
              # prints out "Did you mean %s?\n" % (SUGGESTED_FILENAME)
        
            if COMMAND_NOT_FOUND:
              pydidyoumean.printSuggestion(CMD_NAME, LIST_OF_ALL_CMDS) # if no suggested command is found, this prints nothing
              # prints out "Did you mean %s?\n" % (SUGGESTED_CMD)
        
        There are several other functions and optional parameters for customizing the message or getting the recommendations. Docs are at https://pydidyoumean.readthedocs.org
Keywords: didyoumean did you mean suggestions suggest levenshtein
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
