9 lines
707 B
Plaintext
Raw Normal View History

2026-01-29 06:54:10 +01:00
TASK: Fetch data from https://jsonplaceholder.typicode.com/users, process it to extract just names and emails, store it in a local SQLite table named 'bench_users', and export it to 'data_export.csv'.
----------------------------------------
Loading...
-> Fetching URL: https://jsonplaceholder.typicode.com/users
2026-01-29 07:42:06 +01:00
-> Executing SQL: CREATE TABLE IF NOT EXISTS bench_users (id INTEGER PRIMARY K...
2026-01-29 08:06:31 +01:00
-> Executing SQL: CREATE TABLE IF NOT EXISTS bench_users (id INTEGER PRIMARY K...
The data from https://jsonplaceholder.typicode.com/users has been fetched, processed to extract names and emails, stored in the local SQLite table 'bench_users', and exported to 'data_export.csv'.