Installation
HyWrapper is available for Python, TypeScript, and JVM-based languages (Kotlin/Java).
Python Installation
HyWrapper is available on PyPI. You can install it using pip:
Or with uv:
TypeScript Installation
HyWrapper is available on npm. You can install it using npm:
Or with yarn:
Kotlin/Java Installation
HyWrapper is available on JitPack and Maven Central.
Gradle (Kotlin)
Add the JitPack repository and the dependency to your build.gradle.kts:
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
implementation("com.github.Joshy3282:HyWrapper:1.0-SNAPSHOT")
}
Gradle (Groovy)
Add the JitPack repository and the dependency to your build.gradle:
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'com.github.Joshy3282:HyWrapper:1.0-SNAPSHOT'
}
Maven
Add the JitPack repository and the dependency to your pom.xml: