Metadata-Version: 1.1
Name: gruffy
Version: 0.3.2
Summary: Gruffy is Python implemetation of Gruff(Ruby Graphing Library)
Home-page: http://pypi.python.org/pypi/gruffy/
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: MIT
Description: About
        =====
        Gruffy is a yet another Python Graphing Library.
        inspired by `Gruff`_ (Ruby Graphing Library).
        
        This module using `pgmagick`_ (GraphicsMagick) .
        
        .. _`Gruff`: http://nubyonrails.com/pages/gruff
        .. _`pgmagick`: http://pypi.python.org/pypi/pgmagick/
        
        
        Install
        =======
        Install from PyPI::
        
            $ pip install gruffy
        
        
        Require
        =======
        `pgmagick`_ module.
        
        package install on Ubuntu::
        
            $ apt-get install libgraphicsmagick++-dev
            $ apt-get install libboost-python1.40-dev
            $ pip install pgmagick
        
        
        Basic Usage
        ===========
        
        Bar Graph Sample::
        
            from gruffy import Bar
        
            g = Bar()
            g.title = "Gruffy's Graph"
        
            g.data("Apples", [1, 2, 3, 4, 4, 3])
            g.data("Oranges", [4, 8, 7, 9, 8, 9])
            g.data("Watermelon", [2, 3, 1, 5, 6, 8])
            g.data("Peaches", [9, 9, 10, 8, 7, 9])
        
            g.labels = {0: '2003', 2: '2004', 4: '2005'}
        
            g.write('sample.png')
        
        
        Getting the source
        ==================
        Download from github_ or PyPI_
        
        .. _github: http://github.com/hhatto/gruffy
        .. _PyPI: http://pypi.python.org/pypi/gruffy
        
        
        Documentation
        =============
        `Gruffy Documentation`_
        
        .. _`Gruffy Documentation`: http://www.hexacosa.net/documents/gruffy/
        
        
Keywords: chart graph visualize
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: Unix
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Graphics
