Metadata-Version: 1.1
Name: five
Version: 0.2.0
Summary: Gives you five. A library to overcomplicate `5`
Home-page: http://github.com/lord63/five.py
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Description: Five.py
        =======
        
        |Latest Version| |Build Status| |Coverage Status|
        
        A library to overcomplicate 5. It's a python port of the javascript
        `five <https://github.com/jackdcrawford/five>`__.
        
        Install
        -------
        
        ::
        
            $ pip install five
        
        Usage
        -----
        
        .. code:: python
        
            from five import Five
            five = Five()
        
        Basic 5
        ~~~~~~~
        
        .. code:: python
        
            five()  # 5
            five() + five()  # 10
            five() * five()  # 25
            five() / five()  # 1
            five() - five()  # 0
            five.pow(3)      # 125
            five.sqrt()      # 2.23606797749979
        
        Different sorts of 5
        ~~~~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            five.up_high()  # ⁵
            five.down_low()  # ₅
            five.too_slow()  # 5, with a 555-millisecond delay
            five.roman()  # V
            five.morse_code()  # di-di-di-di-dah
            five.negative()  # -5
            five.loud()  # FIVE
            five.loud('piglatin')  # IVEFAY
            five.smooth()  # S
            five.figlet()  #   _____
                              | ____|
                              | |__
                              |___ \
                               ___) |
                              |____/
            five.stars()  # *****
        
        5 goes multilingual
        ~~~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            five.arabic()  # خمسة
            five.azerbaijani()  # beş
            five.basque()  # bost
            five.belarusian  # пяць
            five.bosnian()  # pet
            five.bulgarian()  # пет
            five.catalan()  # cinc
            five.chinese()  # 五
            five.choctaw()  # tahlapi
            five.croatian()  # pet
            five.czech()  # pět
            five.dovah()  # hen
            five.dutch()  # vijf
            five.elvish()  # lempe
            five.english()  # Five
            five.estonian()  # viis
            five.finnish()  # viisi
            five.french()  # cinq
            five.german()  # fünf
            five.greek()  # πέντε
            five.hebrew()  # חמש
            five.hindi()  # पांच
            five.hungarian()  # öt
            five.icelandic()  # fimm
            five.indonesian()  # lima
            five.irish()  # cúig
            five.italian()  # cinque
            five.japanese()  # 五
            five.kannada()  # ಐದು
            five.klingon()  # vagh
            five.korean()  # 오
            five.latin()  # quinque
            five.latvian()  # pieci
            five.lithuanian()  # penki
            five.mongolian()  # таван
            five.norwegian()  # fem
            five.persian()  # پنج
            five.piglatin()  # ivefay
            five.polish()  # pięć
            five.portuguese()  # cinco
            five.romanian()  # cinci
            five.russian()  # пять
            five.serbian()  # pet
            five.slovakian()  # päť
            five.slovenian()  # pet
            five.spanish()  # cinco
            five.swedish()  # fem
            five.tamil()  # ஐந்து
            five.telugu()  # ఐదు
            five.thai()  # ห้า
            five.turkish()  # beş
            five.ukrainian()  # п’ять
            five.welsh()  # pump
        
        Different radices
        ~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            five.binary()  # 101
            five.octal()  # 5
            five.hex()  # 5
        
        Map and Reduce
        ~~~~~~~~~~~~~~
        
        .. code:: python
        
            five.map([1, 2, 3])  # [5, 5, 5]
            five.reduce([1, 2, 3])  # 5
        
        Novelty
        ~~~~~~~
        
        .. code:: python
        
            five.fab()  # ['Juwan Howard','Ray Jackson','Jimmy King','Jalen Rose','Chris Webber']
            five.jackson()  # ['Jackie','Tito','Jermaine','Marlon','Michael']
        
        Rotation
        ~~~~~~~~
        
        .. code:: python
        
            five.rotate("five.py")  #knaj.ud
        
        Unicode
        ~~~~~~~
        
        .. code:: python
        
            five.oclock()  # '🕔'
        
        Development
        -----------
        
        run the tests:
        
        ::
        
            $ pip install -r dev-requirements.txt
            $ invoke test
        
        Credits
        -------
        
        All the glories should belong to
        `@jackdcrawford <https://github.com/jackdcrawford>`__, I just port it to
        python :)
        
        License
        -------
        
        MIT.
        
        .. |Latest Version| image:: http://img.shields.io/pypi/v/five.svg
           :target: https://pypi.python.org/pypi/five
        .. |Build Status| image:: https://travis-ci.org/lord63/five.py.svg
           :target: https://travis-ci.org/lord63/five.py
        .. |Coverage Status| image:: https://coveralls.io/repos/lord63/five.py/badge.svg
           :target: https://coveralls.io/r/lord63/five.py
        
Keywords: five fun
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
