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