Skip to main content

CLI for authenticating with the GreatSky Metaflow platform

Project description

greatsky-internal-metaflow

CLI for authenticating with the GreatSky Metaflow platform.

Install

pip install greatsky-internal-metaflow

Quick Start

# Authenticate (opens GitHub in your browser)
gsm login

# Verify everything is working
gsm validate

# Run Metaflow flows — no further config needed
python my_flow.py run

Commands

Authentication

Command Description
gsm login [--scope global|project|venv] Authenticate via GitHub Device Flow
gsm use-key <key> Configure using a service key (no browser needed)
gsm logout Remove local credentials and config
gsm status Show current authentication state
gsm validate Check auth and platform connectivity
gsm refresh Force re-fetch platform config from the auth API
gsm revoke Immediately revoke your current API key
gsm cleanup Remove legacy config files from before per-env scoping

Service Keys

Command Description
gsm service-key create <label> [--ttl 30d] Create a service key for programmatic access
gsm service-key list List your active service keys
gsm service-key revoke <label> Revoke a service key

Admin (org members only)

Command Description
gsm admin invite <user> [--expires 90d] Invite a GitHub user as guest
gsm admin revoke <user> Remove a guest's access
gsm admin revoke-keys <user> Revoke all API keys for a user
gsm admin guests List all invited guests
gsm admin list-service-keys List all service keys across all users
gsm admin revoke-service-key --user <user> --label <label> Revoke a specific user's service key

Hugging Face Integration

The package includes first-class Hugging Face Hub support. When running on the platform, HF_TOKEN and HF_ORG are injected automatically -- no manual setup. All dataset/model names without a / are auto-prefixed with the org (Great-Sky/).

Datasets

from greatsky_internal_metaflow.hf import load_dataset, save_dataset, list_datasets

# Load a dataset with version tracking (org prefix auto-resolved)
ds, version = load_dataset("my-dataset", split="train")
self.dataset_version = version  # store as Metaflow artifact for lineage

# Save a dataset (accepts Dataset, DataFrame, dict, or directory path)
version = save_dataset(my_dataframe, "my-processed-dataset")
version = save_dataset({"text": texts, "label": labels}, "my-dataset")
version = save_dataset(hf_dataset, "my-dataset", commit_message="v2 cleaned")

# List all org datasets
for ds_info in list_datasets():
    print(ds_info["id"], ds_info["downloads"])

The DatasetVersion object captures the exact HF commit SHA, split, timestamp, and Metaflow run context. Query it later via the Metaflow Client API:

from metaflow import Flow
run = Flow("HFTrainingFlow").latest_run
print(run.data.dataset_version)
# DatasetVersion(Great-Sky/imdb@a3b5c8d2, split=train, run=HFTrainingFlow/42)

Models

from greatsky_internal_metaflow.hf import push_model_to_hub, pull_from_hub, sync_s3_to_hf

# Pull a model (org prefix auto-resolved)
local_path = pull_from_hub("my-model")

# Push a trained model to Great-Sky/my-model-finetuned
url = push_model_to_hub("/tmp/output", "my-model-finetuned")

# S3 <-> HF bridge
sync_s3_to_hf("s3://bucket/models/my-model", "my-model")

With metaflow-checkpoint decorators

Install with pip install greatsky-internal-metaflow[metaflow] to get @huggingface_hub, @model, and @checkpoint decorators:

from metaflow import FlowSpec, step
from metaflow_extensions.obcheckpoint.plugins.hf_hub_decorator import huggingface_hub

class MyFlow(FlowSpec):
    @huggingface_hub(models=["distilbert-base-uncased"])
    @step
    def train(self):
        ...

Locally

If running outside the platform, set HF_TOKEN and HF_ORG as environment variables, or authenticate with huggingface-cli login.

How It Works

  1. gsm login starts a GitHub Device Flow — you get a code to enter at github.com/login/device
  2. Once authorized, the CLI exchanges the GitHub token with the GreatSky auth API for a platform API key
  3. The API key and Metaflow config are written to a .greatsky_gsm/ directory (project, venv, or global scope)
  4. The Metaflow extension reads that config automatically — no wrappers or env vars needed

API keys are valid for 14 days and are automatically revoked if you leave the GitHub org.

Config Resolution

The CLI resolves config from three locations, in priority order:

  1. Project.greatsky_gsm/ in the nearest directory containing pyproject.toml or setup.py
  2. Virtualenv.greatsky_gsm/ inside $VIRTUAL_ENV
  3. Global~/.greatsky_gsm/

Use --scope with gsm login to control where credentials are stored.

Development

git clone https://github.com/greatsky-ai/greatsky-internal-metaflow.git
cd greatsky-internal-metaflow
uv venv && uv pip install -e ".[dev]"
uv run pytest
uv run ruff check src/ tests/

Versioning

Versions are derived automatically from git tags via hatch-vcs. To release:

git tag v0.2.0
git push origin v0.2.0

The publish workflow runs lint, tests, and smoke tests before pushing to PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

greatsky_internal_metaflow-0.1.6.tar.gz (187.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

greatsky_internal_metaflow-0.1.6-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file greatsky_internal_metaflow-0.1.6.tar.gz.

File metadata

File hashes

Hashes for greatsky_internal_metaflow-0.1.6.tar.gz
Algorithm Hash digest
SHA256 49817ca78c552c601d98aeda86aaf67ba3010adbf6b843e9def27a87ac90afe6
MD5 8dd42a4bcf9578595271348bcc2777d3
BLAKE2b-256 df274f863080e32bea66ae3ee3a549af3486d9640d2b781a2805bdc9522460d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for greatsky_internal_metaflow-0.1.6.tar.gz:

Publisher: publish.yml on greatsky-ai/greatsky-internal-metaflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file greatsky_internal_metaflow-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for greatsky_internal_metaflow-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 6db861b3c2cd6bc5398d6eaefe7a961d21a827718169ec843e1f601cd54872c2
MD5 6b1d288473c0dd1d24c944a8be45fdb0
BLAKE2b-256 1841ca8ef24e5902385836d57a9d63706f92be5a86c6f091c9831f45f2322788

See more details on using hashes here.

Provenance

The following attestation bundles were made for greatsky_internal_metaflow-0.1.6-py3-none-any.whl:

Publisher: publish.yml on greatsky-ai/greatsky-internal-metaflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page