https://github.com/infuseai/piperider-getting-started
https://github.com/infuseai/piperider-getting-started
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/infuseai/piperider-getting-started
- Owner: InfuseAI
- License: apache-2.0
- Created: 2022-05-31T01:31:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T09:25:16.000Z (over 3 years ago)
- Last Synced: 2025-06-20T20:50:36.012Z (10 months ago)
- Size: 22.5 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Piperider Getting Started
This is the getting started project for [piperider](https://github.com/InfuseAI/piperider)
# Steps
1. Clone the project
```bash
git clone https://github.com/InfuseAI/piperider-getting-started.git
cd piperider-getting-started/
```
1. Install piperider
```bash
pip install -U piperider
```
1. Download the sqlite data
```bash
curl -o data/sp500.db https://piperider-data.s3.ap-northeast-1.amazonaws.com/getting-started/sp500_20220401.db
```
1. Init a piperider project.
You can skip this step because this is already a piperider project. If you would like to try to init the project on you own, you can try this
```bash
rm -rf .piperider/
piperider init
```
Input these options
- **project name**: demo
- **data source type**: sqlite
- **path to database file**: data/sp500.db
1. Diagnose if the data source is well-configured
```
piperider diagnose
```
1. Run the piperider
```bash
piperider run
```
1. Open the piperider report files printed in the command output
1. Download another sqlite data
```bash
curl -o data/sp500.db https://piperider-data.s3.ap-northeast-1.amazonaws.com/getting-started/sp500_20220527.db
```
1. Run piperider again
```bash
piperider run
```
1. Compare two runs
```bash
piperider compare-reports
```
and select the reports you would like to compare