[runuser|su]
имел в виду что запускал и через runuser и через su. Параметры одинаковые.su -l nadmin -c 'command'
runuser -l nadmin -c 'command'
[runuser|su] -l nadmin -c 'command'
. Команда выполняется из скрипта, который запускает root-овый процесс. import telebot
import urllib.request
from bs4 import BeautifulSoup
def get_html(url):
response = urllib.request.urlopen(url)
return response.read()
def parse(html):
soup = BeautifulSoup(html, features="html5lib")
div = soup.find('div', class_='tabs')
blocks = div.find('div', class_='main')
day_name = blocks.find('p', class_='day-link')
day_date = blocks.find('p', class_='date')
day_month = blocks.find('p', class_='month')
weather = blocks.find('div', class_="weatherIco").get('title')
temperature_min = blocks.find('div', class_='min')
temperature_max = blocks.find('div', class_='max')
DayLight = soup.find('div', class_='infoDaylight')
table = soup.find('table', class_='weatherDetails')
rows = table.find_all('td', class_='p4')
city = soup.find('div', class_='cityName')
city_h1 = city.find('h1')
# НУЖНЫЕ ЗНАЧЕНИЯ
date = day_date.text
month = day_month.text
humidity = rows[5].text
pressure = rows[4].text
min_t = temperature_min.text
max_t = temperature_max.text
daylight = DayLight.text.strip()
sunset = daylight[:12]
sunrise = daylight[12:].lstrip()
Name_Of_City = city_h1.text.strip()
return (date, month, humidity, pressure, min_t, max_t, daylight, sunset, sunrise, Name_Of_City)
token = ""
bot = telebot.TeleBot(token)
data = parse(get_html(''))
@bot.message_handler(commands=['start'])
def start_chat(message):
bot.send_message(message.chat.id, "Привет! Я могу подсказать погоду - введи /today")
@bot.message_handler(commands=['today'])
def forecast_today(message):
bot.send_message(message.chat.id, "Вы выбрали прогноз на сегодня - " + data[0] + "/" + data[1] + "! Введите ваш город!")
if __name__ == '__main__':
bot.polling(none_stop=True)