Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.
/ graphy Public archive

Fork of graphy, a simple chart library for Python. With 23% less noob.

License

Notifications You must be signed in to change notification settings

rtyler/graphy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Graphy

Graphy is a chart library for python. It tries to get out of the way and just
let you work with your data.

For more information, see http://code.google.com/p/graphy/

For license info, see the LICENSE file.

INSTALLATION:
No installer yet, so just manually copy graphy/ into python-lib/graphy.

QUICK START:
from graphy.backends import google_chart_api
monthly_rainfall = [3.2, 3.2, 2.7, 0.9, 0.4, 0.1, 0.0, 0.0, 0.2, 0.9, 1.8, 2.3]
months = 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split()
chart = google_chart_api.LineChart(monthly_rainfall)
chart.bottom.labels = months
print chart.display.Url(400, 100)

EXAMPLES:
The examples in the examples/ directory assume graphy is in the PYTHONPATH.
If just want to run them without installing graphy first, you will need to do
something like this:
  $ cd examples
  $ PYTHONPATH=.. ./traffic.py

About

Fork of graphy, a simple chart library for Python. With 23% less noob.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages