bancuri, glume, imagini, video, fun, bancuri online, bancuri tari, imagini haioase, videoclipuri haioase, distractie online Pe HaiSaRadem.ro vei gasi bancuri, glume, imagini, video, fun, bancuri online, bancuri tari, imagini haioase, videoclipuri haioase, distractie online. Nu ne crede pe cuvant, intra pe HaiSaRadem.ro ca sa te convingi.

Simple Deepl Free API Python example

Deepl Free API Python example

import requests, sys

# Usage: python DeeplFreeAPI.py RO “Was ist das?”

# Response: {“translations”:[{“detected_source_language”:”DE”,”text”:”Ce este?”}]}

auth_key = ‘your_API_key_here’
target_lang = sys.argv[1]
text = sys.argv[2]
data = {
‘auth_key’: auth_key,
‘text’: text,
‘target_lang’: target_lang}

response = requests.post(‘https://api-free.deepl.com/v2/translate’, data=data)

print(response.json()[“translations”][0][“text”])