-
Notifications
You must be signed in to change notification settings - Fork 12
/
testflight_watcher.py
executable file
·35 lines (29 loc) · 1.15 KB
/
testflight_watcher.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
from lxml import html
import re
from time import sleep
XPATH_STATUS = '//*[@class="beta-status"]/span/text()'
XPATH_TITLE = '/html/head/title/text()'
TITLE_REGEX = r'Join the (.+) beta - TestFlight - Apple'
TESTFLIGHT_URL = 'https://testflight.apple.com/join/{}'
FULL_TEXTS = ['This beta is full.',
"This beta isn't accepting any new testers right now."]
def watch(watch_ids, callback, notify_full=True, sleep_time=900):
data = {}
while True:
for tf_id in watch_ids:
req = requests.get(
TESTFLIGHT_URL.format(tf_id),
headers={"Accept-Language": "en-us"})
page = html.fromstring(req.text)
free_slots = page.xpath(XPATH_STATUS)[0] not in FULL_TEXTS
if (tf_id not in data or data[tf_id] != free_slots):
if free_slots or notify_full:
title = re.findall(
TITLE_REGEX,
page.xpath(XPATH_TITLE)[0])[0]
callback(tf_id, free_slots, title)
data[tf_id] = free_slots
sleep(sleep_time)