Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.07 KB

File metadata and controls

54 lines (40 loc) · 1.07 KB

User Data Discovery

Explore the available datasets and integrate them into your tools.

Commands

List Catalogs

See which catalogs you have access to.

Syntax:

pangolin-user list-catalogs

Search

Search for tables, views, or dashboards across all catalogs.

Syntax:

pangolin-user search <query>

Example:

pangolin-user search "customer revenue"

Generate Code

Generate boilerplate code to connect to a specific table. Pangolin outputs code with syntax highlighting for immediate use.

Syntax:

pangolin-user generate-code --language <lang> --table <full_table_name>

Supported Languages: pyiceberg, pyspark, dremio, sql.

Example:

pangolin-user generate-code --language pyiceberg --table sales_catalog.public.orders

Get Token

Generate a personal API key for use in external scripts or tools.

Syntax:

pangolin-user get-token [--description <text>] [--expires-in <days>]

Example:

pangolin-user get-token --description "CI/CD Pipeline" --expires-in 30