Rustlate

Really simple free google translate library for Rust.

Links

Example Usage(s)

```rust use rustlate;

fn main() { let translator_struct = rustlate::Translator{ to: "tr", from: "en" };

match translator_struct.translate("hello.") {
    Ok(translated) => println!("Result: {}", translated),
    Err(_) => println!("Something went wrong...")
}

} ```

```rust use rustlate;

fn main() { println!("{:?}", rustlate::translate_auto("hello", "tr")); } ```

Found a bug? Got an error?

Contributing

If you want to contribute this project:

Authors

License

This project is distributed under MIT license.

Project status

Under development.