Здравствуйте. Мне нужна помощь с проектом, который я недавно предпринял, чтобы проверить подключение к ПК на моем рабочем месте. Я довольно плохо знаком с питоном и программированием в целом, поэтому большая часть этого может быть неправильной. Я пытаюсь создать простой IP-регистратор, который будет пинговать адрес назначения и возвращать значение, чтобы определить состояние соединения с машиной. Он возьмет данные из файла CSV (excell.xlsx) и объединит IP-адрес с информацией, предоставленной в формате стиля ячейки, а затем выведет состояние соединения простым «подключен» или «отключен» после сопоставления входного файла. Вот что я придумала до сих пор:
import csv, platform, subprocess, os as sys
#Defines filepath locations (Adjustment may be required)
in_path = sys.os.path['C:\Users\User\Documents\IpLog\log1.xlsx']
out_path = sys.os.path['C:\Users\User\Documents\IpLog\ip_log.xlsx']
try:
ip = 0
reference = out_path
host = '?'
line_count = 0
with open(in_path, dialect='excel', delimeter=',', newline='') as csvfile:
for row in csvfile:
if line_count == 0:
ip_inp = csv.reader(in_path, dialect='excel') #adjust filename as needed.
ip = ip_inp[ip_inp.index('10.21')]
ip = ip[5::]
line_count += 1
for line in ip_inp:
def ping(ip):
"""
Returns True if host (str) responds to a ping request.
Remember that a host may not respond to a ping (ICMP) request even if the host name is valid.
"""
# Option for the number of packets as a function of
param = '-n' if platform.system().lower() == 'windows' else '-c'
# Building the command. Ex: "ping -c 1 google.com"
command = ['ping', param, '1', ip]
return subprocess.call(command) == 0
if subprocess.call(command) == 0:
status = subprocess.call(command)
else:
status = 1
if status == 0:
if line_count == 0:
net_state = 'Connected'
with open(out_path, delimiter=',') as csvfile2:
print(csvfile)
csv.writer(csvfile2, dialect='excel')
print(net_state)
else:
net_state = 'Disconnected'
with open(out_path, delimiter=',') as csvfile2:
print(csvfile)
csv.writer(csvfile2, dialect='excel')
print(net_state)
except IOError:
print('Error opening the input file please check file input name and file location and try again.')
finally:
raise SystemExit('Operation Completed. Results have been written to (%s)' % out_path)
Сейчас ошибка, с которой я продолжаю сталкиваться, - это усечение в моих глобальных переменных пути к файлу. Может кто-нибудь сказать мне, почему это может происходить?