load_csv_from_url
Load CSV data from a URL into a DataBeak session for analysis. Downloads, parses with security validation, and returns a session ID with data preview.
Instructions
Load CSV file from URL into DataBeak session.
Downloads and parses CSV data with security validation. Returns session ID and data preview for further operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the CSV file to download and load | |
| encoding | No | Text encoding for file reading (utf-8, latin1, cp1252, etc.) | utf-8 |
| delimiter | No | Column delimiter character (comma, tab, semicolon, pipe) | , |
| header_config | No | Header detection configuration |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Sample of loaded data | |
| success | No | Whether operation completed successfully | |
| rows_affected | Yes | Number of rows loaded | |
| memory_usage_mb | No | Memory usage in megabytes | |
| columns_affected | Yes | List of column names detected |