1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/commands/royalpackversion.py

26 lines
826 B
Python
Raw Normal View History

2020-04-29 21:54:01 +00:00
from typing import *
2020-05-10 22:46:12 +00:00
2020-07-22 23:32:21 +00:00
import pkg_resources
import royalnet.commands as rc
2020-04-29 21:54:01 +00:00
class RoyalpackCommand(rc.Command):
2020-07-02 19:40:33 +00:00
name: str = "royalpackversion"
2020-04-29 21:54:01 +00:00
description: str = "Visualizza la versione attuale di Royalpack."
syntax: str = ""
2020-07-22 23:32:21 +00:00
@property
def royalpack_version(self):
return pkg_resources.get_distribution("royalpack").version
2020-04-29 21:54:01 +00:00
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
if __debug__:
message = f" Royalpack [url=https://github.com/Steffo99/royalpack/]Unreleased[/url]\n"
else:
2020-07-22 23:32:21 +00:00
message = f" Royalpack [url=https://github.com/Steffo99/royalpack/releases/tag/{self.royalpack_version}]{self.royalpack_version}[/url]\n"
2020-04-29 21:54:01 +00:00
if "69" in semantic:
message += "(Nice.)"
await data.reply(message)