update_dependencies.py changed influxdb_client to influxdb-client

This commit is contained in:
Chuck SmileyRekiere
2021-04-12 12:45:57 -06:00
parent cc90070988
commit 88d42807f9

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import subprocess
def main():
command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb influxdb_client --upgrade"
command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb influxdb-client --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)