I am working to incorporate the symspellpy package for spell checking and correcting large amounts of data. However, the package suggests using pkg_resources.resource_filename, which is no longer supported. Can you please provide guidance on how to access the necessary resources using the currently preferred method?
dictionary_path = pkg_resources.resource_filename("symspellpy", "frequency_dictionary_en_82_765.txt")
bigram_path = pkg_resources.resource_filename("symspellpy", "frequency_bigramdictionary_en_243_342.txt")
The replacement is the
importlib_resources.files
function. It is integrated in standard library from Python 3.9, asimportlib.resources.files
If you just need to support Python 3.9 or newer, it's straightforward
Otherwise, if you want to support Python 3.8 and older, here's how you do it:
importlib_resources>=1.3; python_version < '3.9'
to your dependencies (requirements.txt
,setup.cfg
,setup.py
orpyproject.toml
, depending how the project is organised)See https://importlib-resources.readthedocs.io/en/latest/migration.html