Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.71 KB | None | 0 0
  1. url = {
  2.         'chopin':'https://www.lotnisko-chopina.pl/pl/przyloty.html',
  3.         'mazury':'http://mazuryairport.pl/przyloty_38.html',
  4.         'goleniow': 'http://www.airport.com.pl/loty/tablica-przylotow/',
  5.         'poznan': 'https://www.airport-poznan.com.pl/pl/'
  6.     }
  7. tag = {
  8.     #'tooltip' has been changed by tr
  9.     'chopin':['tr','td'],
  10.     'mazury':['tr','td'],
  11.     'goleniow':['tr','td'],
  12.     'poznan':['ul','li']
  13. }
  14.  
  15. head = {
  16.     'chopin': ['flightboard', 'time', 'direction', 'flight', 'terminal', 'status', 'belt'],
  17.     'mazury': ['godz', 'data', 'rejs', 'kierunek', 'linia', 'status'],
  18.     'goleniow': ['czas','lot','kierunek','status'],
  19.     'poznan':['GODZINA','KIERUNEK','NR REJSU','STATUS']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement