mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 02:57:05 +01:00
Update assembly informational versions and replace API key in weather script
This commit is contained in:
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e41190c926652c24167579975161b62b1b79c09e")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
08572d554bbbc389ae2f4ed900a3f1497ebf89522f07abc1a398a85d1465b35c
|
||||
16b0d29e9a45b402b95b6f2a9a917abd67091f7c29ef6106b8fcd820b0f449e2
|
||||
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Calc")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e41190c926652c24167579975161b62b1b79c09e")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Calc")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
3a3bbd45364777d632e26172c1a11f5ac194cf5d902d357fb0da9b376590343b
|
||||
683fff8d81b28c814f987a255b80f8a0f4c642bb1cf2d71bd03e6ef2b712fca9
|
||||
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e41190c926652c24167579975161b62b1b79c09e")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Gokspel")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
28fdce06b0e1d5c602de1b3596be8b5e1a37de0759cd6da6601b06f720f7fe71
|
||||
1a49227204a56f82edf81da3921ad99b31634853ce99f97a03129c9adc216fed
|
||||
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e41190c926652c24167579975161b62b1b79c09e")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("woordenboek")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
2d191353c5288a0bdf0585fba6ffb242ba6eae652ab98bbb43791d33b1c25b1c
|
||||
bc30e5212945dfc2ad219564f7cade51802bdd458699bca7d9ccf148d68eea6e
|
||||
|
||||
@@ -21,7 +21,7 @@ class Tee:
|
||||
f.close()
|
||||
|
||||
def get_coordinates(city_name):
|
||||
api_key = os.getenv('OPENWEATHERMAP_API_KEY', 'default_api_key')
|
||||
api_key = 'cf2b92cba5cdb89baccb2fe05cacb3a5'
|
||||
base_url = 'http://api.openweathermap.org/geo/1.0/direct'
|
||||
params = {
|
||||
'q': city_name,
|
||||
@@ -40,7 +40,7 @@ def get_coordinates(city_name):
|
||||
return None, None
|
||||
|
||||
def get_weather(lat, lon, city_name):
|
||||
api_key = os.getenv('OPENWEATHERMAP_API_KEY', 'default_api_key')
|
||||
api_key = 'cf2b92cba5cdb89baccb2fe05cacb3a5'
|
||||
base_url = 'https://api.openweathermap.org/data/2.5/weather'
|
||||
params = {
|
||||
'lat': lat,
|
||||
|
||||
Reference in New Issue
Block a user