Crates.io | translators |
lib.rs | translators |
version | 0.1.4 |
source | src |
created_at | 2024-07-06 16:39:07.801075 |
updated_at | 2024-10-30 10:17:07.213692 |
description | Free Google Translator without API key and limits. |
homepage | https://github.com/charl1e7/rust-translators |
repository | https://github.com/charl1e7/rust-translators |
max_upload_size | |
id | 1294190 |
size | 20,920 |
translators
is a fast async/sync, thread-safe library for Google Translator with no API key and no limits. It also
includes support for proxy.
Questions:
Features flags
google
- add support google-translatetokio-async
- add support asyncuse translators::{GoogleTranslator, Translator};
#[tokio::main]
async fn main() {
let google_trans = GoogleTranslator::default();
let res = google_trans
.translate_async("Hello, world!", "", "es")
.await
.unwrap();
println!("{res}");
}
Add to the dependency:
[dependencies]
translators = { version = "0.1.4", features = ["google", "tokio-async"] }
tokio = { version = "x", features = ["rt-multi-thread", "macros"] }
use translators::{GoogleTranslator, Translator};
fn main() {
let google_trans = GoogleTranslator::default();
let res = google_trans
.translate_sync("Hello, world!", "", "es")
.unwrap();
println!("{res}");
}
Add to the dependency:
[dependencies]
translators = { version = "0.1.4", features = ["google"] }
// delete any line if you don't need it
let google_trans = GoogleTranslator::builder()
// How long to wait for a request in sec
.timeout(35 as usize)
// delay between requests if the limit is exceeded
.delay(120 as usize)
// shows how many requests can be handled concurrently
// work only with async
.max_concurrency(2 as usize)
// proxy
.proxy_address("http://user:password@0.0.0.0:80")
/// limits on the maximum number of chars
/// set if the translator has changed their limits.
.text_limit(5000)
.build();
For more details, guides, and advanced usage, please refer to the examples and official documentation.
The translators
library is provided for educational and research purposes only.
The library is distributed "as-is" with no warranties of any kind, express or implied. The author disclaims any liability for damages arising from the use of this library, including data loss or financial loss. Usage of this library is at your own risk, and the author does not receive any financial benefit from its use.
Users are responsible for complying with third-party terms of service, including those of Google Translator or any other translation service provider.