KSoft-Si / ksoftapi.py

Official API Wrapper for KSoft.Si API

Home Page:https://api.ksoft.si/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KSoftAPI.py

The official Python Wrapper for KSoft API

Install

Installing via pip:

pip install ksoftapi

Example Usage:

import ksoftapi

kclient = ksoftapi.Client('Your API key here')


async def find_lyrics(query: str):
    try:
        results = await kclient.music.lyrics(query)
    except ksoftapi.NoResults:
        print('No lyrics found for ' + query)
    else:
        first = results[0]
        print(first.lyrics)

Obtain an API key (Unavailable) | Documentation | Join our Discord server

About

Official API Wrapper for KSoft.Si API

https://api.ksoft.si/

License:GNU General Public License v3.0


Languages

Language:Python 99.7%Language:Batchfile 0.3%