deepl-rustls

Crates.iodeepl-rustls
lib.rsdeepl-rustls
version0.6.3
sourcesrc
created_at2024-08-06 14:37:02.689604
updated_at2024-08-06 14:37:02.689604
descriptionA Rust implementation of the DeepL API - RusTLS Fork
homepage
repositoryhttps://github.com/Alex-Programs/deepl-rs-rusttls
max_upload_size
id1327343
size114,386
Alex (Alex-Programs)

documentation

https://docs.rs/deepl

README

Fork

This is a small fork to switch to using Rustls to make it easier to use in docker images.

DeepL Api

github crates.io docs.rs

Typed HTTP wrapper for interacting with DeepL API. File upload/download is also implemented.

Usage

[dependencies]
deepl = "0.6"
use deepl::{DeepLApi, Lang};

let api = DeepLApi::with("YOUR AUTH KEY").new();
let translated = api.translate_text("Hello World", Lang::ZH).await.unwrap();

let sentences = translated.translations;
assert_eq!(sentences[0].text, "你好,世界");

Read examples for more usage.

Collaboration

If you find any bugs in this project or feel confused about any part of the code, feel free to open new issue.

If you want to submit some code modification but don't know how to setup the code environment, you can follow the Nix Installation and enable flakes support. Then simply run nix develop in the project root, all the build dependencies will setup for you.

License

MIT

Commit count: 0

cargo fmt