Java Wrapper for DeepL API (Improved)
Go to file
5gi a31d12bbb5 added ".of()" to translator
added ".of()" to Translator.java so you don't have to type "new" so many times
added null protection to request
added ability to set authKey to requests
2022-11-16 09:45:20 -05:00
.idea comment add 2022-11-08 19:02:59 -05:00
gradle/wrapper v1 Initial Upload 2022-01-31 22:54:32 -05:00
src/main/java/com/the5gi/DeepJ added ".of()" to translator 2022-11-16 09:45:20 -05:00
.gitignore v1 Initial Upload 2022-01-31 22:54:32 -05:00
build.gradle Update 'build.gradle' 2022-11-16 07:41:24 -05:00
gradlew v1 Initial Upload 2022-01-31 22:54:32 -05:00
gradlew.bat v1 Initial Upload 2022-01-31 22:54:32 -05:00
LICENSE Initial commit 2022-01-31 22:16:48 -05:00
README.md Update 'README.md' 2022-11-15 10:58:17 -05:00
settings.gradle Remove uneeded code 2022-02-02 23:04:00 -05:00

DeepJ

Build Status

Quick Setup

Gradle

Go to your build.gradle file and type:

repositories {
    maven {
        url "https://git.nevets.tech/api/packages/5gi/maven"
    }
}

and

dependencies {
    implementation group: 'com.the5gi.deepj', name: 'DeepJ', version: 'VERSION'
}

Maven

Go to your pom.xml file and type:

<repositories>
	<repository>
		<id>gitea</id>
		<url>https://git.nevets.tech/api/packages/5gi/maven</url>
	</repository>
</repositories>

and

<dependencies>
	<dependency>
		<groupId>com.the5gi.deepj</groupId>
		<artifactId>DeepJ</artifactId>
		<version>1.2.5</version>
	</dependency>
</dependencies>

Info

To see more details, see the wiki.


DeepJ is a Java Wrapper for the DeepL Free Public API. This was originally made by Steven (Forked From) and Updated by 5gi