Skip to main content

Zodiac Signs

Project description

Description

Getting the Zodiac sign by date.

Languages:

  • English

  • Russian

Install

$ pip install zodiac-sign

Example

from zodiac_sign import get_zodiac_sign
from datetime import date

d = date(1988, 3, 6)

# only data param
print(get_zodiac_sign(d))

# two params - day and month, without year
print(get_zodiac_sign(6, 3))

Example with locale

from zodiac_sign import get_zodiac_sign
import locale

locale.setlocale(locale.LC_ALL, 'ru_RU')
print(get_zodiac_sign(6, 3))
# out "Рыбы"

locale.setlocale(locale.LC_ALL, 'en_US')
print(get_zodiac_sign(6, 3))
# out "Pisces"

Repository

https://github.com/crusat/python-zodiac-sign

License

MIT

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page