Datapane client library and CLI tool
Project description
Datapane Teams |
Documentation |
API Docs |
Twitter |
Blog
Turn a Python analysis into a beautiful document in 3 lines of code.
Datapane is a Python library which makes it simple to build reports from the common objects in your data analysis, such as pandas DataFrames, plots from Python visualisation libraries, and Markdown.
Reports can be exported as standalone HTML documents, with rich components which allow data to be explored and visualisations to be used interactively. You can also publish reports to our free public community platform or share them securely with your team and clients.
Getting Started
Installing Datapane
The best way to install Datapane is through pip or conda.
pip
pip3 install -U datapane
conda
conda install -c conda-forge "datapane>=0.10.0"
Datapane also works well in hosted Jupyter environments such as Colab or Binder, where you can install as follows:
!pip3 install --quiet datapane
Explainer Video
https://user-images.githubusercontent.com/3541695/117458709-7e80ba80-af42-11eb-9fa7-a11bb05229fe.mp4
Hello world
Let's say you wanted to create a document with a table viewer and an interactive plot:
import pandas as pd
import altair as alt
import datapane as dp
df = pd.read_csv('https://covid.ourworldindata.org/data/vaccinations/vaccinations-by-manufacturer.csv', parse_dates=['date'])
df = df.groupby(['vaccine', 'date'])['total_vaccinations'].sum().reset_index()
plot = alt.Chart(df).mark_area(opacity=0.4, stroke='black').encode(
x='date:T',
y=alt.Y('total_vaccinations:Q'),
color=alt.Color('vaccine:N', scale=alt.Scale(scheme='set1')),
tooltip='vaccine:N'
).interactive().properties(width='container')
total_df = df[df["date"] == df["date"].max()].sort_values("total_vaccinations", ascending=False).reset_index(drop=True)
total_styled = total_df.style.bar(subset=["total_vaccinations"], color='#5fba7d', vmax=total_df["total_vaccinations"].sum())
dp.Report("## Vaccination Report",
dp.Plot(plot, caption="Vaccinations by manufacturer over time"),
dp.Table(total_styled, caption="Current vaccination totals by manufacturer")
).save(path='report.html', open=True)
This would package a standalone HTML report document such as the following:
Featured Examples
Here a few samples of the top reports created by the Datapane community. To see more, see our featured section.
- Tutorial Report by Datapane Team
- Coindesk analysis by Greg Allan
- COVID-19 Trends by Quarter by Keith Johnson
- Ecommerce Report by Leo Anthias
- Example Academic Paper by Kalvyn Roux
- Example Sales Report by Datapane Team
- Example Client Report by Datapane Team
- Exploration of Restaurants in Kyoto by Ryan Hildebrandt
- The Numbers on Particles by Ryan Hildebrandt
Next Steps
Sharing Reports
Public sharing
In addition to saving documents locally, you can use Datapane Community to publish your reports. Datapane Community is a free hosted platform which is used by tens of thousands of people each month to view and share Python reports.
- Reports can be published for free and shared publicly
- You can embed them into places like Medium, Reddit, or your own website (see here)
- Viewers can explore and download your data with additional DataTable analysis features
To get started, create a free API key (see here) and call the publish
function on your report,
r = dp.Report(dp.DataTable(df), dp.Plot(chart))
r.publish(name="2020 Stock Portfolio", open=True)
Private sharing
If you need private report sharing, Datapane Teams allows secure sharing of reports and the ability to deploy your Jupyter Notebooks or Python scripts as interactive apps.
- Share reports privately with your company or external clients
- Deploy Jupyter Notebooks and scripts as apps, with inputs that can be run by your team interactively to dynamically create results
- Schedule reports to automatically update
Datapane Teams is offered as both a managed SaaS service and an on-prem install. For more information, see the documentation. You can find pricing here.
Analytics
By default, the Datapane Python library collects error reports and usage telemetry.
This is used by us to help make the product better and to fix bugs.
If you would like to disable this, simply create a file called no_analytics
in your datapane
config directory, e.g.
Linux
$ mkdir -p ~/.config/datapane && touch ~/.config/datapane/no_analytics
macOS
$ mkdir -p ~/Library/Application\ Data/datapane && touch ~/Library/Application\ Data/no_analytics
Windows (PowerShell)
PS> mkdir ~/AppData/Roaming/datapane -ea 0
PS> ni ~/AppData/Roaming/datapane/no_analytics -ea 0
You may need to try ~/AppData/Local
instead of ~/AppData/Roaming
on certain Windows configurations depending on the type of your user-account.
Joining the community
Looking to get answers to questions or engage with us and the wider community? Check out our GitHub Discussions board.
Submit feature requests, issues, and bug reports on this GitHub repo.
Open-source, not open-contribution
Datapane is currently closed to external code contributions. However, we are tremendously grateful to the community for any feature requests, ideas, discussions, and bug reports.
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
File details
Details for the file datapane-0.11.6.tar.gz
.
File metadata
- Download URL: datapane-0.11.6.tar.gz
- Upload date:
- Size: 2.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.9.5 Linux/5.4.0-1047-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | faa0cb8eeb46146bd6085f4f68adf9d2effef8ba7cae9869bf25687cbb6ac695 |
|
MD5 | 9f4b791855e4297ef86343b6951c559a |
|
BLAKE2b-256 | 164e0f025aeb70379dbaa3926b2f5cbb6d8b712ea6f2dd7d50d85cd48484e22d |
File details
Details for the file datapane-0.11.6-py3-none-any.whl
.
File metadata
- Download URL: datapane-0.11.6-py3-none-any.whl
- Upload date:
- Size: 2.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.9.5 Linux/5.4.0-1047-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc453ee76fbaafdad72af0ab724d9233c2ed8828eeb85aeda0bc943c30cd5e7a |
|
MD5 | c685cfce713a53a90e01ca91d0ad2539 |
|
BLAKE2b-256 | c4b30325b18a87cb39b55cb79d93931b4d125a399e3f963a66bc0b107fb3a284 |