gituser/docker_multiarch/: korean-lunar-calendar-0.2.1 metadata and description

Homepage Simple index

Korean Lunar Calendar

author Jinil Lee
author_email usingsky@gmail.com
classifiers
  • Development Status :: 3 - Alpha
  • Intended Audience :: Developers
  • Intended Audience :: End Users/Desktop
  • Topic :: Software Development :: Libraries
  • License :: OSI Approved :: MIT License
  • Operating System :: OS Independent
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
keywords calendar,korean,lunar
license MIT
maintainer Jinil Lee
maintainer_email usingsky@gmail.com
File Tox results History
korean_lunar_calendar-0.2.1-py3-none-any.whl
Size
8 KB
Type
Python Wheel
Python
3

한국 양음력 변환

Overview

Here is a library to convert Korean lunar-calendar to Gregorian calendar.

Korean calendar and Chinese calendar is same lunar calendar but have different date.

This follow the KARI(Korea Astronomy and Space Science Institute)

한국 양음력 변환 (한국천문연구원 기준) - 네트워크 연결 불필요

음력 변환은 1391년 1월 1일 부터 2050년 11월 18일까지 지원

Gregorian calendar (1391. 2. 5. ~ 2050. 12. 31) <--> Korean lunar-calendar (1391. 1. 1. ~ 2050. 11. 18)

Install

pip install korean_lunar_calendar

To use

  1. import module

    from korean_lunar_calendar import KoreanLunarCalendar
  2. Korean Solar Date -> Korean Lunar Date (양력 -> 음력)

    calendar = KoreanLunarCalendar()
    # params : year(년), month(월), day(일)
    calendar.setSolarDate(2017, 6, 24)
    # Lunar Date (ISO Format)
    print(calendar.LunarIsoFormat())
    # Korean GapJa String
    print(calendar.getGapJaString())
    # Chinese GapJa String
    print(calendar.getChineseGapJaString())
[Result]
2017-05-01 Intercalation
정유년 병오월 임오일 (윤월)
丁酉年 丙午月 壬午日 (閏月)
  1. Korean Lunar Date -> Korean Solar Date (음력 -> 양력)

    # params : year(년), month(월), day(일), intercalation(윤달여부)
    calendar.setLunarDate(1956, 1, 21, False)
    # Solar Date (ISO Format)
    print(calendar.SolarIsoFormat())
    # Korean GapJa String
    print(calendar.getGapJaString())
    # Chinese GapJa String
    print(calendar.getChineseGapJaString())
[Result]
1956-03-03
병신년 경인월 기사일
丙申年 庚寅月 己巳日