Changeset 1053:b2375bf26604 for src
- Timestamp:
- 04/19/22 14:36:56 (3 years ago)
- Branch:
- python3
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/web.py
r1044 r1053 622 622 (icao.upper(),) 623 623 624 f = urllib.request.urlopen(url, timeout = 10.0, cafile=certifi.where()) 624 request = urllib.request.Request(url, headers = { 625 "cookie": "akamai_pilotweb_access=true;" 626 }); 627 f = urllib.request.urlopen(request, timeout = 10.0, cafile=certifi.where()) 625 628 try: 626 629 data = f.read(16384)
Note:
See TracChangeset
for help on using the changeset viewer.