diff options
Diffstat (limited to 'dev')
-rw-r--r-- | dev/nyc/convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/nyc/convert.py b/dev/nyc/convert.py index f6a10f5..31694db 100644 --- a/dev/nyc/convert.py +++ b/dev/nyc/convert.py @@ -14,7 +14,7 @@ for camera in data: cam['id'] = camera['id'] cam['name'] = camera['content'] fetched = requests.get('https://nyctmc.org/google_popup.php', params={'cid': camera['id']}) - match = re.search('http://207.251.86.238/cctv\\d+.jpg', fetched.text) + match = re.search(r'https://jpg.nyctmc.org(:443)?/cctv\d+.jpg', fetched.text) if match is None: pprint(camera) continue |