Quickstart Guide

Get SEER monitoring up and running in under 5 minutes. No complex configuration required.

1
Get Your API Key
Create an account and copy your API key
  1. 1. Sign up at seer.ansrstudio.com/signup
  2. 2. Navigate to Dashboard → API Keys
  3. 3. Click "Create New Key" and copy your key (starts with df_)
2
Install SEER
One command to get started
pip install seerpy

Requirements: Python 3.7 or higher

3
Add 3 Lines of Code
Wrap your script with SEER monitoring
from seerpy import Seer

seer = Seer(apiKey='YOUR_API_KEY')

# Your existing function
def process_data():
    # Your code here
    data = load_data()
    transformed = transform(data)
    save_results(transformed)

# Wrap it with monitoring
with seer.monitor("data-pipeline"):
    process_data()

Done! SEER now tracks execution time, success/failure, and sends alerts if something goes wrong.

What You Get Automatically

Execution Tracking

Start time, end time, duration, and success/failure status tracked automatically

Instant Alerts

Get notified via Slack or email when your scripts fail

Error Details

Full stack traces and error messages captured automatically

Run History

View past runs, execution trends, and success rates in the dashboard

Next Steps