-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtime.py
44 lines (36 loc) · 1.41 KB
/
time.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import time
import calendar
import discord
from discord.ext import commands
class Time(commands.Cog):
def __init__(self, client):
self.client = client
@commands.command(
name="time",
help="Get the current time and shows it in a human readable format. in the readers time zone",
)
async def time(self, ctx):
t = int(time.time())
await ctx.send(f"The time is <t:{t}>")
@commands.command(
name="date",
help="Get the current date and shows it in a human readable format. in the readers time zone",
)
async def fdate(self, ctx, *, message):
t = calendar.timegm(time.strptime(message, "%Y-%m-%d"))
await ctx.send(f"The time and date will be <t:{t}:D>")
@commands.command(
help="Get the current date and shows it in a human readable format. in the readers time zone"
)
async def ftime(self, ctx, *, message):
t = calendar.timegm(time.strptime(message, "%H:%M"))
await ctx.send(f"The time and date will be <t:{t}:t>")
@commands.command(
name="timezone",
help="Get the current time and shows it in a human readable format. in the readers time zone",
)
async def timezone(self, ctx, *, message):
t = calendar.timegm(time.strptime(message, "%Y-%m-%d %H:%M"))
await ctx.send(f"The time and date will be <t:{t}>")
def setup(client):
client.add_cog(Time(client))