Metadata-Version: 2.1
Name: zodiac-sign
Version: 0.2.5
Summary: Zodiac Signs
Home-page: https://github.com/crusat/python-zodiac-sign
Author: crusat
Author-email: crusat@yandex.ru
License: MIT
Description: # Description

        

        Getting the Zodiac sign by date.

        

        Languages:

        - English (`en_US`, default)

        - Russian (`ru_RU`)

        - Portuguese (`pt_BR`, `pt_PT`) - Thanks to @guilhermecomum

        - Greek (`el`, `el_CY`, `el_GR`) - Thanks to @hargikas

        - German (`de_DE`) - Thanks to @pixelsoccupied

        

        # 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"

        

            # force language (without auto detect)

            print(get_zodiac_sign(6, 3, language='ru_RU'))

        

        # Repository

        

        [https://github.com/crusat/python-zodiac-sign](https://github.com/crusat/python-zodiac-sign)

        

        

        # License

        

        MIT

        

        

        
Keywords: zodiac sign date
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
