Skip to content

Commit

Permalink
test action and parse
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghlerrix committed Aug 7, 2023
1 parent 70cc96d commit 770382a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/baidupush.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## 利用GitHub Actions每天定时给百度推送链接,提高收录率 ##

name: baiduPush

# 两种触发方式:一、push代码,二、每天国际标准时间23点(北京时间+8即早上7点)运行
on:
push:
# schedule:
# - cron: '0 23 * * *' # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#scheduled-events-schedule

on:
schedule:
- cron: '*/5 * * * *' # 每5分钟一次,测试用

jobs:
bot:
runs-on: ubuntu-latest # 运行环境为最新版的Ubuntu
steps:
- name: 'Checkout codes' # 步骤一,获取仓库代码
uses: actions/checkout@v2
# - name: 'Run baiduPush' # 步骤二,执行sh命令文件
# run: npm install && npm run baiduPush # 运行目录是仓库根目录
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: parse sitemap
run: python baidupush.py
11 changes: 11 additions & 0 deletions baidupush.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import re
import ssl
import requests
ssl._create_default_https_context = ssl._create_unverified_context
url = 'https://www.ghlerrix.cn/sitemap.xml'
result = requests.get(url)
big = re.findall('<loc>(.*?)</loc>', result.content.decode('utf-8'), re.S)
for i in big:
print(i)
# op_xml_txt = open('xml.txt', 'a')
# op_xml_txt.write('%s\n' % i)

0 comments on commit 770382a

Please sign in to comment.