SE::Google::Translate - translator via Google service
Google Translate parser overview
Translation of text via Google Translate
Fast, up to 2600 requests per minute, multithreaded text translator via Google service. This parser allows you to translate any volumes of text automatically, so you get unique content for filling websites, posting on social networks, or for filling any other resources. The parser automatically detects the source language of the content, you only need to specify the language of the results. Google translator is capable of processing colossal volumes of text, while consuming few resources.
Collected data
- Translated text
- Source text language
- Source text transliteration
- Translated text transliteration
- Translation options
Capabilities
- Choice of translation language
- Automatic language detection
Use cases
- Text translation
- Obtaining different content in the required language for further use
Requests
- Any text for translation should be specified as a request, for example:
A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total!
Results
- As a result, the source text and translation into the selected language are displayed:
A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total! - A-Parser - многопоточный парсер поисковых систем, сервисов оценки сайтов, ключевых слов, контента (текст, ссылки, случайные данные) и многого другого (youtube, картинки, переводчики ...). Всего A-Parser объединяет более 60 парсеров!
Варианты вывода результатов
A-Parser поддерживает гибкое форматирование результатов благодаря встроенному шаблонизатору Template Toolkit, что позволяет ему выводить результаты в произвольной форме, а также в структуированной, например CSV или JSON
Вывод только переведенного текста
Формат результата:
$translated\n
Пример результата:
A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total!
CSV recording example (query, detected language, translated text)
Result format:
[% tools.CSVline(query, detected, translated) %]
Example result:
"A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total!",en,"A-Parser - многопоточный парсер поисковых систем, сервисов оценки сайтов, ключевых слов, контента (текст, ссылки, случайные данные) и многого другого (youtube, картинки, переводчики ...). Всего A-Parser объединяет более 60 парсеров!"
Сохранение в формате SQL
Формат результата:
[% "INSERT INTO text VALUES('" _ query _ "', '"; detected _ "', '"; translated _ "')\n"; %]
Пример результата:
INSERT INTO text VALUES('A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total!', 'en', 'A-Parser - многопоточный парсер поисковых систем, сервисов оценки сайтов, ключевых слов, контента (текст, ссылки, случайные данные) и многого другого (youtube, картинки, переводчики ...). Всего A-Parser объединяет более 60 парсеров!')
Saving in JSON format
Result format:
[% data = {}; data.query = query; data.detected = detected; data.translated = translated; result = {}; result = data; data.json %]
Example result:
{"query":"A-Parser - a multi-threaded parser of search engines, site assessment services, keywords, content(text, links, random data) and much more(youtube, pictures, translators...). A-Parser combines over 60 parsers in total!","translated":"A-Parser - многопоточный парсер поисковых систем, сервисов оценки сайтов, ключевых слов, контента (текст, ссылки, случайные данные) и многого другого (youtube, картинки, переводчики ...). Всего A-Parser объединяет более 60 парсеров!","detected":"en"}
Possible settings
Parameter | Default value | Description |
---|---|---|
From language | Auto-Detect | Select the language to translate the text from, by default, automatic detection is set |
To language | English | Select the language to translate to |