Last updated

๐ŸŽฎ Welcome to Dataloop Applications - Level Up Your Platform!

๐ŸŒŸ What are Dataloop Applications?

These applications are extensions that plug right into the Dataloop ecosystem (we call it Dataloop OS), giving you access to:

  • Custom panels that feel right at home in the platform
  • The mighty Dataloop SDK for crafting powerful features
  • Special components that make your workflow smoother

Just like choosing the right tools for crafting in a game, applications let you customize your workspace with exactly what you need! ๐Ÿ› ๏ธ

๐Ÿ“ฆ The Art of DPK (Dataloop Package Kit)

Think of a DPK as your application's treasure chest - it's a magical bundle that contains everything your application needs to work its wonders! Let's peek inside this chest:

๐Ÿ“ Your DPK Structure
โ”œโ”€โ”€ ๐Ÿ“‚ modules/            # Your Python magic spells
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ””โ”€โ”€ main.py
โ”œโ”€โ”€ ๐Ÿ“‚ panels/            # Your UI enchantments
โ”‚   โ””โ”€โ”€ index.html
โ”œโ”€โ”€ ๐Ÿ“‚ src/              # Your source code artifacts
โ”‚   โ””โ”€โ”€ .gitkeep
โ”œโ”€โ”€ ๐Ÿ“‚ tests/            # Your quality assurance scrolls
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ””โ”€โ”€ index.html
โ”œโ”€โ”€ ๐Ÿ“œ dataloop.json     # The sacred manifest
โ”œโ”€โ”€ ๐Ÿ“œ README.md         # Your application's story
โ”œโ”€โ”€ ๐Ÿ“œ build.sh         # Your building instructions
โ””โ”€โ”€ ๐Ÿ“œ requirements.txt  # Your dependencies scroll

Want to see some real magic in action? Visit our GitHub Apps Space for working examples! But if you're feeling adventurous and want to start from scratch:

import dtlpy as dl

# Create your first DPK
project = dl.projects.get('Project Name')
dpk = project.dpks.publish()

๐Ÿš€ Installing Your Applications

๐Ÿช The Marketplace Way

Think of the Marketplace as your app store - it's where all the cool applications hang out! Here you'll find everything from:

  • ๐Ÿ” Metadata viewers
  • ๐ŸŽ™๏ธ Annotation Studios
  • ๐Ÿ–ผ๏ธ AI Model Adapters
  • And many more magical tools!

To install an app:

  1. ๐Ÿƒโ€โ™‚๏ธ Sprint to the marketplace
  2. ๐Ÿ” Search for your desired application
  3. ๐ŸŽฏ Click install
  4. โœจ Watch the magic happen!

Need to tweak some settings? You can adjust machine types, autoscaling, and other configurations in the app settings.

๐Ÿ The Python SDK Way

For those who prefer to wave their Python wand:

import dtlpy as dl

# Get your project ready
project = dl.projects.get('Apps Project')

# Find your desired app
dpk = dl.dpks.get(dpk_name='<app-name>')

# Cast the installation spell
app = project.apps.install(dpk=dpk)

And if you want to upgrade your app:

app = project.apps.get(app_name='<app-name>')
app.dpk_version = dpk.version
app.update()

๐Ÿงน Uninstalling and Cleaning Up

Sometimes you need to do some spring cleaning! Here's how to uninstall apps and clean up DPKs:

๐Ÿ—‘๏ธ Uninstalling an App

Simple as waving goodbye:

# Get your app
app = project.apps.get(app_name='<app-name>')
# Uninstall it
app.uninstall()

๐Ÿงจ Deleting DPKs

You've got two options here:

Option 1: Quick Delete (Single Revision) ๐ŸŽฏ

# Delete a specific DPK revision
dpk.delete()  # This only removes one revision!

Option 2: Complete Cleanup (Nuclear Option) ๐Ÿ’ฅ

Want to remove everything related to a DPK? Here's the full cleanup spell:

# Get your DPK
dpk = dl.dpks.get(dpk_name='your-dpk-name')

# Find and clean up all related apps
apps_filters = dl.Filters(field='dpkName', values=dpk.name, resource='apps')
for app in dl.apps.list(filters=apps_filters).all():
    print(f'๐ŸŽฏ Found app: {app.name} in project: {app.project.name}')    
    # Uninstall the app
    app.uninstall()

# Delete all DPK revisions
print('๐Ÿงน Cleaning up DPK revisions...')
_ = [revision.delete() for revision in dpk.revisions.all()]
print('โœจ Cleanup complete!')

Pro Tips! ๐Ÿ’ก

  • Always double-check before using the complete cleanup option
  • Consider backing up any important data first
  • Remember that deletions are permanent!

๐Ÿงฉ DPK Components - The Building Blocks

๐ŸŽฏ Scopes

Your DPK can cast its magic in two realms:

  • ๐Ÿฐ Project Scope: The app only works within its home project
  • ๐ŸŒ Organization Scope: The app can work across all projects in your organization

Here's how to set your scope:

{ 
    "name": "My App",
    "scope": "project"
    ...
}

๐Ÿ’พ Codebase

Your application's brain can live in two places:

  • ๐Ÿ“ฆ Directly in a git repository with a specific tag
  • ๐Ÿ—„๏ธ In Dataloop's Item Codebase

Here's how to set it up:

# For local codebase
codebase = project.codebases.pack(directory=os.getcwd(),
                                  name=dpk.name,
                                  description="My awesome app!")

# For git codebase
codebase = dl.GitCodebase(git_url='git_url',
                          git_tag='git_tag')

dpk.codebase = codebase
dpk = project.dpks.publish(dpk)

๐ŸŽจ Panels and Toolbars

Think of panels as your app's face - they're what users see and interact with. You can place them in various spots:

  • ๐Ÿ–ผ๏ธ Item Viewer - Give items a fresh look
  • ๐ŸชŸ Floating Window - Create movable command centers
  • ๐Ÿ“‚ Data Browser - Reimagine how users browse items
  • โ„น๏ธ Item Side Panel - Add helpful sidekicks to the viewer

Toolbars are like your app's quick actions - they can appear as:

  • ๐Ÿ”˜ Buttons in various places
  • โš™๏ธ Configuration panels
  • ๐Ÿ“Š Project widgets

๐Ÿ Modules and Functions

Your Python modules are like spell books - they hold all the powerful functions your app can perform. Find out more about crafting these spells in our FaaS tutorial.

๐Ÿ”ง Services

Think of services as your app's faithful servants - they keep your panels running and manage their lifecycle. Learn more about training these helpers in our FaaS tutorial.

๐ŸŽ And More!

You can use any other Dataloop entity (Models, Tasks, etc.) in your app - just define them in your manifest, and they'll spring to life during installation!

๐Ÿ“œ The Sacred Manifest - dataloop.json

Your dataloop.json is like your app's spellbook - it contains all the instructions for how your app should work. Check out more examples in our DPK Examples page, or explore real-world magic in our GitHub!

Ready to create your own magical application? Let's get started! ๐Ÿš€โœจ