german-nouns icon indicating copy to clipboard operation
german-nouns copied to clipboard

A list of ~100,000 German nouns and their grammatical properties compiled from WiktionaryDE as CSV file. Plus a module to look up the data and parse compound words.

Results 10 german-nouns issues
Sort by recently updated
recently updated
newest added

Looking at https://github.com/gambolputty/german-nouns/blob/1d076f5eeb2bf2bac2974362417382415ea746be/german_nouns/lookup/__init__.py#L35-L68 this logic screams for just writing `import sqlite3` (comes with the python interpreter!), creating a table in memory (or on disk), maybe even with a column index,...

enhancement

I have some code roughly like the following to automatically handle compound words not support explicitly. ``` nouns = Nouns() result = nouns[word] if len(result) == 0: if "-" in...

Fixed bug: UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 4372: character maps to

I was testing the german-nouns module today with the example from the Readme.md and ran into the following error: `Traceback (most recent call last): File "c:\Users\...\Documents\...\....py", line 3, in nouns...

fixes the file read operation by specifying encoding The csv file contains characters that are utf-encoded and Python's open function throws an error if the encoding is not specified.

I am running into issues with memory use as I [integrated your solution](https://www.witty.works/en/blog/open-source-at-witty-works) into an API. Now I am pondering ways to reduce memory use and increase scalability. One idea...

in our testing we found too many words missing than we can realistically add to Wiktionary (see also https://github.com/gambolputty/german-nouns/issues/8). so we now implemented the following strategy which at least allows...

I have just installed the package and copied the example code. Why am I getting this error?! ![Screenshot 2024-04-20 195228](https://github.com/gambolputty/german-nouns/assets/20140256/e6023d28-4e38-44cb-ad8c-0ef9ff94a57c) I have found this in StackOverflow: https://stackoverflow.com/questions/9233027/unicodedecodeerror-charmap-codec-cant-decode-byte-x-in-position-y-character Thank you for...

Bumps [black](https://github.com/psf/black) from 22.6.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...

dependencies