Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gak/pygooglechart
pygooglechart is a complete Python wrapper for the Google Chart API.
https://github.com/gak/pygooglechart
Last synced: 3 months ago
JSON representation
pygooglechart is a complete Python wrapper for the Google Chart API.
- Host: GitHub
- URL: https://github.com/gak/pygooglechart
- Owner: gak
- License: gpl-3.0
- Archived: true
- Created: 2009-08-11T04:16:52.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2022-04-04T21:16:32.000Z (over 2 years ago)
- Last Synced: 2024-04-20T12:51:08.570Z (8 months ago)
- Language: Python
- Homepage:
- Size: 110 KB
- Stars: 195
- Watchers: 17
- Forks: 56
- Open Issues: 11
-
Metadata Files:
- Readme: README.markdown
- Changelog: CHANGELOG.markdown
- License: COPYING
Awesome Lists containing this project
README
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)
Project Abandoned
-----------------Many apologies. I've stopped maintaining this project due to personal time constraints.
I'm happy to forward users to any new forks, or to discuss PyPI ownership.
Python Google Chart
===================pygooglechart is a complete Python wrapper for the Google Chart API.
pygooglechart works with Linux, Windows and Mac OS X.
Example
-------from pygooglechart import PieChart3D
# Create a chart object of 250x100 pixels
chart = PieChart3D(250, 100)# Add some data
chart.add_data([20, 10])# Assign the labels to the pie data
chart.set_pie_labels(['Hello', 'World'])# Print the chart URL
print chart.get_url()# Download the chart
chart.download('pie-hello-world.png')There are more examples in [the examples directory](https://github.com/gak/pygooglechart/tree/master/examples).
Installation
------------
There are a few ways of installing it from source:If you have setuptools installed, simply run the following:
easy_install pygooglechart
Or get the sources and run:
python setup.py install