Create csv of dead journalists in Gaza from wikipedia page
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345 |
- #!/bin/sh
- cd "$(dirname "$0")"
- curl https://en.wikipedia.org/wiki/List_of_journalists_killed_in_the_Gaza_war > journalists.html
- source venv/bin/activate
- python journalists2csv.py < journalists.html > journalists.csv
|