Alex Garel
Alex Garel
@pratyaksh1610 do you want to do it ?
@pratyaksh1610 I think for this to work, we also have to taxonomize this entry, that is, add it to labels.txt in english and french, at least.
Note: the code displaying this, I think is in [Display.pm, display_list_of_tags](https://github.com/openfoodfacts/openfoodfacts-server/blob/978fe5de246708a035a82bccd8c1f0d41c97332a/lib/ProductOpener/Display.pm#L2256)
Hi @Sulstice thanks for the issue. I think it really belongs to https://github.com/openfoodfacts/openfoodfacts-server as this is the main repository (this repository is only the python SDK). (cc @teolemon @stephanegigandet) I'm...
@Sulstice sorry for letting it stale… Just a comment on your proposal: your id should be prefixed by the language (eg "en:black salt") because not all ids are in english...
Hi @Alcadeus0 you are welcome ! First think to do might be to setup the project locally, see https://github.com/openfoodfacts/openfoodfacts-server/blob/main/docs/introduction/dev-environment-quick-start-guide.md
@teolemon, not sure if it's about this project or mobile application ?
Personally I would prefer to keep the normal "edit" action and add a new one: "quick edit" (when you decided to activate it in the settings) for the power edit.
Did you try to use multiprocessing ? In python thread are generally a bad idea, because of the GIL (Global Interpreter Lock). You're best bet is generally with multi process.
To find them all: ``` python >>> bads = set() >>> for i in range(10000): ... try: ... Sentence("try %s it" % chr(i)).words ... except: ... bads.add(i) >>> ", ".join(chr(i)...