Programming Language: Python 3 (As of Jan 2022)
Calling Travel() from the TravelAPI file will initialize the def __init__(self, location): . This will allow you to access and use any other function in the class Travel
location
  Value of this must be a string of a correctly spelled location.
  location string needs to be airport code, city, country, airport name
atlanta = Travel("atlanta")
def __init__(self, location):
  self.location = location