We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code for Bengali to Banglish Example provided in the readme:
Bengali to Banglish Example
# coding=utf-8 from bnbphoneticparser import BengaliToBanglish bengali2banglish = BengaliToBanglish() bengali_text = "আমি বাংলাদেশি" print(bengali2banglish.parse(bengali_text.strip()))
fails with the following error:
File "../bnbphoneticparser/bnbphoneticparser/bengalitobanglish.py", line 44, in __change_sworborno asx += self.kar_reverse_map[_ch] ~~~~~~~~~~~~~~~~~~~~^^^^^ KeyError: 'i'
The problem persists for different strings.
The tests run by:
pytest tests/bengalitobanglish.py
also fail with similar KeyError
KeyError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code for
Bengali to Banglish Example
provided in the readme:fails with the following error:
The problem persists for different strings.
The tests run by:
also fail with similar
KeyError
The text was updated successfully, but these errors were encountered: