Welcome to Zyra! πΏ This page will help you install Zyra, explore its CLI, and run your first simple workflow.
1. Install Zyraο
Zyra is available on PyPI, so you can install it with:
pip install zyra
β
Requires Python 3.10+.
For developer setup, see the Contributing Guide.
2. Explore the CLIο
Zyra comes with a command-line interface (CLI) for building workflows quickly.
Check available commands:
zyra --help
Youβll see options for:
Data acquisition
Processing and transformations
Visualization (plots, maps, animations)
Export
π Read the CLI reference β
3. Your First Workflowο
Hereβs a simple example: fetching demo weather data and turning it into a plot.
# Step 1. Acquire example dataset
zyra acquire --source demo-weather
# Step 2. Process (filter last 24 hours)
zyra process --filter "last24h"
# Step 3. Visualize
zyra visualize --type line --output weather_plot.png
β¨ Result: a line chart of weather data saved as weather_plot.png
.
4. Next Stepsο
π Introduction β Deeper context and design overview
π§© Pipeline Patterns β Reusable workflow templates
π¨ Visualization Module β Plots, maps, and animations
π§ Processing Module β GRIB, NetCDF, and data transformations
π Acquisition Modules β Fetching data from FTP, HTTP/S, S3, and more
π οΈ Utilities β File management, credentials, and helpers
β¨ You just grew your first insight with Zyra!