Добрый вечер, делал я парсинг сайта, и мне нужно было переменную из одной функции импортировать в другую, так вот, как вы поняли - ничего не получилось!
Что я делаю не так?
import requests
from bs4 import BeautifulSoup
def Connect():
url = 'https://sinoptik.ua/'
http = requests.get(url)
return http
def Parser(http):
soup = BeautifulSoup(http.content, "html.parser")
temp = soup.find('p', class_= 'today-temp')
print temp
Parser()
Traceback (most recent call last):
File "weather.py", line 14, in <module>
Parser()
TypeError: Parser() missing 1 required positional arguments: 'http'