odehaene
commited on
Commit
·
9611595
1
Parent(s):
2dc6bb9
fix: Remove requirements.txt as it confuses load_dataset
Browse files- README.md +15 -0
- requirements.txt +0 -4
README.md
CHANGED
@@ -95,6 +95,21 @@ Creative Commons Attribution-NonCommercial 2.5 license.
|
|
95 |
See the [Copyrights](https://www.explainxkcd.com/wiki/index.php/explain_xkcd:Copyrights) page from
|
96 |
explainxkcd.com for more explanations.
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
## Considerations for Using the Data
|
99 |
|
100 |
As the data was scrapped, it is entirely possible that some fields are missing part of the original data.
|
|
|
95 |
See the [Copyrights](https://www.explainxkcd.com/wiki/index.php/explain_xkcd:Copyrights) page from
|
96 |
explainxkcd.com for more explanations.
|
97 |
|
98 |
+
### Update
|
99 |
+
|
100 |
+
You can update the dataset by using the `scrapper.py` script.
|
101 |
+
First install the dependencies:
|
102 |
+
|
103 |
+
```bash
|
104 |
+
pip install aiolimiter aiohttp beautifulsoup4 pandas
|
105 |
+
```
|
106 |
+
|
107 |
+
Then run the script:
|
108 |
+
|
109 |
+
```bash
|
110 |
+
python scrapper.py
|
111 |
+
```
|
112 |
+
|
113 |
## Considerations for Using the Data
|
114 |
|
115 |
As the data was scrapped, it is entirely possible that some fields are missing part of the original data.
|
requirements.txt
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
aiolimiter==1.0.0
|
2 |
-
aiohttp==3.8.1
|
3 |
-
beautifulsoup4==4.11.1
|
4 |
-
pandas==1.4.2
|
|
|
|
|
|
|
|
|
|