Skip to content

Instantly share code, notes, and snippets.

@takidog
Created August 10, 2019 10:44
Show Gist options
  • Save takidog/04510956d6eb07b97362c537b32f3cf8 to your computer and use it in GitHub Desktop.
Save takidog/04510956d6eb07b97362c537b32f3cf8 to your computer and use it in GitHub Desktop.
nkust
import requests
if __name__ == "__main__":
url = 'https://webap.nkust.edu.tw/nkust/system/getuid_1.jsp'
userId = input('身分證: ')
data = {
'uid': userId
}
req = requests.post(url=url, data=data)
print(req)
print(req.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment