This repository contains a demo project for Delta Arctic using Atlan.
The project uses uv
for environment management. If uv
is installed, you can run uv run main.py
to automatically create a Python virtual environment, install all requirements, and start the app.
- Purpose: Demonstrate Delta Arctic features and integration with Atlan.
-
Clone the repository:
git clone https://github.com/your-org/DeltaArcticDemo.git cd DeltaArcticDemo
-
Configure environment variables:
- Update the
.env
file with yourATLAN_API_KEY
. - If running
example_pii_classification.ipynb
, also set theOPENAPI_API_KEY
.
- Update the
-
Install dependencies:
pip install -r requirements.txt
-
Run the demo:
python main.py
To build the AWS Lambda deployment package, run:
./build_lambda.sh
This script packages the Lambda function and its dependencies into a .zip
file for AWS Lambda deployment.
Note: If you update Python dependencies using uv add
, run uv pip freeze > requirements.txt
before building the package.