Skip to main content

Datapane client library and CLI tool

Project description

Datapane

Datapane Cloud | Documentation | API Docs | Twitter | Blog

Pip Downloads Latest release Conda (channel only)

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:

Report Example

Featured Examples

Here a few samples of the top reports created by the Datapane community. To see more, see our featured section.

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 Cloud 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 Cloud 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

datapane-0.11.5.tar.gz (2.2 MB view details)

Uploaded Source

Built Distribution

datapane-0.11.5-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file datapane-0.11.5.tar.gz.

File metadata

  • Download URL: datapane-0.11.5.tar.gz
  • Upload date:
  • Size: 2.2 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

Hashes for datapane-0.11.5.tar.gz
Algorithm Hash digest
SHA256 3d576f4e889a7dd07b75dd4143aaee83a78a4ddccda6b15654df8b1efa0b89a8
MD5 c09dbdb6631817a2f788564bf92b5bf6
BLAKE2b-256 41ffb42b7486727db48fa55189233d8eb9a922ff88318edaf1e16e8c910a7c36

See more details on using hashes here.

File details

Details for the file datapane-0.11.5-py3-none-any.whl.

File metadata

  • Download URL: datapane-0.11.5-py3-none-any.whl
  • Upload date:
  • Size: 2.3 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

Hashes for datapane-0.11.5-py3-none-any.whl
Algorithm Hash digest
SHA256 04ead9d3bbb78dcc1144a7d03a5dc72ee013b41f6310974ada54ffcbb0f463ec
MD5 25594c891eaa24d76a2579d664b29518
BLAKE2b-256 169125d789df934a29894ec7924ca95a6893fd3c9a5451b1c195930e5bfcb545

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page