Correcties ddoperapi --> ddOperApi
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Marcel Nijenhof
2021-05-30 17:33:24 +02:00
parent b426be57ab
commit 4f2cc7f7c0

View File

@@ -1,7 +1,7 @@
#!/usr/bin/python3
import logging
from ddoperapi import ddOperApi
from ddOperApi import ddOperApi
from pprint import pprint
def locations(rws):
@@ -35,9 +35,9 @@ def waterlevelHoekvanHolland(rws):
def main():
logging.basicConfig(level=logging.DEBUG)
rws = ddOperApi("<TODO>.crt", "<TODO>.key")
#locations(rws)
#quantities(rws)
#quantitiesHoekvanHolland(rws)
locations(rws)
quantities(rws)
quantitiesHoekvanHolland(rws)
waterlevelHoekvanHolland(rws)
if __name__ == "__main__":