Example #1
0
def Main():
    gameIntro = GameIntro()
    gameIntro.getIntro()
    player = Player()
    player.namePlayer()
    weather = Weather()
    weather.getWeather()
    print ("Today's weather forecast is %s." % (weather.weather))
    temperature = Temperature()
    temperature.getTemperature()
    print("Today's temperature will %s degrees." % (temperature.temperature))
    print("Let's get our supplies and make some lemonade.")
    price = Pricing()
    price.setprice()
    playerChoice.setPrice()
Example #2
0
 def weatherForcast():
     frame = Frame(win, width=480, height=720)
     frame.pack(fill=BOTH, expand=TRUE)
     weatherFrame = Weather()
     weatherFrame.getWeather(frame, registerwin, name, city)
Example #3
0
 def callWeather(self):
     from Weather import Weather
     weather = Weather("WEATHER TODAY", self.Mic, self.ENVIRON)
     weather.getWeather()
     return "OK"