https://github.com/hergetto/deepl_ex
DeepL API wrapper for Elixir
https://github.com/hergetto/deepl_ex
deepl elixir wrapper
Last synced: about 1 year ago
JSON representation
DeepL API wrapper for Elixir
- Host: GitHub
- URL: https://github.com/hergetto/deepl_ex
- Owner: hergetto
- License: apache-2.0
- Created: 2023-08-15T20:07:02.000Z (almost 3 years ago)
- Default Branch: development
- Last Pushed: 2024-08-25T12:04:39.000Z (almost 2 years ago)
- Last Synced: 2024-09-26T01:59:09.026Z (over 1 year ago)
- Topics: deepl, elixir, wrapper
- Language: Elixir
- Homepage: https://hex.pm/packages/deepl_ex
- Size: 110 KB
- Stars: 7
- Watchers: 0
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deepl - deepl-ex - Unofficial DeepL API client for Elixir (Awesome DeepL / Client Libraries & SDKs)
README
# DeeplEx
DeeplEx is a package that allows the user to programmatically translate text using DeepL from their Elixir application.
## Installation
This package can be installed
by adding `deepl_ex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:deepl_ex, "~> 0.3.0"}
]
end
```
The docs can be found at .
## Configuration
After installing the package, the following should be added to your config.
```elixir
config :deepl_ex,
api_key: "" # String containing your DeepL api key
```
We determine the tier based on the api key, so you don't need to specify the tier.