Update app.py
Browse files
app.py
CHANGED
@@ -1,2 +1,9 @@
|
|
1 |
# Install the datasets library
|
2 |
!pip install datasets
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Install the datasets library
|
2 |
!pip install datasets
|
3 |
+
from datasets import load_dataset
|
4 |
+
|
5 |
+
# Load the dataset
|
6 |
+
dataset = load_dataset("MohamedRashad/arabic-books")
|
7 |
+
|
8 |
+
# Print the dataset info
|
9 |
+
print(dataset)
|