response = requests.get(url)
text = response.text
text
будет текст страницы. Если тебе нужно получить текст именно в определенной кодировке, то:text = response.content.decode(encoding='unicode_escape')
**kwargs
class Foo:
def __init__(self, a, b):
self.a = a
self.b = b
print(self.a, self.b)
def bar(**kwargs):
foo = Foo(**kwargs)
bar(a=1, b=2)