Skip to content

Commit e12ec75

Browse files
authored
Add basic customer transactions example (#354)
* Update CI dependencies for building Python API docs * Fix Sphinx version for CI * Fix Sphinx installation commands * Move pip3 command to sub directory * Install dependencies for Python3 doc building * Remove building of Python API docs from root Makefile * Add basic customer transactions example * Removed notebook history for basic example
1 parent 6de3932 commit e12ec75

File tree

11 files changed

+438
-29
lines changed

11 files changed

+438
-29
lines changed

.prow/scripts/test-python-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ set -e
66
LOGS_ARTIFACT_PATH=/logs/artifacts
77

88
cd sdk/python
9-
pip install -r requirements-test.txt
9+
pip install -r requirements-ci.txt
1010
pip install .
1111
pytest --junitxml=${LOGS_ARTIFACT_PATH}/python-sdk-test-report.xml

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,4 @@ clean-html:
4848

4949
build-html:
5050
mkdir -p $(PROJECT_ROOT)/dist/python
51-
cd $(PROJECT_ROOT)/sdk/python/docs && $(MAKE) html
5251
cp -r $(PROJECT_ROOT)/sdk/python/docs/html/* $(PROJECT_ROOT)/dist/python

examples/basic/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Feast Basic Customer Transactions Example
2+
3+
This is a minimal example of using Feast. In this example we will
4+
1. Create a synthetic customer feature dataset
5+
2. Register a feature set to represent these features in Feast
6+
3. Ingest these features into Feast
7+
4. Create a feature query to retrieve historical feature data
8+
5. Create a feature query to retrieve online feature data
9+
10+
Please ensure that Feast is already installed and running before starting this example.

0 commit comments

Comments
 (0)