leather 0.4.0#
Leather is the Python charting library for those who need charts now and don’t care if they’re perfect.
Leather isn’t picky. It’s rough. It gets dirty. It looks sexy just hanging on the back of a chair. Leather doesn’t need your accessories. Leather is how Snake Plissken would make charts.
Get it?
Important links:
Documentation: https://leather.rtfd.io
Repository: https://github.com/wireservice/leather
Show me docs#
Show me code#
import random
import leather
dot_data = [(random.randint(0, 250), random.randint(0, 250)) for i in range(100)]
def colorizer(d):
return 'rgb(%i, %i, %i)' % (d.x, d.y, 150)
chart = leather.Chart('Colorized dots')
chart.add_dots(dot_data, fill_color=colorizer)
chart.to_svg('examples/charts/colorized_dots.svg')
Join us#
Release process - the process for maintainers to publish new releases
License - a copy of the MIT open source license covering leather
Who we are#
The following individuals have contributed code, documentation, or expertise to leather: