Threatthriver
commited on
Commit
•
c3f6ae4
1
Parent(s):
b85faf5
Update README.md
Browse files
README.md
CHANGED
@@ -22,14 +22,18 @@ The dataset is stored in a JSON file named scraped_data.json. Each entry in the
|
|
22 |
* title: The title of the web page.
|
23 |
* paragraphs: A list of paragraphs extracted from the web page.
|
24 |
### Example Entry
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
"
|
29 |
-
"
|
30 |
-
"
|
31 |
-
|
32 |
-
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
## How to Use Load the Dataset
|
35 |
You can load the JSON file using standard Python libraries such as json or use data processing libraries like pandas.
|
|
|
22 |
* title: The title of the web page.
|
23 |
* paragraphs: A list of paragraphs extracted from the web page.
|
24 |
### Example Entry
|
25 |
+
|
26 |
+
```json
|
27 |
+
{
|
28 |
+
"url": "https://example.com/article",
|
29 |
+
"title": "Example Article Title",
|
30 |
+
"paragraphs": [
|
31 |
+
"This is the first paragraph of the article.",
|
32 |
+
"This is the second paragraph of the article.",
|
33 |
+
// More paragraphs...
|
34 |
+
]
|
35 |
+
}
|
36 |
+
```
|
37 |
}
|
38 |
## How to Use Load the Dataset
|
39 |
You can load the JSON file using standard Python libraries such as json or use data processing libraries like pandas.
|