jay3332 / TimeParser

Time parser for Python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TimeParser

Time parser for Python.

Example Usage

import timeparser

print(timeparser.parse("in 4s"))

Example Usage (Discord Bot)

import timeparser
from discord.ext import commands

bot = commands.Bot("!")

@bot.command()
async def parse_time(ctx, *, time: timeparser.TimeConverter):
  await ctx.send(f"This time is {time} in the {time.direction}.")

bot.run("TOKEN")

About

Time parser for Python.


Languages

Language:Python 100.0%