Git Product home page Git Product logo

deeplator's Introduction

Deeplator

About

Deeplator is a Python library and application enabling translation via the DeepL translator available at deepl.com.

In August 2017, DeepL released the DeepL translator. With unprecedented translation quality, the DeepL translator sets a new standard in neural machine translation. Check out deepl.com to get more information.

Currently, the supported languages include English, German, French, Spanish, Italian, Dutch and Polish.

If you're coding in PHP instead, DeepLy might be the right choice.

Application Usage

Using the application is straight forward. Basically, you just need to launch deeplator.py.

The -l LANG argument specifies the source and output languages. If omitted, the application will ask for the languages interactively. LANG is the translation code in the format AA-BB where AA ist the source language code and BB is the output language code. See the table below for all language codes. For example, if you were to translate from English to German, the argument should be -l EN-DE. You can also tell DeepL to automatically detect the language of the source text by supplying AUTO as the source language (e.g. -l AUTO-DE).

Language Code
German DE
English EN
Spanish ES
French FR
Italian IT
Dutch NL
Polish PL
Portuguese PT
Russian RU

You can tell Deeplator to read input from a file using the -f PATH argument. When ommitted, Deeplator will read input from stdin instead. Remember to exit the multiline input with Ctrl+D.

Library Usage

The Deeplator library was written for Python 3.

Single Sentence

from deeplator import Translator

t = Translator("EN", "DE")
sentence = "Hello world."
translation = t.translate_sentence(sentence)
print(translation)

Multiple Sentences

In case it is unknown if the input string consists of multiple sentences, use the translate_sentences method. It will split the passed argument into sentences first and translate each sentence by its own.

from deeplator import Translator

t = Translator("EN", "DE")
paragraph = "Hello world. DeepL is awesome."
translations = t.translate_sentences(paragraph)
print(translations)

deeplator's People

Contributors

jonbulica99 avatar nick-traeger avatar uinput avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

deeplator's Issues

to many request error

i just installed deeplator to get around the Too many requests problem of https://github.com/vsetka/deepl-translator-cli/ ; but it seams to be the same:

$ git clone https://github.com/uinput/deeplator.git
Cloning into 'deeplator'...
remote: Enumerating objects: 147, done.
remote: Total 147 (delta 0), reused 0 (delta 0), pack-reused 147
Receiving objects: 100% (147/147), 23.92 KiB | 2.66 MiB/s, done.
Resolving deltas: 100% (78/78), done.
n@nTP:~/git$ cd deeplator/
n@nTP:~/git/deeplator$ ls
deeplator  deeplator.py  LICENSE.txt  README.md  setup.py
n@nTP:~/git/deeplator$ ./deeplator.py 
You did not specify a translation code.
Available languages are EN,DE,FR,ES,IT,NL,PL,PT,RU,AUTO.
Source language: AUTO
Output language: DE
Enter the text to be translated. Use Ctrl+D to exit.
hello whats that?

i dont know...
----------------
Traceback (most recent call last):
  File "/home/t/git/deeplator/deeplator/translator.py", line 134, in _send_jsonrpc
    return rpc.send(POST_URL)
  File "/home/t/git/deeplator/deeplator/jsonrpc.py", line 29, in send
    data_str = request.urlopen(req).read()
  File "/usr/lib/python3.9/urllib/request.py", line 214, in urlopen
    return opener.open(url, data, timeout)
  File "/usr/lib/python3.9/urllib/request.py", line 523, in open
    response = meth(req, response)
  File "/usr/lib/python3.9/urllib/request.py", line 632, in http_response
    response = self.parent.error(
  File "/usr/lib/python3.9/urllib/request.py", line 561, in error
    return self._call_chain(*args)
  File "/usr/lib/python3.9/urllib/request.py", line 494, in _call_chain
    result = func(*args)
  File "/usr/lib/python3.9/urllib/request.py", line 641, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 429: Too many requests

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/t/git/deeplator/./deeplator.py", line 52, in <module>
    translations = t.translate_sentences(sentences)
  File "/home/t/git/deeplator/deeplator/translator.py", line 87, in translate_sentences
    resp = _send_jsonrpc(method, params)
  File "/home/t/git/deeplator/deeplator/translator.py", line 136, in _send_jsonrpc
    raise TranslationError(e.reason)
deeplator.translator.TranslationError: Too many requests
n@nTP:~/git/deeplator$   


thanks for fixing that in advance

PyPi package does not import after installing

Hi, I'm trying to install and run Deeplator via pip, and I get:

Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/deeplator.py", line 7, in <module> from deeplator import Translator, VALID_LANGS ImportError: cannot import name 'Translator'

Upon examining the PyPi package here:
https://pypi.python.org/pypi/deeplator/0.0.3

I found that the /deeplator/ directory is missing, so the module doesn't import properly.
Would it be possible to re-upload the PyPi package with all the required files?

TypeError: the JSON object must be str, not 'bytes'

I've done the install with :

sudo python3 setup.py install

(no error) then try the hello world example :

$ cat  /tmp/file.py
from deeplator import Translator

t = Translator("EN", "DE")
sentence = "Hello world."
translation = t.translate_sentence(sentence)
print(translation)

Then run it :

$ python3 !$
python3 /tmp/file.py
Traceback (most recent call last):
  File "/tmp/file.py", line 5, in <module>
    translation = t.translate_sentence(sentence)
  File "/usr/local/lib/python3.5/dist-packages/deeplator-0.0.4-py3.5.egg/deeplator/translator.py", line 113, in translate_sentence
  File "/usr/local/lib/python3.5/dist-packages/deeplator-0.0.4-py3.5.egg/deeplator/translator.py", line 84, in translate_sentences
  File "/usr/local/lib/python3.5/dist-packages/deeplator-0.0.4-py3.5.egg/deeplator/translator.py", line 131, in _send_jsonrpc
  File "/usr/local/lib/python3.5/dist-packages/deeplator-0.0.4-py3.5.egg/deeplator/jsonrpc.py", line 30, in send
  File "/usr/lib/python3.5/json/__init__.py", line 312, in loads
    s.__class__.__name__))
TypeError: the JSON object must be str, not 'bytes'

Any hint ?

Newly add some languages

This module is compatible with EN,DE,FR,ES,IT,NL,PL,AUTO.
But now deepl.com is newly dealing with some languages.
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.