Metadata-Version: 1.1
Name: pysparklines
Version: 0.8
Summary: pysparklines is a unicode sparkline generation library.
Home-page: https://github.com/RedKrieg/pysparklines
Author: Brandon Whaley
Author-email: redkrieg@gmail.com
License: UNKNOWN
Description: ===========
        pysparkline
        ===========
        
        Python clone of https://github.com/holman/spark
        
        Takes series data via stdin, command line, or API and prints a sparkline representation.
        
        Output is always UTF-8 encoded.
        
        Usage:
        
        - $ ``sparkline 4 3 2 1``
          █▆▃▁
        - $ ``echo "1.0 1.0 2.0 3.0 5.0 8.0 13.0" | sparkline``
          ▁▁▂▂▃▅█
        - $ ``python -c "import sparkline; print sparkline.sparkify([1.0, 2.0, 3.0, 4.0]).encode('utf-8')"``
          ▁▃▆█
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
