All public logs

Jump to navigation Jump to search

Combined display of all available logs of Pangeanic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:11, 3 December 2021 Admin talk contribs created page Python Examples (Created page with "==Translate Function== This Python snippet can be used to translate a texts array '''texts'' from '''src''' language code to '''tgt''' language code using the engine with id '''engine''' and using an '''apiKey''' <br/> <pre> def relay(texts, src, tgt, engine, apiKey): url = 'https://prod.pangeamt.com:8443/NexRelay/v1/translate' data = { "src":src, "tgt":tgt, "apikey":apiKey, "engine": engine, "text": texts } headers = {'Content-type': 'application/j...")