Поскольку нет ничего более сложного, я хотел поделиться этим, поскольку это помогло мне.
Это то, что я использовал изначально:
import requests
import re
url = '/programming/10711116/strip-spaces-tabs-newlines-python'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
print("{}".format(r.content))
Нежелательный результат:
b'<!DOCTYPE html>\r\n\r\n\r\n <html itemscope itemtype="http://schema.org/QAPage" class="html__responsive">\r\n\r\n <head>\r\n\r\n <title>string - Strip spaces/tabs/newlines - python - Stack Overflow</title>\r\n <link
Вот что я изменил на:
import requests
import re
url = '/programming/10711116/strip-spaces-tabs-newlines-python'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
regex = r'\s+'
print("CNT: {}".format(re.sub(regex, " ", r.content.decode('utf-8'))))
Желаемый результат:
<!DOCTYPE html> <html itemscope itemtype="http://schema.org/QAPage" class="html__responsive"> <head> <title>string - Strip spaces/tabs/newlines - python - Stack Overflow</title>
Точное регулярное выражение, упомянутое @MattH, помогло мне встроить его в свой код. Благодарность!
Примечание: это python3