Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- import requests
- data = {"txt": "ahoj"}
- url = "https://example.org"
- headers = {
- 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36',
- }
- cookies_dict = {"klubovnatemp": "hashChatId", "personalizacetemp": "uid"}
- response = requests.post(url, data=data, headers=headers, cookies=cookies_dict);
- # a výsledkem je chyba:
- # UnicodeEncodeError: 'latin-1' codec can't encode character '\u010d' in position 77: ordinal not in range(256)
Advertisement
Add Comment
Please, Sign In to add comment