Developer Resources

Everything you need to build powerful data applications with Preswald.

Getting Started

Learn how to build your first data application with Preswald in just minutes.

# Example Python script
import pandas as pd
import preswald as pw

# Load your data
data = pd.read_csv("sales_data.csv")

# Create a Preswald app
app = pw.App("Sales Dashboard")

# Add a chart
app.add_chart(
    title="Monthly Sales",
    data=data,
    x="month",
    y="revenue"
)

# Deploy your app
app.deploy()

Sample Projects

Explore example applications built with Preswald to jumpstart your development.

Community Forum

Connect with other developers, ask questions, and share your projects.

GitHub

Contribute to our open-source libraries and tools on GitHub.

Join our Developer Beta

Get early access to new features and help shape the future of Preswald.