[21:15:02] [telegram] hello! Is there any one with pywikibot knowledge to help me with a little (hopefully) question? [21:20:04] Galder: #pywikibot channel on Freenode IRC might be better suited [21:20:43] [telegram] let's try! [21:58:21] [telegram] that's rather inefficient and also likely ineffective. [21:58:22] [telegram] don't wait for someone to ask you what your question is (re @Galder: hello! Is there any one with pywikibot knowledge to help me with a little (hopefully) question?) [21:59:06] [telegram] yes, no answer there [21:59:40] [telegram] I want to add a statement to a bunch of lexemes at Wikidata. I have this code [21:59:40] [telegram] # -*- coding: utf-8 -*-import pywikibotsite = pywikibot.Site("wikidata", "wikidata")repo = site.data_repository()item = pywikibot.ItemPage(repo, u"L48663")stringclaim = pywikibot.Claim(repo, u'P7559')stringclaim.setTarget(u"abade")item.addClaim(stringclaim, summary=u'Adding Ahotsak lexeme') [21:59:41] [telegram] but it says that Lexemes aren't at namespace 0... how can I add the proper namespace? [22:09:44] [telegram] Lexemes are namespace 146 [22:09:44] [telegram] https://www.wikidata.org/wiki/Help:Namespaces [22:11:36] [telegram] yes, but how can I add it to the code? [22:11:51] [telegram] (147) [22:14:06] [telegram] I have been asking other people myself if it is possible to work with lexemes in pywikibot. No one knows. [22:18:02] [telegram] it seems that the problem is just that, inserting the namespace in the crorect place. I don't know what the correct place is [22:25:48] [telegram] https://gerrit.wikimedia.org/r/#/c/pywikibot/core/+/461372/ [22:33:20] [telegram] @Premeditated sorry, I don't understand what you are trying to say [22:46:16] [telegram] That it is not yet implemented, I guess [22:49:13] [telegram] ok! thanks! [22:53:09] [telegram] the only Python library for lexemes I’m aware of is @nudin42’s LexData https://nudin.github.io/LexData/ [22:53:19] [telegram] though I haven’t used it yet