SE::Bing::Translator - translator via www.bing.com/translator/ service

Overview of the scraper
Bing - text translator through the service www.bing.com. This scraper allows translating any volume of text automatically, so you get unique content for filling sites, posting on social networks, or for filling any other resources. The scraper automatically detects the source language of the content; you only need to specify the result language. Bing translator is capable of processing colossal volumes of text without consuming many resources.
Collected data
- Translated text
- Detected text language
Capabilities
- Selection of translation language
- Automatic language detection
- When using automatic language detection, the source text language can be output in the result
Use cases
- Automatic translation of any volume of text.
- Obtaining unique content to fill your sites, door-ways, etc.
Queries
As queries, you must specify the text 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!
Output results examples
A-Parser supports flexible result formatting thanks to the built-in templating engine Template Toolkit, which allows it to output results in an arbitrary form, as well as in a structured form, such as CSV or JSON
Default output
Result format:
$query - $translated\n
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! - A-Parser - 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!
Output only the translated text
Result format:
$translated\n
Example result:
A-Parser - 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!
Output to a CSV table
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 - 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!"
Saving in SQL format
Result format:
[% "INSERT INTO text VALUES('" _ query _ "', '"; detected _ "', '"; translated _ "')\n"; %]
Example result:
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 - 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!')
Dump results to JSON
Общий формат результата:
[% IF notFirst;
",\n";
ELSE;
notFirst = 1;
END;
obj = {};
obj.query = query;
obj.detected = p1.detected;
obj.translated = p1.translated;
obj.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 - 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!","detected":"en"}]
For the options "Initial text" and "Final text" to be available in the Job Editor, you need to activate "More options".
Possible settings
| Parameter | Default value | Description |
|---|---|---|
| From language | Auto-Detect | Select the language from which to translate the text, automatic detection by default |
| To language | English | Select the language to translate into |