SE::Bing::Translator - translator via www.bing.com/translator/ service
Bing translator parser overview
Bing is a text translator via www.bing.com service. This parser allows you to translate any volume 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. Bing translator is capable of processing colossal volumes of text, while consuming few resources.
Data collected
- Translated text
- Detected language of the text
Capabilities
- Language selection for translation
- Automatic language detection
- When using automatic language detection, you can output the language of the source text in the result
Use cases
- Automatic translation of any volume of text.
- Getting unique content to fill your websites, doorways, etc.
Requests
- As requests, you need to specify the text that needs to be translated, 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 text and translation in 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! - A-Parser - многотысячий парсер поисковых систем, сервисов оценки сайта, ключевых слов, содержания (текст, ссылки, случайные данные) и многое другое (youtube, фотографии, переводчики...). A-Parser объединяет более 60 парсеров в общей сложности!
Example of recording in CSV (query, detected language, translated text)
Result format:
[% tools.CSVline(query, detected, translated) %]
Example of 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 of 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 from, by default, automatic detection is used |
To language | English | Select the language to translate to |