DanBot Status is a module built in python for getting all statistical services used by DanBotHost.
- v0.0.1: Initial release
- v0.0.2: Converted the module to a Asynchronous Package
- v0.1.1: Added Support for Synchronous and Asynchronous Programming
- v0.2.0: Rewrote the module to use the new version of the API
- v0.2.1: Fixed some README mistakes
pip install --upgrade danbot-status
pip install danbot-status
--> For Windows
pip3 install danbot-status
--> For Linux
import danbotstatus
--> Importing Module in Python
danbotstatus.SynchronousState() --> For Synchronous Coding
danbotstatus.AsynchronousState() --> For Asynchronous Coding
danbotstatus.APIError() -> Thrown when the API is not responding or is down
This method needs the module discord.py
import discord
from danbotstatus import AsynchronousState()
dbs = AsynchronousState()
bot = discord.Client()
@bot.event
async def on_ready():
print("Logged In as " + bot.user )
@bot.event
async def on_message(message):
if message.content == 'check all node status':
nodestats = await dbs.fetch_all()
await message.channel.send(nodestats)
bot.run("TOKEN")
This method needs the module Flask
from flask import Flask
from danbotstatus import SynchronousState
dbs = SynchronousState()
app = Flask(__name__)
@app.route('/')
def index():
return {'status': "alive"}
@app.route('/allstats')
def nodestats():
ns = dbs.fetch_all()
return ns
if __name__ == '__main__':
app.run()
pssst, this is not an example , this just shows the functions the module has
from danbotstatus import SynchronousState
dbhs = danbotstatus.SynchronousState()
allnodestats = dbhs.fetch_all() # Gets All Stats
time = dbhs.fetch_time() # Gets the time of the API
names = dbhs.fetch_server_names() # Gets the names of the nodes
stats = dbhs.fetch_server_stats("Server Name", 3) # Gets the stats of the specific servers, Accepts 2 Optional Arguements, either the server name or the index positioning of the dictionary
print(allnodestats) # This method returns a dictionary
print(time) # This method returns a string
print(names) # This method returns a list
print(stats) # This method returns a dictionary
pssst, this is not an example , this just shows the functions the module has
from danbotstatus import AsynchronousState
dbhs = AsynchronousState()
allnodestats = await dbhs.fetch_all() # Gets All Stats
time = await dbhs.fetch_time() # Gets the time of the API
names = await dbhs.fetch_server_names() # Gets the names of the nodes
stats = await dbhs.fetch_server_stats("Server Name", 3) # Gets the stats of the specific servers, Accepts 2 Optional Arguements, either the server name or the index positioning of the dictionary
print(allnodestats) # This method returns a dictionary
print(time) # This method returns a string
print(names) # This method returns a list
print(stats) # This method returns a dictionary
Thank You.
Module Built By Viney. Any Queries or Issue, feel free to make an Issue in the issue tab of Github. This project is welcome to receive any contributions by submitting in PR's