Overview
Introduction
Novem is a data visualisation platform for coders. Use a single API to create all your charts, docs, dashboards and e-mails.
Get started
To get started with novem you need to register an account →
Once you have an account you can start creating your charts, using either our online app, one of our libraries or just the core api.
Example: Create Your First Chart
Here’s a simple example of creating a chart with Novem using Python:
import novem
# Create a simple bar chart
chart = novem.Plot("username/my-first-chart")
chart.type = "bar"
chart.data = {
"labels": ["Mon", "Tue", "Wed", "Thu", "Fri"],
"values": [12, 19, 3, 5, 2]
}
chart.save()
print(f"Chart created: {chart.url}")Quick Start
One page summary of how to get started with novem. Quick Start →