Skip to main content

Add your description here

Project description

Arakawa

Overview

Build interactive reports in seconds using Python.

Arakawa makes it simple to build interactive reports in seconds using Python.

Import Arakawa's Python library into your script or notebook and build reports programmatically by wrapping components such as:

  • Pandas DataFrames
  • Plots from Python visualization libraries such as Bokeh, Altair, Plotly, and Folium
  • Markdown and text
  • Files, such as images, PDFs, JSON data, etc.
  • Interactive forms which run backend Python functions

Arakawa reports are interactive and can also contain pages, tabs, drop downs, and more. Once created, reports can be exported as HTML, shared as standalone files, or embedded into your own application, where your viewers can interact with your data and visualizations.

Getting Started

Check out our Quickstart to build a report in 3m.

Installing Arakawa

pip install arakawa
# or
conda install -c conda-forge

Examples

📊 Share plots, data, and more as reports

Create reports from pandas DataFrames, plots from your favorite libraries, and text.

Simple example with text, plot and table

import altair as alt
from vega_datasets import data
import arakawa as ar

df = data.iris()
fig = (
    alt.Chart(df)
    .mark_point()
    .encode(
        x="petalLength:Q",
        y="petalWidth:Q",
        color="species:N"
    )
)
view = ar.Blocks(
    ar.Plot(fig),
    ar.DataTable(df)
)
ar.save_report(view, path="simple_example.html")

🎛 Layout using interactive blocks

Add dropdowns, selects, grid, pages, and 10+ other interactive blocks.

Complex layout

...

view = ar.Blocks(
    ar.Formula("x^2 + y^2 = z^2"),
    ar.Group(
        ar.BigNumber(
            heading="Number of percentage points",
            value="84%",
            change="2%",
            is_upward_change=True
        ),
        ar.BigNumber(
            heading="Simple Statistic", value=100
        ), columns=2
    ),
    ar.Select(
        ar.Plot(fig, label="Chart"),
        ar.DataTable(df, label="Data")
    ),
)
ar.save_report(view, path="layout_example.html")

See the documentation for more details.

Acknowledgement

This project is fork of datapane/datapane and original codes are written by StackHut Limited (trading as Datapane).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arakawa-0.0.1a0.tar.gz (167.7 kB view details)

Uploaded Source

Built Distribution

arakawa-0.0.1a0-py3-none-any.whl (67.7 kB view details)

Uploaded Python 3

File details

Details for the file arakawa-0.0.1a0.tar.gz.

File metadata

  • Download URL: arakawa-0.0.1a0.tar.gz
  • Upload date:
  • Size: 167.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for arakawa-0.0.1a0.tar.gz
Algorithm Hash digest
SHA256 049fb94ff308b1f7941f89968e648f7c53e1f90a8b32c56324ac35e8bf55e0c8
MD5 0f94827ebea1b784413c74c9674bbbc6
BLAKE2b-256 119ffefde5901e5688127bac952fe6cb741d9b67b8303333203461e0f1c385fe

See more details on using hashes here.

File details

Details for the file arakawa-0.0.1a0-py3-none-any.whl.

File metadata

  • Download URL: arakawa-0.0.1a0-py3-none-any.whl
  • Upload date:
  • Size: 67.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for arakawa-0.0.1a0-py3-none-any.whl
Algorithm Hash digest
SHA256 46375d468679af1e0259458947bbee8fb36aba47bd25d1044a73a0cc94af767a
MD5 97c509704f4a50dd51875bf62f8dd692
BLAKE2b-256 40ca240523a6bc5802b1cfa49aca02962611576e89f6b3aa03c08151e52bcb56

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