Metadata-Version: 1.0
Name: neon
Version: 0.1.2dev
Summary: colorful cui utility
Home-page: https://github.com/yoichi-hiromoto/neon
Author: yoichi.hiromoto
Author-email: yoichi.hiromoto@gmail.com
License: Python Software Foundation License
Description: Neon
        ----
        
        Neon is colorful cui utility (on Linux terminal).
        
        Neon is very simple.
        ````````````````````
        
        ::
        
            import sys
            from neon import colorful
            
            sys.stdout.write(colorful("test"))
        
        dynamic change color example
        ````````````````````````````
        
        ::
        
            import sys
            from neon import colorful
            
            s = "NEON is colorful cui utility"
            for i in xrange(0, len(s) + 1):
                sys.stdout.write(colorful(s[:i], start=i))
                sys.stdout.flush()
                time.sleep(0.5)
                sys.stdout.write("\r")
        
Keywords: neon colorful cui enjoy happy funny
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
