/etc/openvpn/ccd/
/etc/easy-rsa/keys/index.txt
status /etc/openvpn/openvpn-status.log
cat /etc/openvpn/openvpn-status.log
#!/usr/bin/env python3
import requests
from bs4 import BeautifulSoup
html = '<div class="dots-item"><a href="/index.php?r=crop/harvest&id=111"><img alt="Z" height="50" src="https://static/light/crops/gas_station.png" width="50"/></a><a href="/index.php?r=crop/harvest&id=12245218"><img alt="Harvest" class="crop_ico" src="https://static/i/../light/dots/st/dot-st-ready.png"/></a></div><div class="dots-item"><a href="/index.php?r=crop/harvest&id=222"><img alt="Z" height="50" src="https://static/light/crops/gas_station.png" width="50"/></a><a href="/index.php?r=crop/harvest&id=12245218"><img alt="Harvest" class="crop_ico" src="https://static/i/../light/dots/st/dot-st-ready.png"/></a></div><div class="dots-item"><a href="/index.php?r=crop/harvest&id=333"><img alt="Z" height="50" src="https://static/light/crops/gas_station.png" width="50"/></a><a href="/index.php?r=crop/harvest&id=12245218"><img alt="Harvest" class="crop_ico" src="https://static/i/../light/dots/st/dot-st-ready.png"/></a></div>'
soup = BeautifulSoup(html, 'html.parser')
divs = soup.find_all('div', attrs = {'class':'dots-item'})
for div in divs:
print(div.find('a').get('href'))
WSGlebKavash, тоже были подобные мысли, но решил спросить у сообщества именно про готовые решения, мимо которых, я возможно прошёл.