Create charts and publish on Amazon S3.
Project description
This module contains methods for producing graphs and publishing them on Amazon S3, or in the location of your choice.
It is written and maintained for Newsworthy, but could possibly come in handy for other people as well.
Installing
pip install newsworthy-charts
Using
This module comes with two classes, Chart and Storage (and it’s subclasses). When using the Chart class, the generated chart will be saved as a local file:
from newsworthycharts import SerialChart
c = Chart(600, 800)
c.title = "Number of smiles per second"
c.xlabel = "Time"
c.ylabel = "Smiles"
c.caption = "Source: Ministry of smiles."
data_serie_1 = [("2008-01-01", 6.1), ("2009-01-01", 5.9), ("2010-01-01", 6.8)]
c.data.append(data_serie_1)
c.highlight = "2010-01-01"
c.render("test", "png")
You can use a _storage_ object to save file to a specific location or cloud service:
from newsworthycharts import Chart
from newsworthycharts import S3Storage
s3 = S3Storage("my_bucket")
c = Chart(600, 800, storage=s3)
c.title = "Number of smiles per second"
c.xlabel = "Time"
c.ylabel = "Smiles"
c.caption = "Source: Ministry of smiles."
c.render("test", "png")
To store a file in a local folder, use the LocalStorage class:
from newsworthycharts import LocalStorage
storage = LocalStorage("/path/to/generated/charts")
Charts are styled using built-in or user-defined styles:
from newsworthycharts import Chart
# This chart has the newsworthy default style
c = Chart(600, 800, style="newsworthy")
# Style can also be the path to a style file (absolute or relative to current working directory)
c2 = Chart(600, 800, style="path/to/styles/mystyle.mplstyle")
To set up you own style, copy the build-in default: <https://github.com/jplusplus/newsworthycharts/blob/master/newsworthycharts/rc/newsworthy>
Newsworthycharts will look first among the predefined style files for the requested style, so if you have a custom style file in you working directory you need to give it a unique name not already in use.
Changelog
1.0.0.dev* - First version, still in development
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for newsworthycharts-1.0.0.dev16.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bef149f299c00d192ad698476bb0b3408e0761222c2e9320a9811e3e3eb1873 |
|
MD5 | 385d4c9006fe258f3d746ce8bba733a9 |
|
BLAKE2b-256 | 51b338ff8c6cc1d86dc3154d37cf5c1f5c4fd26b5d5e3edfdc0475b73f563e67 |
Hashes for newsworthycharts-1.0.0.dev16-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c54a6682aa653c74f819f3a31f2ae6ee7586d63ea7fba1c8a0522cfa15af6d2f |
|
MD5 | 2125f522afbce48d6691510d8a711f35 |
|
BLAKE2b-256 | 40a27418305434806c826a80a64f27c7f22410bad7318c79c1ce851d96224509 |