summaryrefslogtreecommitdiff
path: root/weather.py
diff options
context:
space:
mode:
authorroot <root@turin.home>2022-01-07 19:19:45 +0000
committerroot <root@turin.home>2022-01-07 19:19:45 +0000
commitcf70ae6ded332729f0dc2833d6680d7dac8072db (patch)
treefc8e5e39cffa07f2635dc0c71379ece34647fd58 /weather.py
Commiting basic code
Diffstat (limited to 'weather.py')
-rw-r--r--weather.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/weather.py b/weather.py
new file mode 100644
index 0000000..e46fac8
--- /dev/null
+++ b/weather.py
@@ -0,0 +1,9 @@
+class weather:
+ def __init__(self):
+ self.temp = 0
+ def get_temp(self):
+ #update temp
+ pass
+ def temperature(self):
+ self.get_temp()
+ return self.temp