Hannes Krumbiegel
Hannes Krumbiegel
> How do you make it work with inflections? I'd like to add that to the Italian dictionary I roughly did it like this: 1. Convert the Stardict dictionary to...
> Don't you loose all the formatting at this stage? I don't think so, the html should stay.
Awesome, thanks for merging.
@christianpayeur I am glad to hear this :)
It is in the [function I pasted in above my own code.](https://github.com/Vuizur/ebook_dictionary_creator/blob/master/create_kindle_dict/create_kindle_dict.py)
I took the format_group_content function I pasted in the linked file and replaced it with the version in the site-packages folder in my venv (I know, this is probably quite...
Oups, sorry, I really changed it: ``` GROUP_XHTML_WORD_DEFINITION_TEMPLATE = """ {headword_html}{infl} {definition} """ ```
I worked more on this and created a fork with the changes that allow setting a completely separate HTML for each word: https://github.com/Vuizur/pyglossary. This fork should be fully compatible with...
@1over137 The updated pymorphy2 fork [pymorphy3](https://github.com/no-plagiarism/pymorphy3) might also be interesting to you. It apparently has Python 3.11 support. The new spaCy version already uses it. About the integration of the...
I tried applying pyinstaller to get an exe for the server and got this far: ``` # Having Python 3.10 selected pip install git+https://github.com/coqui-ai/TTS pip install pyinstaller pip install numba==0.56.4...