1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalpack/commands/royalpackversion.py
Stefano Pigozzi 8281702706 Merge remote-tracking branch 'origin/master' into master
# Conflicts:
#	poetry.lock
#	pyproject.toml
#	royalpack/commands/royalpackversion.py
2020-08-21 02:38:18 +02:00

24 lines
747 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from typing import *
import functools
import pkg_resources
import royalnet.commands as rc
class RoyalpackCommand(rc.Command):
name: str = "royalpackversion"
description: str = "Visualizza la versione attuale di Royalpack."
syntax: str = ""
@property
@functools.lru_cache(1)
def royalpack_version(self) -> str:
return pkg_resources.get_distribution("royalpack").version
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
message = f" Royalpack [url=https://github.com/Steffo99/royalpack/releases/tag/{self.royalpack_version}]{self.royalpack_version}[/url]\n"
if "69" in self.royalpack_version:
message += "(Nice.)"
await data.reply(message)