Skip to content

Kpy is a Kotlin library that adds methods and structs for easy programming

License

Notifications You must be signed in to change notification settings

ghasemdev/kpy-core

Repository files navigation

kpy logo

What is Kpy ?

Release Kotlin Version

Kpy is a Kotlin library that adds methods and structs for easy programming. some of those method added from other languages and some of is extension functions.

Links

Kpy is currently available for maven/gradle builds at Jitpack (read Getting started).

  • Wiki with examples and docs.
  • Change log of improvements and bug fixes.

Download

Gradle Setup

Step 1. Add the JitPack repository to your build.gradle file

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Step 2. Add the dependency

dependencies {
    implementation 'com.github.jakode2020:kpy-core:1.0.2'
}

Maven Setup

Step 1. Add the JitPack repository to your build.gradle file

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.jakode2020</groupId>
    <artifactId>kpy-core</artifactId>
    <version>1.0.2</version>
</dependency>

License

Copyright 2021 Jakode2020 

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.