Advertisement
Guest User

Untitled

a guest
Dec 15th, 2016
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import requests
  2.  
  3. data = {
  4.     'county':'台北市',
  5.     'town':'信義區'
  6. }
  7.  
  8. payload = {
  9.     'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8'
  10. }
  11.  
  12. res = requests.post('https://www.nanshanlife.com.tw/NanshanWeb/branches/query', headers=payload, data=data)
  13. print(res.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement