Skip to content

Commit

Permalink
fix(patreon): use patreon api (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Sep 30, 2023
1 parent cbbd6c0 commit a776980
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- cron: '0 0 * * *' # every day at midnight
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
update:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -38,7 +42,7 @@ jobs:

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Prepare gh-pages
Expand All @@ -52,7 +56,7 @@ jobs:
- name: Update
working-directory: gh-pages
run: |
python ../update.py \
python -u ../update.py \
--discord_invite ${{ secrets.DISCORD_INVITE }} \
--facebook_group_id ${{ secrets.FACEBOOK_GROUP_ID }} \
--facebook_page_id ${{ secrets.FACEBOOK_PAGE_ID }} \
Expand All @@ -69,6 +73,7 @@ jobs:
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
path: |
${{ github.workspace }}/gh-pages
!**/*.git
- name: Deploy to gh-pages
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/master') || (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }} # yamllint disable-line rule:line-length
Expand Down
7 changes: 2 additions & 5 deletions update.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import json
import os
import pathlib
import re

# lib imports
import cloudscraper
Expand Down Expand Up @@ -193,13 +192,11 @@ def update_patreon():
Get patron count from Patreon.
"""
print('Updating Patreon data...')
patreon_url = 'https://www.patreon.com/LizardByte'
patreon_url = 'https://www.patreon.com/api/campaigns/6131567'

response = s.get(url=patreon_url)

data = dict(
patron_count=int(re.search(r'\"patron_count\":\s(\d+)', response.text).group(1))
)
data = response.json()['data']['attributes']

file_path = os.path.join('patreon', 'LizardByte')
write_json_files(file_path=file_path, data=data)
Expand Down

0 comments on commit a776980

Please sign in to comment.