diff --git a/Pipfile b/Pipfile index 1b8860c..44bd9c0 100644 --- a/Pipfile +++ b/Pipfile @@ -3,6 +3,9 @@ name = "pypi" url = "https://pypi.org/simple" verify_ssl = true +[scripts] +main = "python src/main.py" + [dev-packages] [packages] diff --git a/README.md b/README.md index ac65d8e..7c835d5 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,17 @@ get niigata covid19 data ## Usage ``` -$ pipenv run main +# 全てのデータを県のサイトから取ってくる +$ pipenv run main scrape all +# 患者数だけ県のサイトから取ってくる +$ pipenv run main scrape patients +# 検査数だけ県のサイトから取ってくる +$ pipenv run main scrape inspections +# 相談数だけ県のサイトから取ってくる +$ pipenv run main scrape querents + +# Google SpreadSheetからdata.jsonを生成する +$ pipenv run main convert ``` ## Install