Scrap translations from Gxxgle.
I made this project to study ruby and scraping techniques. Also, I needed a translation API for another project and I don't want to use any paid API.
After cloning this repository, navigate to project folder and run:
bundle install
then spin up the webserver
bundle exec rackup -p 9292 config.ru
Use any port you like.
GET /translate
Query parameters:
- text: the text to be translated.
- sl: the original text language.
- Default: en (see all available languages)
- tl: the desired translantion language
- Default: pt-BR (see all available languages)
- hl: the default browser language. You should set this to your native language for best comprehension of the translations.
- Default: pt-BR
GET http://localhost:9292/translate?text=i%20love%20ruby
{
"text": "i love ruby",
"translations": [
{
"data": "eu amo rubi"
}
]
}
GET http://localhost:9292/translate?text=beautiful
Portuguese has gender variations for "beautiful" adjective.
{
"text": "beautiful",
"translations": [
{
"data": "bonita",
"variationDescription": "(feminino)"
},
{
"data": "bonito",
"variationDescription": "(masculino)"
}
]
}
GET http://localhost:9292/translate?text=I%27m%20hungry&sl=en&tl=fr
{
"text": "I'm hungry",
"translations": [
{
"data":"j'ai faim"
}
]
}