Skip to content

Instantly share code, notes, and snippets.

@SangHakLee
Created October 31, 2017 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SangHakLee/9d04f10f670d59846d063728188463b4 to your computer and use it in GitHub Desktop.
Save SangHakLee/9d04f10f670d59846d063728188463b4 to your computer and use it in GitHub Desktop.
test created by ryan0425 - https://repl.it/N4Xz/1
import requests # learn more: https://python.org/pypi/requests
url = "http://sanghaklee.tistory.com/rss"
headers = {
'content-type': "application/x-www-form-urlencoded",
'cache-control': "no-cache",
}
response = requests.request("GET", url, headers=headers)
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment