Skip to content

Instantly share code, notes, and snippets.

@carlcarl
Created August 6, 2013 05:09
Show Gist options
  • Save carlcarl/6162171 to your computer and use it in GitHub Desktop.
Save carlcarl/6162171 to your computer and use it in GitHub Desktop.
win.org.tw submit
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
msg = '立法院今(6)日三讀通過軍事審判法修法,\
國民黨立院黨團書記長賴士葆表示,經過朝野協商後,\
同意軍審法修正「一次到位、兩階段實施」,他強調,\
洪仲丘案將移審到一般司法法庭,公告後「馬上生效」,\
同時司法單位也將成立專業法庭處理軍事案件,\
至於其他案件由軍法轉移到一般司法需要5個月左右的時間,\
「這是負責任的協商,不是草率、沖天式的修法」。'
post_data = {
'classificationMaster': '其他',
'classification': '其他',
'Improper': 'https://www.win.org.tw',
'source': '網頁',
'Description': msg,
'name': 'ccc',
'eMail': '[email protected]',
'gender': '男',
'button1': '確認送出',
}
for i in range(10):
resp = requests.post('https://www.win.org.tw/cap/m/pleadSend.jsp', data=post_data).text
# print(resp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment