Menyimpan Data dalam CSV/JSON
Pelajari cara menyimpan data hasil scraping ke dalam format berkas umum seperti CSV dan JSON agar mudah dipindahkan dan dianalisis.
Menyimpan Data dalam CSV/JSON adalah pelajaran Web Scraping & Bots gratis di CoddyKit. Ini adalah pelajaran 1 dari 4. Kamu bisa membaca pelajaran lengkapnya di bawah secara gratis — lalu praktikkan langsung di browser dengan editor kode bawaan dan tutor AI 24/7. Ini adalah bagian dari jalur belajar Web Scraping & Bots, dan progresmu tersinkronisasi di web dan aplikasi CoddyKit. Kursus Web Scraping & Bots mencakup 4 pelajaran total.
Bagian dari pelajaran ini belum diterjemahkan dan ditampilkan dalam bahasa Inggris.
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.
Pertanyaan yang Sering Diajukan
Apakah pelajaran “Menyimpan Data dalam CSV/JSON” gratis?
Ya — teks lengkap “Menyimpan Data dalam CSV/JSON” gratis dibaca di sini di web. Untuk praktiknya secara interaktif (editor kode bawaan dan tutor AI 24/7) dan buka sisa kursus Web Scraping & Bots, upgrade ke CoddyKit PRO. Kursus Web Scraping & Bots mencakup 4 pelajaran total.
Apa yang akan aku pelajari di “Menyimpan Data dalam CSV/JSON”?
Pelajari cara menyimpan data hasil scraping ke dalam format berkas umum seperti CSV dan JSON agar mudah dipindahkan dan dianalisis. Kamu berlatih Web Scraping & Bots dengan kode praktik yang langsung kamu jalankan di browser, dan tutor AI 24/7 menjawab pertanyaanmu saat kamu mengerjakan pelajaran ini.
Apakah aku perlu pengalaman untuk memulai Web Scraping & Bots?
Tidak diperlukan pengalaman sebelumnya. Web Scraping & Bots di CoddyKit dirancang untuk pemula hingga pelajar tingkat lanjut, jadi kamu bisa memulai di sini atau dari awal dan belajar sesuai kecepatan kamu sendiri. Ini adalah pelajaran 1 dari 4.
Berapa lama pelajaran “Menyimpan Data dalam CSV/JSON” memakan waktu?
Sebagian besar pelajaran CoddyKit memakan waktu sekitar 5–10 menit. Setiap pelajaran ringkas dan interaktif, jadi kamu membuat kemajuan stabil dan melanjutkan dari tempat kamu tinggalkan di web dan aplikasi.
Bisakah aku menulis dan menjalankan kode dalam pelajaran Web Scraping & Bots ini?
Ya. Setiap pelajaran Web Scraping & Bots menyertakan editor kode bawaan, jadi kamu menulis dan menjalankan kode nyata langsung di browser dan mendapatkan umpan balik AI instan — tidak diperlukan penyiapan lokal.
Semua pelajaran dalam kursus ini
- Menyimpan Data dalam CSV/JSON
- Mengintegrasikan dengan Basis Data (SQL)
- Solusi Penyimpanan Cloud
- Menyimpan Data dalam Basis Data NoSQL