-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Move to sub-folder, and remove django models support.
- Add 2 new weather stations. - Update github workflow and README. - Remove Travis CI config file.
- Loading branch information
Showing
18 changed files
with
153 additions
and
220 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: hk0weather | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
schedule: | ||
- cron: '5 19 1 * *' | ||
jobs: | ||
hk0weather-tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
PYTHON: '3.9' | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Setup python | ||
uses: actions/setup-python@master | ||
with: | ||
python-version: 3.10 | ||
- name: Install required python packages | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flake8 coverage | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
- name: List available scrapers | ||
run: | | ||
coverage run -m scrapy list | ||
- name: Test a scraper of regional weather | ||
run: | | ||
coverage run -m scrapy crawl regional -o regional.csv | ||
working-directory: hk0weather | ||
- name: Test a scraper of daily weather forecast | ||
run: | | ||
coverage run -m scrapy crawl hkoforecast -o hkoforecast.csv | ||
working-directory: hk0weather | ||
- name: Test a scraper of 9-day weather forecast | ||
run: | | ||
coverage run -m scrapy crawl hko9dayforecast -o hko9dayforecast.csv | ||
working-directory: hk0weather | ||
- name: Generate coverage json report | ||
run: | | ||
coverage json | ||
working-directory: hk0weather | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
with: | ||
directory: hk0weather |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# -*- coding: utf-8 -*- | ||
import scrapy | ||
|
||
class RegionalItem(scrapy.Item): | ||
scraptime = scrapy.Field() | ||
reptime = scrapy.Field() | ||
station = scrapy.Field() | ||
ename = scrapy.Field() | ||
cname = scrapy.Field() | ||
temperture = scrapy.Field() | ||
humidity = scrapy.Field() | ||
temperturemax = scrapy.Field() | ||
temperturemin = scrapy.Field() | ||
winddirection = scrapy.Field() | ||
windspeed = scrapy.Field() | ||
maxgust = scrapy.Field() | ||
pressure = scrapy.Field() | ||
|
||
class RainfallItem(scrapy.Item): | ||
scraptime = scrapy.Field() | ||
reptime = scrapy.Field() | ||
ename = scrapy.Field() | ||
cname = scrapy.Field() | ||
rainfallmin = scrapy.Field() | ||
rainfallmax = scrapy.Field() | ||
|
||
class Hk0WeatherItem(scrapy.Item): | ||
time = scrapy.Field() | ||
station = scrapy.Field() | ||
ename = scrapy.Field() | ||
cname = scrapy.Field() | ||
temperture = scrapy.Field() | ||
humidity = scrapy.Field() | ||
|
||
class Hk0TropicalItem(scrapy.Item): | ||
time = scrapy.Field() | ||
postime = scrapy.Field() | ||
x = scrapy.Field() | ||
y = scrapy.Field() | ||
category = scrapy.Field() | ||
windspeed = scrapy.Field() | ||
tctype = scrapy.Field() | ||
|
||
|
||
class ForecastItem(scrapy.Item): | ||
update_time = scrapy.Field() | ||
date = scrapy.Field() | ||
general_en = scrapy.Field() | ||
general_hk = scrapy.Field() | ||
description_en = scrapy.Field() | ||
description_hk = scrapy.Field() | ||
wind_en = scrapy.Field() | ||
wind_hk = scrapy.Field() | ||
max_temp = scrapy.Field() | ||
min_temp = scrapy.Field() | ||
max_rh = scrapy.Field() | ||
min_rh = scrapy.Field() | ||
icon = scrapy.Field() | ||
|
||
|
||
class ShortForecastItem(scrapy.Item): | ||
scrape_time = scrapy.Field() | ||
update_time = scrapy.Field() | ||
general_en = scrapy.Field() | ||
general_hk = scrapy.Field() | ||
period_en = scrapy.Field() | ||
period_hk = scrapy.Field() | ||
forecast_en = scrapy.Field() | ||
forecast_hk = scrapy.Field() | ||
outlook_en = scrapy.Field() | ||
outlook_hk = scrapy.Field() | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.