[go: up one dir, main page]

Skip to content

New Java library to create Telegram bot and userbot

Notifications You must be signed in to change notification settings

Teleight/TeleightTd

Repository files navigation

Teleight Td The most lightweight java telegram td wrapper

TeleightTd is a java telegram td wrapper written with performance and ease of use at mind. It fully utilizes the modern java APIs in order to have a more flexible environment for developers

TeleightTd depends on TdLight natives to add more features and to add more compatibility with other platforms.

The project is still in an alpha phase, and most bot api methods are not yet available. Please see how to contribute

Features

TeleightTd is written towards the latest Java 21 LTS, thus providing the latest features provided by this version.

  • It provides a new api design that is more flexible and easier to use
  • It mostly uses native calls to reduce overhead to the minimum

Installation

Read carefully the tdlight guide to their native library.

Clone this repo, and run this command

./gradlew publishToMavenLocal

Then, in your project, add the dependency

repositories {
    mavenLocal()
    
    //TdLight
    maven("https://mvn.mchv.eu/repository/mchv/")
}

dependencies {
    implementation("org.teleight:TeleightTd:1.0")
    val tdlightVersion = project.property("tdlight_version")
    implementation(platform("it.tdlight:tdlight-java-bom:${tdlightVersion}"))
    implementation("it.tdlight:tdlight-java:${tdlightVersion}}")
    //Use the appropriate native for your system
    implementation("it.tdlight:tdlight-natives:4.0.374:windows_amd64")
}

Usage

An example of how to use the TeleightTd library is available here.

Contributing

We welcome all submissions to this project, but please follow the contributing guidelines situated in CONTRIBUTING.md

Credits

License

This project is licensed under the GNU General Public License v3.0.

Releases

No releases published

Packages

No packages published

Languages