вот такую ошибку получаю
на запрос в питоне вот этот
Bash:
(base) admix@buben:~/PycharmProjects/untitled$ python ./pytest.py -i wlan0 -m 00:11:22:33:44:55
Traceback (most recent call last):
File "./pytest.py", line 29, in <module>
mac_address_search_result = re.search(r"\w\w:\w\w:\w\w:\w\w:\w\w:\w\w", ifconfig_result)
File "/home/admix/anaconda3/lib/python3.7/re.py", line 183, in search
return _compile(pattern, flags).search(string)
TypeError: cannot use a string pattern on a bytes-like object
(base) admix@buben:~/PycharmProjects/untitled$
Python:
ifconfig_result = subprocess.check_output(["ifconfig", options.interface])
mac_address_search_result = re.search(r"\w\w:\w\w:\w\w:\w\w:\w\w:\w\w", ifconfig_result)
print(mac_address_search_result.group(0))
Последнее редактирование: