Quickstart
Get started with NomadicML quickly
Quickstart Guide
This guide will help you get up and running with NomadicML quickly, either through our web platform or using the SDK.
Using the Web Platform
The fastest way to start using NomadicML is through our web platform at app.nomadicml.com.
1. Create an Account
Sign up for a free account on app.nomadicml.com.
2. Upload a Video
Once logged in, you can upload your first video for analysis:
- Navigate to the dashboard
- Click the “Upload” button
- Select a video file from your computer.
- Wait for the upload to complete
3. View Analysis Results
After uploading, NomadicML will automatically analyze your video:
- The system will detect driving events, identify potential violations, and generate insights
- Once processing is complete, you’ll see a list of detected events
- Click on any event to view details, including AI analysis and recommendations
Using the SDK
For programmatic access to NomadicML, you can use our Python SDK.
1. Install the SDK
2. Initialize the Client
To get your API key, log in to the web platform, go to Profile > API Key, and generate a new key. We recommend storing your API key in an environment variable for security.
3. Upload and Analyze a Video
The upload_and_analyze
method is the most direct way to get started. You can provide it with a path to a local video file, a direct URL to a video hosted elsewhere, or even an existing video_id
.
For batch uploads, cloud URLs, or rerunning analysis see Video Upload & Analysis.
Try it Yourself in Colab!
This notebook walks you through the core functionalities of our SDK, including uploading a video and performing analysis.