All Projects → KSoft-Si → ksoftapi.py

KSoft-Si / ksoftapi.py

Licence: GPL-3.0 license
Official API Wrapper for KSoft.Si API

Programming Languages

python
139335 projects - #7 most used programming language
Batchfile
5799 projects

Projects that are alternatives of or similar to ksoftapi.py

nyxx
Wrapper around Discord API for Dart
Stars: ✭ 217 (+600%)
Mutual labels:  discord-bot, api-client, api-wrapper
pinboard.net
Fully featured API wrapper for pinboard.in
Stars: ✭ 21 (-32.26%)
Mutual labels:  api-client, api-wrapper
nextcord
A Python wrapper for the Discord API forked from discord.py
Stars: ✭ 956 (+2983.87%)
Mutual labels:  api-wrapper, discord-py
buttons
A simple to use interactive session and paginator with custom button support for discord.py.
Stars: ✭ 30 (-3.23%)
Mutual labels:  discord-bot, discord-py
emojis
An emoji management bot for Discord.
Stars: ✭ 18 (-41.94%)
Mutual labels:  discord-bot, discord-py
Unsplash Php
👻 Official PHP wrapper for the Unsplash API
Stars: ✭ 332 (+970.97%)
Mutual labels:  images, api-wrapper
notionapi-agent
Unofficial Node.js API client for Notion.so
Stars: ✭ 89 (+187.1%)
Mutual labels:  api-client, api-wrapper
eco-bot
A Economy Bot made using discord module of python
Stars: ✭ 31 (+0%)
Mutual labels:  discord-bot, discord-py
clickupython
A client for working with the ClickUp API V2
Stars: ✭ 30 (-3.23%)
Mutual labels:  api-client, api-wrapper
rainbot
rainbot is a moderation bot that has robust automod and logging features.
Stars: ✭ 62 (+100%)
Mutual labels:  discord-bot, discord-py
ValorantStoreChecker-discord-bot
Valorant Utility Bot
Stars: ✭ 154 (+396.77%)
Mutual labels:  discord-bot, discord-py
cogwatch
Automatic hot-reloading for your discord.py command files.
Stars: ✭ 17 (-45.16%)
Mutual labels:  discord-bot, discord-py
discord-ui
A discord.py extension for sending, receiving and handling ui interactions in discord
Stars: ✭ 28 (-9.68%)
Mutual labels:  discord-bot, discord-py
rdfp
This R package connects the DoubleClick for Publishers API from R
Stars: ✭ 16 (-48.39%)
Mutual labels:  api-client, api-wrapper
Online-Forever
A Code that can make your Discord Account 24/7!
Stars: ✭ 246 (+693.55%)
Mutual labels:  discord-bot, discord-py
mailerlite-api-python
Python wrapper for Mailerlite API v2
Stars: ✭ 31 (+0%)
Mutual labels:  api-client, api-wrapper
Corona-Tracker-Bot
Discord bot for coronavirus (COVID-19) , With Ai [Machine learning algorithms] integrated into it
Stars: ✭ 26 (-16.13%)
Mutual labels:  discord-bot, discord-py
TragicSimpBot
TragicSimp is a discord bot that can send memes, facts, jokes, quotes, and track user stats. This bot has leveling system which rank user based on their commands in a channel created by Bot
Stars: ✭ 22 (-29.03%)
Mutual labels:  discord-bot, discord-py
Discord-Moderation-Bot
Modular Moderation bot for Discord
Stars: ✭ 49 (+58.06%)
Mutual labels:  discord-bot, discord-py
zoho-crm-php
An API wrapper library for Zoho CRM, written in PHP.
Stars: ✭ 15 (-51.61%)
Mutual labels:  api-client, api-wrapper

KSoftAPI.py

The official Python Wrapper

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 | Join the Discord server

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].