JokeAPI and CryptoPrice

<1 min read

I've just released a couple libraries for Kotlin:

  • JokeAPI 0.9.0
    • Retrieve jokes from Sv443's JokeAPI

    val joke = joke()
    val safe = joke(safe = true)
    val pun = joke(categories = setOf(Category.PUN))
    
  • CryptoPrice 1.0.1
    • Retrieve cryptocurrencies current prices

    val btc = spotPrice("BTC") // Bitcoin
    val eth = sellPrice("ETH", "EUR") // Ethereum in Euro
    val eth = buyPrice("LTC", "GBP") // Litecoin in Pound sterling