Easy japanese era tool
Project description
Easy japanese era tool
Powered by Yamato Nagata
>>> from datetime import date
>>> from japanera import Japanera, EraDate
>>> janera = Japanera()
>>> c_era = janera.era(date.today())
>>> c_era._in(date(2019, 4, 16))
True
>>> "Current Japanese Era is <{}>: <{}>".format(c_era.kanji, c_era.english)
Current Japanese Era is <平成>: <Heisei>
>>> "Current Date is <{}>".format(c_era.strftime(date(2019, 4, 16), "%-E%-O年%m月%d日"))
Current Date is <平成31年04月16日>
>>> # Or you can do same thing in this way
>>> "Current Date is <{}>".format(EraDate(2019, 4, 16).strftime("%-E%-O年%m月%d日"))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Japanera-0.1.0.tar.gz
(18.3 kB
view hashes)