The best toolkit to build, run or compile Kotlin appications.


License
MIT
Install
pip install kotlyn==0.0.6

Documentation

Note: If you plan on making a big and serious project, Kotlyn is not the library you are looking for. For big projects you probably want to use gradle. While the kotlinc (the library which Kotlyn is based on) is pretty powerful, it's nowhere near as useful as gradle.


  _   __      _   _             
 | | / /     | | | |              ๐Ÿ’™๐Ÿ’™๐Ÿ’œ๐Ÿ’›๐Ÿ’›๐Ÿ’›
 | |/ /  ___ | |_| |_   _ _ __    ๐Ÿฉต๐Ÿ’™๐Ÿ’›๐Ÿ’›๐Ÿ’›  
 |    \ / _ \| __| | | | | '_ \   ๐Ÿฉท๐Ÿงก๐Ÿ’›๐Ÿ’›    
 | |\  \ |_| | |_| | |_| | | | |  ๐Ÿฉท๐Ÿงก๐Ÿงก๐Ÿ’œ    
 \_| \_/\___/ \__|_|\__, |_| |_|  ๐Ÿงก๐Ÿงก๐Ÿฉต๐Ÿ’™๐Ÿ’œ  
                     __/ |        ๐Ÿงก๐Ÿฉต๐Ÿฉต๐Ÿ’™๐Ÿ’™๐Ÿ’œ
                    |___/

Kotlyn

CURRENTLY WINDOWS ONLY!
If everything goes as planned the unix based version will be out by May 2024.

Kotlyn is a toolkit to build and run Kotlin appications from the command line. This "python package" hijacks the pypi package manager/distributor to install Kotlin's latest version on your system. Apart from installing JetBrain's kotlinc terminal tool, Kotlyn provides a โœจ new and shiny CLI โœจ to run and build kotlin files.

Installation Guide

It's really easy, don't worry!

  1. Make sure python ๐Ÿ is installed
python --version
  1. Use pip to install the CLI
python -m pip install --upgrade kotlyn
  1. Run the setup
python -m kotlyn !setup
  1. Check if the installation is correct โœ…
    Once the setup is installed, you can just use the kotlyn keyword to access the CLI.
kotlyn !version

Usage

CURRENTLY ALL .KT FILES IN THE ENTRY FILE'S DIR ARE LINKED & COMPILED
A fix/feature is on the way

After runing the setup command, you are able to use the shorthand kotlyn instead of python -m kotlyn.

Run a kotlin (.kt) file

This will build the .jar file in kotlyn's temp folder and will automatically delete it after the program has finished.

To run โ–ถ๏ธ the Main.kt just do

kotlyn Main.kt

Build the Main.jar file

This will build the Main.jar file in the same directory where your entry kotlin file is located.

To build ๐Ÿ› ๏ธ the Main.kt into Main.jar just do

kotlyn --build Main.kt