Last active
November 3, 2025 09:59
-
-
Save doronbehar/b4266b05f05ba181cedc62882e455409 to your computer and use it in GitHub Desktop.
Test Israel's GTFS feed SSL issues
This file contains hidden or 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
| import traceback | |
| import sys | |
| import requests | |
| URL = "https://gtfs.mot.gov.il/gtfsfiles/israel-public-transportation.zip" | |
| r = requests.get(URL, stream=True, verify=True, timeout=15) | |
| print("requests: status", r.status_code) | |
| r.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment