Hamilton SDK for reading and writing to the Hamilton backend APIs that support the UI.
Project description
Hamilton UI SDK: Client Code & Related
Welcome to using the Hamilton UI!
Here are instructions on how to get started with tracking, and managing your Hamilton DAGs with the Hamilton UI.
Getting Started
For the latest documentation, please consult our
Hamilton documentation under Hamilton UI
.
For a quick overview of Hamilton, we suggest tryhamilton.dev.
Using the HamiltonTracker
First, you'll need to install the Hamilton SDK package. Assuming you're using pip, you can do this with:
# install the package & cli into your favorite python environment.
pip install "sf-hamilton[sdk]"
# And validate -- this should not error.
python -c "from hamilton_sdk import adapters"
Next, you'll need to modify your Hamilton driver. You'll only need to use one line of code to replace your driver with ours:
from hamilton_sdk import adapters
from hamilton import driver
tracker = adapters.HamiltonTracker(
project_id=PROJECT_ID, # modify this as needed
username=YOUR_EMAIL, # modify this as needed
dag_name="my_version_of_the_dag",
tags={"environment": "DEV", "team": "MY_TEAM", "version": "X"}
)
dr = (
driver.Builder()
.with_config(your_config)
.with_modules(*your_modules)
.with_adapters(tracker)
.build()
)
# to run call .execute() or .materialize() on the driver
Project ID: You'll need a project ID. Create a project if you don't have one, and take the ID from that.
username: This is the email address you used to set up the Hamilton UI.
dag_name: for a project, the DAG name is the top level way to group DAGs. E.g. ltv_model, us_sales, etc.
tags: these are optional are string key value paris. They allow you to filter and curate various DAG runs.
Then run Hamilton as normal! Each DAG run will be tracked, and you'll have access to it in the Hamilton UI. After spinning up the Hamilton UI application, visit it to see your projects & DAGs.
License
The code here is licensed under the BSD-3 Clear Clause license. See the main repository LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sf_hamilton_sdk-0.5.0.tar.gz
.
File metadata
- Download URL: sf_hamilton_sdk-0.5.0.tar.gz
- Upload date:
- Size: 246.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 683e9cba7bbb14ee38feac62bbc67ffbe4e6735071570bee47f4c664cb0a31dc |
|
MD5 | 6680d9e3373bb7184987a4d7a57bf9c5 |
|
BLAKE2b-256 | f3dd4357238dc77e58d1d701825d592dde27b27485cffec89fb227d352a3c661 |
File details
Details for the file sf_hamilton_sdk-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: sf_hamilton_sdk-0.5.0-py3-none-any.whl
- Upload date:
- Size: 255.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60e4e4d1c9c0746c39c475361ffd7b1eaa2eb7552ecc826e2c5d0f7cb18c71b0 |
|
MD5 | 22d95fe9143b1b7caa2594c329812475 |
|
BLAKE2b-256 | 0ac394939555c37912f69e82fc80d0719b96f4ed3ed3ea0995e8c68edaa83136 |