Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (24 loc) · 1.45 KB

README.md

File metadata and controls

39 lines (24 loc) · 1.45 KB

COVID-19 Nagano News scraper

What's this

長野県が公開しているニュースリンク一覧を json 形式に変換します。

The script that scrapes Pref. of Nagano's website and create a JSON file that has news links.

How to run

このスクリプトは GitHub Actions で毎時実行され、長野県の公表しているデータの取得を試みます。 It's running every hour by GitHub Actions, to try fetching news data then update the news.json under src/.json automatically.

Locally...

ローカル環境で実行する場合。

$ yarn start

Specification

  1. 長野県の Web ページのニュース一覧を JSON ファイルに変換します。

About the JSON file

news.json

Property Desc.
date 日付。HTML text から日付部分を取り出して変換。
url ニュースサイト URL。HTML href から取得。
text 見出し。HTML text から日付部分を削除して変換。

Where would it be used