Documentation

Learn how to integrate NeuraCore into your robotics workflow

Quick Start

1. Install the NeuraCore client

pip install neuracore

2. Initialize the client

import neuracore as nc

# Login -- this will store your API key after login
nc.login()

# Initialize robot with URDF
nc.connect_robot("robot_name", urdf_path="path/to/robot.urdf")

API Reference

Authentication

nc.login

Authenticate with the NeuraCore server using your API key.

# Login using API key
nc.login(api_key="your-api-key")

# Alternative: Use environment variable
import os
os.environ["NEURACORE_API_KEY"] = "your-api-key"
nc.login()

Complete Example

import neuracore as nc
import numpy as np
import time

# Login and conect your robot
nc.login()
nc.connect_robot("panda_robot", urdf_path="panda.urdf")

# Create dataset
nc.create_dataset("pick_and_place_demos",
                 description="Pick and place demonstrations",
                 tags=["manipulation"])

# Start recording
nc.start_recording()

try:
    while True:
        # Get robot state and images
        joint_positions = robot.get_joint_positions()
        rgb_image = camera.get_rgb_image()
        depth_image = camera.get_depth_image()

        # Log data
        nc.log_joints(joint_positions)
        nc.log_rgb("main_camera", rgb_image)
        nc.log_depth("main_camera", depth_image)

        time.sleep(0.01)  # 100Hz logging

except KeyboardInterrupt:
    # Stop recording
    nc.stop_recording()
    print("Recording stopped")