Archiviazione dei dati in CSV/JSON
Impari a salvare i dati estratti nei formati di file comuni, come CSV e JSON, per facilitarne la portabilità e l'analisi.
Archiviazione dei dati in CSV/JSON è una lezione Web Scraping & Bots gratuita su CoddyKit. Questa è la lezione 1 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Web Scraping & Bots, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Web Scraping & Bots include 4 lezioni in totale.
Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.
Storing Your Scraped Data
After scraping, raw data is often in memory. To use it later, share it, or analyze it, you need to save it permanently.
This lesson introduces two popular file formats: CSV and JSON. They are simple, human-readable, and widely supported.
Meet CSV: Comma-Separated Values
CSV stands for Comma-Separated Values. It's a plain text file format used to store tabular data, like a spreadsheet.
Each line in a CSV file is a data record. Each record consists of one or more fields, separated by commas.
CSV: Simple Table Format
Imagine a simple table. Each row becomes a line, and each column value is separated by a comma. The first line often contains the column headers.
name,age,city
Alice,30,New York
Bob,24,LondonWriting to CSV with Python
Python's built-in csv module makes writing data to CSV files easy. We'll use csv.writer and writerow().
The 'w' mode opens the file for writing. newline='' prevents extra blank rows.
import csv
# Data to save
data = [
["name", "age", "city"],
["Alice", 30, "New York"],
["Bob", 24, "London"]
]
# Open the file in write mode
with open("people.csv", "w", newline="") as file:
writer = csv.writer(file)
writer.writerows(data) # Write all rows at once
print("Data saved to people.csv")JSON: JavaScript Object Notation
JSON (JavaScript Object Notation) is another popular, human-readable format. It's often used for sending data between web servers and web applications.
JSON organizes data into key-value pairs, similar to Python dictionaries, and lists.
JSON: Key-Value Pairs
JSON data is structured using objects ({}) and arrays ([]).
- An object holds key-value pairs (e.g.,
"name": "Alice"). - An array holds an ordered list of values (e.g.,
[{}, {}]).
[
{
"name": "Alice",
"age": 30,
"city": "New York"
},
{
"name": "Bob",
"age": 24,
"city": "London"
}
]Writing to JSON with Python
Python's built-in json module handles JSON data. We'll use json.dump() to write a Python dictionary or list to a file.
indent=2 makes the output file more readable by adding indentation.
import json
# Data to save (list of dictionaries)
data = [
{"name": "Alice", "age": 30, "city": "New York"},
{"name": "Bob", "age": 24, "city": "London"}
]
# Open the file in write mode
with open("people.json", "w") as file:
json.dump(data, file, indent=2)
print("Data saved to people.json")Choosing the Right Format
Both CSV and JSON are great for data storage, but they excel in different scenarios:
- CSV: Best for simple tabular data, like spreadsheets. Easy to import into databases or Excel.
- JSON: Ideal for complex, hierarchical data. Great for APIs and when data structure might vary.
Reading Data Back
Just as you can write data, you can also read it back! Both csv and json modules provide functions for this.
csv.reader()for CSV files.json.load()for JSON files.
This allows you to load your scraped data back into Python for further processing.
Data Format Quiz
Which file format is generally better suited for storing hierarchical data with nested structures, like a list of products where each product has multiple attributes and possibly sub-items?
Lesson Summary
You've learned how to persist your scraped data!
- CSV: Ideal for tabular data, easy with Python's
csvmodule. - JSON: Great for hierarchical data, handled by Python's
jsonmodule. - Choose the format that best fits your data's structure and how you plan to use it.
Saving data is crucial for analysis and future use.
Domande Frequenti
La lezione «Archiviazione dei dati in CSV/JSON» è gratuita?
Sì — il testo completo di «Archiviazione dei dati in CSV/JSON» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Web Scraping & Bots, passa a CoddyKit PRO. Il corso Web Scraping & Bots include 4 lezioni in totale.
Cosa imparerò in «Archiviazione dei dati in CSV/JSON»?
Impari a salvare i dati estratti nei formati di file comuni, come CSV e JSON, per facilitarne la portabilità e l'analisi. Eserciti Web Scraping & Bots con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.
Ho bisogno di esperienza per iniziare Web Scraping & Bots?
Non è richiesta alcuna esperienza precedente. Web Scraping & Bots su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 1 di 4.
Quanto tempo richiede la lezione «Archiviazione dei dati in CSV/JSON»?
La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.
Posso scrivere ed eseguire codice in questa lezione Web Scraping & Bots?
Sì. Ogni lezione Web Scraping & Bots include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.
Tutte le lezioni di questo corso
- Archiviazione dei dati in CSV/JSON
- Integrazione con database (SQL)
- Soluzioni di cloud storage
- Archiviare dati nei database NoSQL