taylanweb adlı üyeden alıntı: mesajı görüntüle
import requests

response = requests.get("https://siteadi.com")

if 'Set-Cookie' in response.headers:

    cookie_value = response.headers['Set-Cookie']
    
    print("Cookie Değeri:")
    for cookie in cookie_value.split(';'):
        print(cookie.strip())
Çok teşekkür ederim hocam,PM atıyorum.