Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import requests
- data = {
- 'county':'台北市',
- 'town':'信義區'
- }
- payload = {
- 'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8'
- }
- res = requests.post('https://www.nanshanlife.com.tw/NanshanWeb/branches/query', headers=payload, data=data)
- print(res.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement